diff --git a/README.md b/README.md index a62f8c65..1026e2d2 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,11 @@ Here is its schema: "registry_agreement_types": ["string"], // Array of agreement types: "base" | "brand" | "community" | "sponsored" | "non_sponsored" "icann_translation_en": "string", // ICANN's raw English Translation of an IDN label, source-faithful [OPTIONAL - IDN gTLDs only] + // IDN language metadata (derived from tld_script via Unicode CLDR likelySubtags, + // with per-(script, region) and per-TLD overrides where the default is wrong) + "language_code": "string", // BCP-47 code (e.g. "ar", "hi", "zh-Hant-TW") [OPTIONAL - IDN only] + "language_name_en": "string", // English name (e.g. "Arabic", "Hindi", "Chinese (Taiwan)") [OPTIONAL - IDN only] + // AS Org infrastructure operators (resolved against organizations.json) "as_org_aliases": ["string"], // Canonical DNS provider display_names hosting nameservers (e.g. ["Identity Digital", "VeriSign"]) "as_org_slugs": ["string"], // FKs into organizations.json, parallel to as_org_aliases @@ -246,6 +251,18 @@ Every TLD is identified by its **A-label** — the ASCII form, including `xn--` The **U-label** — the rendered Unicode form (e.g. `москва`) — is display-only and appears solely in the `tld_unicode` field, alongside the A-label, never as a key or reference. Consumers that render a name resolve the A-label to `tld_unicode`; they never key on it. +## The typed graph + +Alongside `tlds.json`, the build ships four derived reverse-index artifacts that model the root zone as a typed graph of four entity types plus one enum: + +- **Domains** — the TLDs themselves (`tlds.json`). +- **Organizations** — registries, governance bodies, and infrastructure operators (`organizations.json`). +- **Places** — countries, dependent territories, subdivisions, cities, and supranational regions (`places.json`). +- **Cultures** — ethno-linguistic communities like the Basques or Welsh (`cultures.json`). +- **Agreement types** — the ICANN registry-agreement enum (`agreements.json`). + +Each TLD relates to one or more Organizations through *roles* (Sponsor, Administrative Contact, Technical Contact, and — for gTLDs — ICANN Registry Operator), to zero or more Places (most ccTLDs map to one country; geographic gTLDs map to a city, subdivision, country, or supranational region), to an optional Culture, and to its agreement types. Each derived artifact is a deterministic reverse index of `tlds.json`: delete it and `make build` rebuilds it. Every cross-file relationship is enforced by referential-integrity tests, so a foreign key can never dangle and no record is ever orphaned. + ## `organizations.json` The `data/generated/organizations.json` file is the canonical record of the organizations that play roles for TLDs, with a reverse-index of those roles. It is built from a hand-curated identity seed (`data/manual/organizations.json`) joined against `tlds.json`, and replaces the old per-role alias files. @@ -254,6 +271,24 @@ Each org carries an editorial `display_name` and a stable kebab-case `slug` (the > **Consolidated subset:** this currently covers the curated multi-source organizations only. The single-source long tail (orgs that appear under one exact name in one source) is not yet included, so the absence of a TLD's operator here does not mean it has none. +## `places.json` + +The `data/generated/places.json` file is the canonical record of the places associated with TLDs, with a reverse-index of their TLDs. Countries are derived mechanically from ccTLDs (ISO 3166-1 via `pycountry`); subdivisions, cities, and supranational regions come from a hand-curated seed (`data/manual/places.json`). + +Each place carries a stable `slug` (ISO 3166-1 alpha-2 for countries, e.g. `gb`; a recognizable short name for subdivisions, e.g. `basque-country`; the TLD for cities, e.g. `amsterdam`), an English `name_en`, a `subtype` (`country` / `subdivision` / `city` / `supranational`), the `iso_code` where one exists, a `parent` slug for hierarchy (subdivision/city → country; dependent territory → sovereign), an optional `info_link`, and the `tlds` reverse index. A sparse `iso_designation` field carries ISO 3166-1 status for the special cases: `dependent_territory` (e.g. `bm` → `gb`), `exceptionally_reserved` (`ac`), `transitionally_reserved` (`su`), and `special_area` (`aq`). `places[]` is sorted by `slug`. + +The United Kingdom is one place slugged `gb` (its ISO alpha-2), carrying both `.gb` and `.uk`; IDN ccTLDs fold into their country (e.g. `xn--p1ai` joins `ru`). Slugs and `tlds` are A-labels/ASCII; Unicode rendering is left to consumers. + +## `cultures.json` + +The `data/generated/cultures.json` file records the ethno-linguistic communities that at least one TLD claims affiliation with, with a reverse-index of their TLDs. It is built from a hand-curated seed (`data/manual/cultures.json`) joined against each TLD's `cultural_affiliation` annotation. + +Each culture carries a stable `slug` (the foreign key `cultural_affiliation` points at), an English `name_en`, an `info_link` to Wikipedia, an optional BCP-47 `language_code` (`null` for multi-lingual cultures like `swiss` / `desi` / `kiwi` / `scottish`), and the `tlds` reverse index. `cultures[]` is sorted by `slug`. The schema is intentionally minimal: descriptions and cross-artifact links belong on the canonical source (Wikipedia via `info_link`), not duplicated here. + +## `agreements.json` + +The `data/generated/agreements.json` file is the ICANN registry-agreement-type enum with a reverse-index of the gTLDs under each. Each record carries a canonical `slug` (`base` / `non_sponsored` / `brand` / `community` / `sponsored`), a friendly `display_name`, the verbatim ICANN string under `source_names.icann`, and the `tlds` reverse index. `agreements[]` is sorted by `slug`. + ## Local usage - `make deps` - Install the project dependencies diff --git a/bin/lint b/bin/lint index 345571a9..32787ce0 100755 --- a/bin/lint +++ b/bin/lint @@ -7,10 +7,13 @@ if [ ${#paths[@]} -eq 0 ]; then paths=(src/ tests/) fi -# Run all three linters even if an earlier one fails, so the developer +# Run all linters even if an earlier one fails, so the developer # sees the full set of findings in one pass instead of round-tripping. exit_code=0 uv run ruff check "${paths[@]}" || exit_code=$? uv run ruff format --check "${paths[@]}" || exit_code=$? uv run pyright "${paths[@]}" || exit_code=$? +# JSON parse check runs over the whole repo (independent of the path args) so a +# stray syntax error or committed merge-conflict marker fails the lint pass. +python3 bin/lint-json.py || exit_code=$? exit $exit_code diff --git a/bin/lint-json.py b/bin/lint-json.py new file mode 100755 index 00000000..97444d5e --- /dev/null +++ b/bin/lint-json.py @@ -0,0 +1,47 @@ +#!/usr/bin/env python3 +"""Validate that every JSON file in the repo parses cleanly.""" + +import json +import sys +from pathlib import Path + +EXCLUDED_DIRS = {".git", ".venv", "node_modules", "__pycache__"} + +# Test fixtures that are intentionally invalid JSON. +EXCLUDED_FILES = { + Path("tests/fixtures/metadata/corrupted-metadata.json"), +} + + +def find_json_files(root: Path): + for path in root.rglob("*.json"): + if any(part in EXCLUDED_DIRS for part in path.parts): + continue + if path.relative_to(root) in EXCLUDED_FILES: + continue + yield path + + +def main() -> int: + root = Path.cwd() + bad: list[tuple[Path, str]] = [] + count = 0 + for path in find_json_files(root): + count += 1 + try: + json.loads(path.read_text(encoding="utf-8")) + except (json.JSONDecodeError, OSError) as e: + bad.append((path.relative_to(root), str(e))) + + if bad: + for rel, err in bad: + print(f"{rel}: {err}", file=sys.stderr) + print(f"\n{len(bad)} of {count} JSON file(s) failed to parse.", file=sys.stderr) + return 1 + + print(f"{count} JSON file(s) parse cleanly.") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/data/generated/agreements.json b/data/generated/agreements.json new file mode 100644 index 00000000..7342a5df --- /dev/null +++ b/data/generated/agreements.json @@ -0,0 +1,3109 @@ +{ + "description": "ICANN registry-agreement types with a reverse index of the gTLDs operating under each. Slugs and source_names are canonical ICANN values; display_name is a friendly editorial label.", + "publication": "2026-05-26T05:00:52Z", + "sources": [ + "data/source/icann-registry-agreement-table.csv (ICANN)" + ], + "agreements": [ + { + "slug": "base", + "display_name": "Base", + "source_names": { + "icann": "Base" + }, + "tlds": [ + "aaa", + "aarp", + "abarth", + "abb", + "abbott", + "abbvie", + "abc", + "able", + "abogado", + "abudhabi", + "academy", + "accenture", + "accountant", + "accountants", + "aco", + "active", + "actor", + "adac", + "ads", + "adult", + "aeg", + "aetna", + "afamilycompany", + "afl", + "africa", + "agakhan", + "agency", + "aig", + "aigo", + "airbus", + "airforce", + "airtel", + "akdn", + "alfaromeo", + "alibaba", + "alipay", + "allfinanz", + "allstate", + "ally", + "alsace", + "alstom", + "amazon", + "americanexpress", + "americanfamily", + "amex", + "amfam", + "amica", + "amsterdam", + "analytics", + "android", + "anquan", + "anz", + "aol", + "apartments", + "app", + "apple", + "aquarelle", + "arab", + "aramco", + "archi", + "army", + "art", + "arte", + "asda", + "asia", + "associates", + "athleta", + "attorney", + "auction", + "audi", + "audible", + "audio", + "auspost", + "author", + "auto", + "autos", + "avianca", + "aws", + "axa", + "azure", + "baby", + "baidu", + "banamex", + "bananarepublic", + "band", + "bank", + "bar", + "barcelona", + "barclaycard", + "barclays", + "barefoot", + "bargains", + "baseball", + "basketball", + "bauhaus", + "bayern", + "bbc", + "bbt", + "bbva", + "bcg", + "bcn", + "beats", + "beauty", + "beer", + "bentley", + "berlin", + "best", + "bestbuy", + "bet", + "bharti", + "bible", + "bid", + "bike", + "bing", + "bingo", + "bio", + "biz", + "black", + "blackfriday", + "blanco", + "blockbuster", + "blog", + "bloomberg", + "blue", + "bms", + "bmw", + "bnl", + "bnpparibas", + "boats", + "boehringer", + "bofa", + "bom", + "bond", + "boo", + "book", + "booking", + "boots", + "bosch", + "bostik", + "boston", + "bot", + "boutique", + "box", + "bradesco", + "bridgestone", + "broadway", + "broker", + "brother", + "brussels", + "budapest", + "bugatti", + "build", + "builders", + "business", + "buy", + "buzz", + "bzh", + "cab", + "cafe", + "cal", + "call", + "calvinklein", + "cam", + "camera", + "camp", + "cancerresearch", + "canon", + "capetown", + "capital", + "capitalone", + "car", + "caravan", + "cards", + "care", + "career", + "careers", + "cars", + "cartier", + "casa", + "case", + "caseih", + "cash", + "casino", + "cat", + "catering", + "catholic", + "cba", + "cbn", + "cbre", + "cbs", + "ceb", + "center", + "ceo", + "cern", + "cfa", + "cfd", + "chanel", + "channel", + "charity", + "chase", + "chat", + "cheap", + "chintai", + "chloe", + "christmas", + "chrome", + "chrysler", + "church", + "cipriani", + "circle", + "cisco", + "citadel", + "citi", + "citic", + "city", + "cityeats", + "claims", + "cleaning", + "click", + "clinic", + "clinique", + "clothing", + "cloud", + "club", + "clubmed", + "coach", + "codes", + "coffee", + "college", + "cologne", + "comcast", + "commbank", + "community", + "company", + "compare", + "computer", + "comsec", + "condos", + "construction", + "consulting", + "contact", + "contractors", + "cooking", + "cookingchannel", + "cool", + "corsica", + "country", + "coupon", + "coupons", + "courses", + "cpa", + "credit", + "creditcard", + "creditunion", + "cricket", + "crown", + "crs", + "cruise", + "cruises", + "csc", + "cuisinella", + "cymru", + "cyou", + "dabur", + "dad", + "dance", + "data", + "date", + "dating", + "datsun", + "day", + "dclk", + "dds", + "deal", + "dealer", + "deals", + "degree", + "delivery", + "dell", + "deloitte", + "delta", + "democrat", + "dental", + "dentist", + "desi", + "design", + "dev", + "dhl", + "diamonds", + "diet", + "digital", + "direct", + "directory", + "discount", + "discover", + "dish", + "diy", + "dnp", + "docs", + "doctor", + "dodge", + "dog", + "doha", + "domains", + "doosan", + "dot", + "download", + "drive", + "dtv", + "dubai", + "duck", + "dunlop", + "duns", + "dupont", + "durban", + "dvag", + "dvr", + "earth", + "eat", + "eco", + "edeka", + "education", + "email", + "emerck", + "emerson", + "energy", + "engineer", + "engineering", + "enterprises", + "epost", + "epson", + "equipment", + "ericsson", + "erni", + "esq", + "estate", + "esurance", + "etisalat", + "eurovision", + "eus", + "events", + "everbank", + "exchange", + "expert", + "exposed", + "express", + "extraspace", + "fage", + "fail", + "fairwinds", + "faith", + "family", + "fan", + "fans", + "farm", + "farmers", + "fashion", + "fast", + "fedex", + "feedback", + "ferrari", + "ferrero", + "fiat", + "fidelity", + "fido", + "film", + "final", + "finance", + "financial", + "fire", + "firestone", + "firmdale", + "fish", + "fishing", + "fit", + "fitness", + "flickr", + "flights", + "flir", + "florist", + "flowers", + "flsmidth", + "fly", + "foo", + "food", + "foodnetwork", + "football", + "ford", + "forex", + "forsale", + "forum", + "foundation", + "fox", + "free", + "fresenius", + "frl", + "frogans", + "frontdoor", + "frontier", + "ftr", + "fujitsu", + "fujixerox", + "fun", + "fund", + "furniture", + "futbol", + "fyi", + "gal", + "gallery", + "gallo", + "gallup", + "game", + "games", + "gap", + "garden", + "gay", + "gbiz", + "gdn", + "gea", + "gent", + "genting", + "george", + "ggee", + "gift", + "gifts", + "gives", + "giving", + "glade", + "glass", + "gle", + "global", + "globo", + "gmail", + "gmbh", + "gmo", + "gmx", + "godaddy", + "gold", + "goldpoint", + "golf", + "goo", + "goodhands", + "goodyear", + "goog", + "google", + "gop", + "got", + "grainger", + "graphics", + "gratis", + "green", + "gripe", + "grocery", + "group", + "guardian", + "gucci", + "guge", + "guide", + "guitars", + "guru", + "hair", + "hamburg", + "hangout", + "haus", + "hbo", + "hdfc", + "hdfcbank", + "health", + "healthcare", + "help", + "helsinki", + "here", + "hermes", + "hgtv", + "hiphop", + "hisamitsu", + "hitachi", + "hiv", + "hkt", + "hockey", + "holdings", + "holiday", + "homedepot", + "homegoods", + "homes", + "homesense", + "honda", + "honeywell", + "horse", + "hospital", + "host", + "hosting", + "hot", + "hoteles", + "hotels", + "hotmail", + "house", + "how", + "hsbc", + "htc", + "hughes", + "hyatt", + "hyundai", + "ibm", + "icbc", + "ice", + "icu", + "ieee", + "ifm", + "iinet", + "ikano", + "imamat", + "imdb", + "immo", + "immobilien", + "inc", + "industries", + "infiniti", + "info", + "ing", + "ink", + "institute", + "insurance", + "insure", + "intel", + "international", + "intuit", + "investments", + "ipiranga", + "irish", + "iselect", + "ismaili", + "ist", + "istanbul", + "itau", + "itv", + "iveco", + "iwc", + "jaguar", + "java", + "jcb", + "jcp", + "jeep", + "jetzt", + "jewelry", + "jio", + "jlc", + "jll", + "jmp", + "jnj", + "jobs", + "joburg", + "jot", + "joy", + "jpmorgan", + "jprs", + "juegos", + "juniper", + "kaufen", + "kddi", + "kerryhotels", + "kerrylogistics", + "kerryproperties", + "kfh", + "kia", + "kids", + "kim", + "kinder", + "kindle", + "kitchen", + "kiwi", + "koeln", + "komatsu", + "kosher", + "kpmg", + "kpn", + "krd", + "kred", + "kuokgroup", + "kyoto", + "lacaixa", + "ladbrokes", + "lamborghini", + "lamer", + "lancaster", + "lancia", + "lancome", + "land", + "landrover", + "lanxess", + "lasalle", + "lat", + "latino", + "latrobe", + "law", + "lawyer", + "lds", + "lease", + "leclerc", + "lefrak", + "legal", + "lego", + "lexus", + "lgbt", + "liaison", + "lidl", + "life", + "lifeinsurance", + "lifestyle", + "lighting", + "like", + "lilly", + "limited", + "limo", + "lincoln", + "linde", + "link", + "lipsy", + "live", + "living", + "lixil", + "llc", + "llp", + "loan", + "loans", + "locker", + "locus", + "loft", + "lol", + "london", + "lotte", + "lotto", + "love", + "lpl", + "lplfinancial", + "ltd", + "ltda", + "lundbeck", + "lupin", + "luxe", + "luxury", + "macys", + "madrid", + "maif", + "maison", + "makeup", + "man", + "management", + "mango", + "map", + "market", + "marketing", + "markets", + "marriott", + "marshalls", + "maserati", + "mattel", + "mba", + "mcd", + "mcdonalds", + "mckinsey", + "med", + "media", + "meet", + "melbourne", + "meme", + "memorial", + "men", + "menu", + "meo", + "merck", + "merckmsd", + "metlife", + "miami", + "microsoft", + "mini", + "mint", + "mit", + "mitsubishi", + "mlb", + "mls", + "mma", + "mobi", + "mobile", + "mobily", + "moda", + "moe", + "moi", + "mom", + "monash", + "money", + "monster", + "montblanc", + "mopar", + "mormon", + "mortgage", + "moscow", + "moto", + "motorcycles", + "mov", + "movie", + "movistar", + "msd", + "mtn", + "mtpc", + "mtr", + "music", + "mutual", + "mutuelle", + "nab", + "nadex", + "nagoya", + "nationwide", + "natura", + "navy", + "nba", + "nec", + "netbank", + "netflix", + "network", + "neustar", + "new", + "newholland", + "news", + "next", + "nextdirect", + "nexus", + "nfl", + "ngo", + "nhk", + "nico", + "nike", + "nikon", + "ninja", + "nissan", + "nissay", + "nokia", + "northwesternmutual", + "norton", + "now", + "nowruz", + "nowtv", + "nra", + "nrw", + "ntt", + "nyc", + "obi", + "observer", + "off", + "office", + "okinawa", + "olayan", + "olayangroup", + "oldnavy", + "ollo", + "omega", + "one", + "ong", + "onl", + "online", + "onyourside", + "ooo", + "open", + "oracle", + "orange", + "org", + "organic", + "orientexpress", + "origins", + "osaka", + "otsuka", + "ott", + "ovh", + "page", + "pamperedchef", + "panasonic", + "panerai", + "paris", + "pars", + "partners", + "parts", + "party", + "passagens", + "pay", + "pccw", + "pet", + "pfizer", + "pharmacy", + "phd", + "philips", + "phone", + "photo", + "photography", + "photos", + "physio", + "piaget", + "pics", + "pictet", + "pictures", + "pid", + "pin", + "ping", + "pink", + "pioneer", + "pizza", + "place", + "play", + "playstation", + "plumbing", + "plus", + "pnc", + "pohl", + "poker", + "politie", + "porn", + "pramerica", + "praxi", + "press", + "prime", + "pro", + "prod", + "productions", + "prof", + "progressive", + "promo", + "properties", + "property", + "protection", + "pru", + "prudential", + "pub", + "pwc", + "qpon", + "quebec", + "quest", + "qvc", + "racing", + "radio", + "raid", + "read", + "realestate", + "realtor", + "realty", + "recipes", + "red", + "redstone", + "redumbrella", + "rehab", + "reise", + "reisen", + "reit", + "reliance", + "ren", + "rent", + "rentals", + "repair", + "report", + "republican", + "rest", + "restaurant", + "review", + "reviews", + "rexroth", + "rich", + "richardli", + "ricoh", + "rightathome", + "ril", + "rio", + "rip", + "rmit", + "rocher", + "rocks", + "rodeo", + "rogers", + "room", + "rsvp", + "rugby", + "ruhr", + "run", + "rwe", + "ryukyu", + "saarland", + "safe", + "safety", + "sakura", + "sale", + "salon", + "samsclub", + "samsung", + "sandvik", + "sandvikcoromant", + "sanofi", + "sap", + "sapo", + "sarl", + "sas", + "save", + "saxo", + "sbi", + "sbs", + "sca", + "scb", + "schaeffler", + "schmidt", + "scholarships", + "school", + "schule", + "schwarz", + "science", + "scjohnson", + "scor", + "scot", + "search", + "seat", + "secure", + "security", + "seek", + "select", + "sener", + "services", + "ses", + "seven", + "sew", + "sex", + "sexy", + "sfr", + "shangrila", + "sharp", + "shaw", + "shell", + "shia", + "shiksha", + "shoes", + "shop", + "shopping", + "shouji", + "show", + "showtime", + "shriram", + "silk", + "sina", + "singles", + "site", + "ski", + "skin", + "sky", + "skype", + "sling", + "smart", + "smile", + "sncf", + "soccer", + "social", + "softbank", + "software", + "sohu", + "solar", + "solutions", + "song", + "sony", + "soy", + "spa", + "space", + "spiegel", + "sport", + "spot", + "spreadbetting", + "srl", + "srt", + "stada", + "staples", + "star", + "starhub", + "statebank", + "statefarm", + "statoil", + "stc", + "stcgroup", + "stockholm", + "storage", + "store", + "stream", + "studio", + "study", + "style", + "sucks", + "supplies", + "supply", + "support", + "surf", + "surgery", + "suzuki", + "swatch", + "swiftcover", + "swiss", + "sydney", + "symantec", + "systems", + "tab", + "taipei", + "talk", + "taobao", + "target", + "tatamotors", + "tatar", + "tattoo", + "tax", + "taxi", + "tci", + "tdk", + "team", + "tech", + "technology", + "tel", + "telecity", + "telefonica", + "temasek", + "tennis", + "teva", + "thd", + "theater", + "theatre", + "tiaa", + "tickets", + "tienda", + "tiffany", + "tips", + "tires", + "tirol", + "tjmaxx", + "tjx", + "tkmaxx", + "tmall", + "today", + "tokyo", + "tools", + "top", + "toray", + "toshiba", + "total", + "tours", + "town", + "toyota", + "toys", + "trade", + "trading", + "training", + "travel", + "travelchannel", + "travelers", + "travelersinsurance", + "trust", + "trv", + "tube", + "tui", + "tunes", + "tushu", + "tvs", + "ubank", + "ubs", + "uconnect", + "unicom", + "university", + "uno", + "uol", + "ups", + "vacations", + "vana", + "vanguard", + "vegas", + "ventures", + "verisign", + "versicherung", + "vet", + "viajes", + "video", + "vig", + "viking", + "villas", + "vin", + "vip", + "virgin", + "visa", + "vision", + "vista", + "vistaprint", + "viva", + "vivo", + "vlaanderen", + "vodka", + "volkswagen", + "volvo", + "vote", + "voting", + "voto", + "voyage", + "vuelos", + "wales", + "walmart", + "walter", + "wang", + "wanggou", + "warman", + "watch", + "watches", + "weather", + "weatherchannel", + "webcam", + "weber", + "website", + "wed", + "wedding", + "weibo", + "weir", + "whoswho", + "wien", + "wiki", + "williamhill", + "win", + "windows", + "wine", + "winners", + "wme", + "wolterskluwer", + "woodside", + "work", + "works", + "world", + "wow", + "wtc", + "wtf", + "xbox", + "xerox", + "xfinity", + "xihuan", + "xin", + "xn--11b4c3d", + "xn--1ck2e1b", + "xn--1qqw23a", + "xn--30rr7y", + "xn--3bst00m", + "xn--3ds443g", + "xn--3oq18vl8pn36a", + "xn--3pxu8k", + "xn--42c2d9a", + "xn--45q11c", + "xn--4gbrim", + "xn--4gq48lf9j", + "xn--55qw42g", + "xn--55qx5d", + "xn--5su34j936bgsg", + "xn--5tzm5g", + "xn--6frz82g", + "xn--6qq986b3xl", + "xn--80adxhks", + "xn--80aqecdr1a", + "xn--80asehdb", + "xn--80aswg", + "xn--8y0a063a", + "xn--9dbq2a", + "xn--9et52u", + "xn--9krt00a", + "xn--b4w605ferd", + "xn--bck1b9a5dre4c", + "xn--c1avg", + "xn--c2br7g", + "xn--cck2b3b", + "xn--cckwcxetd", + "xn--cg4bki", + "xn--czr694b", + "xn--czrs0t", + "xn--czru2d", + "xn--d1acj3b", + "xn--eckvdtc9d", + "xn--efvy88h", + "xn--estv75g", + "xn--fct429k", + "xn--fhbei", + "xn--fiq228c5hs", + "xn--fiq64b", + "xn--fjq720a", + "xn--flw351e", + "xn--fzys8d69uvgm", + "xn--g2xx48c", + "xn--gckr3f0f", + "xn--gk3at1e", + "xn--hxt814e", + "xn--i1b6b1a6a2e", + "xn--imr513n", + "xn--io0a7i", + "xn--j1aef", + "xn--jlq480n2rg", + "xn--jlq61u9w7b", + "xn--jvr189m", + "xn--kcrx77d1x4a", + "xn--kpu716f", + "xn--kput3i", + "xn--mgba3a3ejt", + "xn--mgba7c0bbn0a", + "xn--mgbaakc7dvf", + "xn--mgbab2bd", + "xn--mgbb9fbpob", + "xn--mgbca7dzdo", + "xn--mgbi4ecexp", + "xn--mgbt3dhd", + "xn--mk1bu44c", + "xn--mxtq1m", + "xn--ngbc5azd", + "xn--ngbe9e0a", + "xn--ngbrx", + "xn--nqv7f", + "xn--nqv7fs00ema", + "xn--nyqy26a", + "xn--otu796d", + "xn--p1acf", + "xn--pbt977c", + "xn--pssy2u", + "xn--q9jyb4c", + "xn--qcka1pmc", + "xn--rhqv96g", + "xn--rovu88b", + "xn--ses554g", + "xn--t60b56a", + "xn--tckwe", + "xn--tiq49xqyj", + "xn--unup4y", + "xn--vermgensberater-ctb", + "xn--vermgensberatung-pwb", + "xn--vhquv", + "xn--vuq861b", + "xn--w4r85el8fhu5dnra", + "xn--w4rs40l", + "xn--xhq521b", + "xn--zfr164b", + "xperia", + "xxx", + "xyz", + "yachts", + "yahoo", + "yamaxun", + "yandex", + "yodobashi", + "yoga", + "yokohama", + "you", + "youtube", + "yun", + "zappos", + "zara", + "zero", + "zip", + "zippo", + "zone", + "zuerich" + ] + }, + { + "slug": "brand", + "display_name": "Brand", + "source_names": { + "icann": "Brand (Spec 13)" + }, + "tlds": [ + "aaa", + "aarp", + "abarth", + "abb", + "abbott", + "abbvie", + "abc", + "accenture", + "aco", + "active", + "adac", + "aeg", + "aetna", + "afamilycompany", + "afl", + "aig", + "aigo", + "airbus", + "airtel", + "alfaromeo", + "alibaba", + "alipay", + "allstate", + "ally", + "alstom", + "amazon", + "americanexpress", + "americanfamily", + "amex", + "amfam", + "amica", + "android", + "anz", + "aol", + "apple", + "aquarelle", + "arte", + "asda", + "athleta", + "audi", + "audible", + "auspost", + "aws", + "axa", + "azure", + "baidu", + "banamex", + "bananarepublic", + "barclaycard", + "barclays", + "barefoot", + "bauhaus", + "bbc", + "bbt", + "bbva", + "bcg", + "beats", + "bentley", + "bestbuy", + "bharti", + "bing", + "blanco", + "blockbuster", + "bloomberg", + "bms", + "bmw", + "bnpparibas", + "boehringer", + "bofa", + "boots", + "bosch", + "bostik", + "bradesco", + "bridgestone", + "brother", + "bugatti", + "calvinklein", + "canon", + "capitalone", + "caravan", + "cartier", + "caseih", + "cba", + "cbn", + "cbre", + "cbs", + "ceb", + "cern", + "cfa", + "chanel", + "chase", + "chintai", + "chloe", + "chrome", + "chrysler", + "cipriani", + "cisco", + "citadel", + "citi", + "citic", + "clinique", + "clubmed", + "comcast", + "commbank", + "cookingchannel", + "crown", + "csc", + "cuisinella", + "dabur", + "datsun", + "dell", + "deloitte", + "delta", + "dhl", + "discover", + "dish", + "dnp", + "dodge", + "duck", + "dunlop", + "duns", + "dupont", + "dvag", + "edeka", + "emerck", + "emerson", + "epost", + "epson", + "ericsson", + "esurance", + "etisalat", + "eurovision", + "everbank", + "extraspace", + "fage", + "fairwinds", + "farmers", + "fedex", + "ferrari", + "ferrero", + "fiat", + "fidelity", + "fido", + "fire", + "firestone", + "flickr", + "flir", + "flsmidth", + "foodnetwork", + "ford", + "fox", + "fresenius", + "frogans", + "frontdoor", + "frontier", + "fujitsu", + "fujixerox", + "gallo", + "gallup", + "gap", + "gea", + "genting", + "george", + "glade", + "gmail", + "gmx", + "godaddy", + "goldpoint", + "goo", + "goodhands", + "goodyear", + "google", + "grainger", + "guardian", + "gucci", + "hbo", + "hdfc", + "hdfcbank", + "hermes", + "hgtv", + "hisamitsu", + "hitachi", + "hkt", + "homedepot", + "homegoods", + "homesense", + "honda", + "honeywell", + "hotmail", + "hsbc", + "htc", + "hughes", + "hyatt", + "hyundai", + "ibm", + "icbc", + "ice", + "ieee", + "ifm", + "ikano", + "imdb", + "infiniti", + "intel", + "intuit", + "ipiranga", + "iselect", + "itau", + "itv", + "iveco", + "iwc", + "jaguar", + "java", + "jcb", + "jcp", + "jeep", + "jio", + "jlc", + "jll", + "jmp", + "jnj", + "jpmorgan", + "juniper", + "kddi", + "kia", + "kinder", + "kindle", + "komatsu", + "kpmg", + "kpn", + "ladbrokes", + "lamborghini", + "lamer", + "lancaster", + "lancia", + "lancome", + "landrover", + "lanxess", + "latrobe", + "lds", + "leclerc", + "lefrak", + "lego", + "lexus", + "liaison", + "lidl", + "lilly", + "lincoln", + "linde", + "lipsy", + "lixil", + "locus", + "loft", + "lotte", + "lpl", + "lplfinancial", + "lundbeck", + "lupin", + "macys", + "maif", + "man", + "marriott", + "marshalls", + "maserati", + "mattel", + "mcd", + "mcdonalds", + "mckinsey", + "meo", + "metlife", + "microsoft", + "mini", + "mint", + "mit", + "mitsubishi", + "mlb", + "monash", + "montblanc", + "mopar", + "mormon", + "moto", + "msd", + "mtn", + "mtr", + "nab", + "nadex", + "nationwide", + "natura", + "nba", + "nec", + "netbank", + "netflix", + "neustar", + "newholland", + "next", + "nextdirect", + "nfl", + "nhk", + "nico", + "nike", + "nikon", + "nissan", + "nissay", + "nokia", + "northwesternmutual", + "norton", + "nowtv", + "nra", + "ntt", + "obi", + "off", + "oldnavy", + "omega", + "onyourside", + "open", + "oracle", + "orange", + "origins", + "otsuka", + "pamperedchef", + "panasonic", + "panerai", + "pccw", + "pfizer", + "philips", + "piaget", + "pictet", + "ping", + "pioneer", + "playstation", + "pnc", + "pramerica", + "praxi", + "prime", + "progressive", + "pru", + "prudential", + "pwc", + "qvc", + "raid", + "redstone", + "reliance", + "rexroth", + "ricoh", + "rightathome", + "ril", + "rmit", + "rocher", + "rogers", + "rwe", + "samsclub", + "sandvik", + "sandvikcoromant", + "sanofi", + "sap", + "sapo", + "sas", + "saxo", + "sbi", + "sca", + "scb", + "schaeffler", + "schmidt", + "schwarz", + "scjohnson", + "scor", + "seat", + "seek", + "sener", + "ses", + "seven", + "sew", + "sfr", + "shangrila", + "sharp", + "shaw", + "shell", + "showtime", + "silk", + "sina", + "sky", + "skype", + "sling", + "smart", + "sncf", + "softbank", + "sony", + "spiegel", + "srt", + "stada", + "staples", + "starhub", + "statebank", + "statefarm", + "statoil", + "suzuki", + "swatch", + "swiftcover", + "symantec", + "tab", + "taobao", + "target", + "tatamotors", + "tdk", + "telecity", + "temasek", + "teva", + "tiaa", + "tiffany", + "tjmaxx", + "tjx", + "tkmaxx", + "tmall", + "toray", + "toshiba", + "total", + "toyota", + "travelchannel", + "travelers", + "tui", + "ubank", + "ubs", + "uconnect", + "unicom", + "uol", + "ups", + "vanguard", + "verisign", + "vig", + "viking", + "virgin", + "visa", + "vista", + "vistaprint", + "vivo", + "volkswagen", + "volvo", + "walmart", + "walter", + "warman", + "weatherchannel", + "weber", + "weir", + "williamhill", + "windows", + "winners", + "wme", + "wolterskluwer", + "woodside", + "wtc", + "xbox", + "xerox", + "xfinity", + "xn--3oq18vl8pn36a", + "xn--4gq48lf9j", + "xn--5su34j936bgsg", + "xn--8y0a063a", + "xn--9krt00a", + "xn--b4w605ferd", + "xn--cckwcxetd", + "xn--estv75g", + "xn--fiq64b", + "xn--flw351e", + "xn--fzys8d69uvgm", + "xn--jlq480n2rg", + "xn--jlq61u9w7b", + "xn--kcrx77d1x4a", + "xn--w4rs40l", + "xperia", + "yahoo", + "yandex", + "yodobashi", + "youtube", + "zappos", + "zara", + "zippo" + ] + }, + { + "slug": "community", + "display_name": "Community", + "source_names": { + "icann": "Community (Spec 12)" + }, + "tlds": [ + "aco", + "adac", + "archi", + "asia", + "audi", + "bank", + "barcelona", + "berlin", + "bugatti", + "bzh", + "cat", + "catholic", + "coop", + "corsica", + "eco", + "edeka", + "eus", + "gal", + "gea", + "hamburg", + "ieee", + "ikano", + "insurance", + "ismaili", + "jobs", + "kids", + "lamborghini", + "lds", + "leclerc", + "llp", + "madrid", + "mma", + "museum", + "music", + "ngo", + "ong", + "osaka", + "ovh", + "paris", + "pars", + "pharmacy", + "quebec", + "radio", + "reit", + "scot", + "shia", + "ski", + "spa", + "sport", + "stada", + "swiss", + "tatar", + "tel", + "tirol", + "travel", + "versicherung", + "wien", + "xn--3oq18vl8pn36a", + "xn--80aqecdr1a", + "xn--mgbi4ecexp", + "xn--p1acf", + "xn--tiq49xqyj", + "xn--zfr164b" + ] + }, + { + "slug": "non_sponsored", + "display_name": "Non-Sponsored", + "source_names": { + "icann": "Non-Sponsored" + }, + "tlds": [ + "aaa", + "aarp", + "abarth", + "abb", + "abbott", + "abbvie", + "abc", + "able", + "abogado", + "abudhabi", + "academy", + "accenture", + "accountant", + "accountants", + "aco", + "active", + "actor", + "adac", + "ads", + "adult", + "aeg", + "aetna", + "afamilycompany", + "afl", + "africa", + "agakhan", + "agency", + "aig", + "aigo", + "airbus", + "airforce", + "airtel", + "akdn", + "alfaromeo", + "alibaba", + "alipay", + "allfinanz", + "allstate", + "ally", + "alsace", + "alstom", + "amazon", + "americanexpress", + "americanfamily", + "amex", + "amfam", + "amica", + "amsterdam", + "analytics", + "android", + "anquan", + "anz", + "aol", + "apartments", + "app", + "apple", + "aquarelle", + "arab", + "aramco", + "archi", + "army", + "art", + "arte", + "asda", + "associates", + "athleta", + "attorney", + "auction", + "audi", + "audible", + "audio", + "auspost", + "author", + "auto", + "autos", + "avianca", + "aws", + "axa", + "azure", + "baby", + "baidu", + "banamex", + "bananarepublic", + "band", + "bank", + "bar", + "barcelona", + "barclaycard", + "barclays", + "barefoot", + "bargains", + "baseball", + "basketball", + "bauhaus", + "bayern", + "bbc", + "bbt", + "bbva", + "bcg", + "bcn", + "beats", + "beauty", + "beer", + "bentley", + "berlin", + "best", + "bestbuy", + "bet", + "bharti", + "bible", + "bid", + "bike", + "bing", + "bingo", + "bio", + "biz", + "black", + "blackfriday", + "blanco", + "blockbuster", + "blog", + "bloomberg", + "blue", + "bms", + "bmw", + "bnl", + "bnpparibas", + "boats", + "boehringer", + "bofa", + "bom", + "bond", + "boo", + "book", + "booking", + "boots", + "bosch", + "bostik", + "boston", + "bot", + "boutique", + "box", + "bradesco", + "bridgestone", + "broadway", + "broker", + "brother", + "brussels", + "budapest", + "bugatti", + "build", + "builders", + "business", + "buy", + "buzz", + "bzh", + "cab", + "cafe", + "cal", + "call", + "calvinklein", + "cam", + "camera", + "camp", + "cancerresearch", + "canon", + "capetown", + "capital", + "capitalone", + "car", + "caravan", + "cards", + "care", + "career", + "careers", + "cars", + "cartier", + "casa", + "case", + "caseih", + "cash", + "casino", + "cat", + "catering", + "catholic", + "cba", + "cbn", + "cbre", + "cbs", + "ceb", + "center", + "ceo", + "cern", + "cfa", + "cfd", + "chanel", + "channel", + "charity", + "chase", + "chat", + "cheap", + "chintai", + "chloe", + "christmas", + "chrome", + "chrysler", + "church", + "cipriani", + "circle", + "cisco", + "citadel", + "citi", + "citic", + "city", + "cityeats", + "claims", + "cleaning", + "click", + "clinic", + "clinique", + "clothing", + "cloud", + "club", + "clubmed", + "coach", + "codes", + "coffee", + "college", + "cologne", + "com", + "comcast", + "commbank", + "community", + "company", + "compare", + "computer", + "comsec", + "condos", + "construction", + "consulting", + "contact", + "contractors", + "cooking", + "cookingchannel", + "cool", + "corsica", + "country", + "coupon", + "coupons", + "courses", + "cpa", + "credit", + "creditcard", + "creditunion", + "cricket", + "crown", + "crs", + "cruise", + "cruises", + "csc", + "cuisinella", + "cymru", + "cyou", + "dabur", + "dad", + "dance", + "data", + "date", + "dating", + "datsun", + "day", + "dclk", + "dds", + "deal", + "dealer", + "deals", + "degree", + "delivery", + "dell", + "deloitte", + "delta", + "democrat", + "dental", + "dentist", + "desi", + "design", + "dev", + "dhl", + "diamonds", + "diet", + "digital", + "direct", + "directory", + "discount", + "discover", + "dish", + "diy", + "dnp", + "docs", + "doctor", + "dodge", + "dog", + "doha", + "domains", + "doosan", + "dot", + "download", + "drive", + "dtv", + "dubai", + "duck", + "dunlop", + "duns", + "dupont", + "durban", + "dvag", + "dvr", + "earth", + "eat", + "eco", + "edeka", + "education", + "email", + "emerck", + "emerson", + "energy", + "engineer", + "engineering", + "enterprises", + "epost", + "epson", + "equipment", + "ericsson", + "erni", + "esq", + "estate", + "esurance", + "etisalat", + "eurovision", + "eus", + "events", + "everbank", + "exchange", + "expert", + "exposed", + "express", + "extraspace", + "fage", + "fail", + "fairwinds", + "faith", + "family", + "fan", + "fans", + "farm", + "farmers", + "fashion", + "fast", + "fedex", + "feedback", + "ferrari", + "ferrero", + "fiat", + "fidelity", + "fido", + "film", + "final", + "finance", + "financial", + "fire", + "firestone", + "firmdale", + "fish", + "fishing", + "fit", + "fitness", + "flickr", + "flights", + "flir", + "florist", + "flowers", + "flsmidth", + "fly", + "foo", + "food", + "foodnetwork", + "football", + "ford", + "forex", + "forsale", + "forum", + "foundation", + "fox", + "free", + "fresenius", + "frl", + "frogans", + "frontdoor", + "frontier", + "ftr", + "fujitsu", + "fujixerox", + "fun", + "fund", + "furniture", + "futbol", + "fyi", + "gal", + "gallery", + "gallo", + "gallup", + "game", + "games", + "gap", + "garden", + "gay", + "gbiz", + "gdn", + "gea", + "gent", + "genting", + "george", + "ggee", + "gift", + "gifts", + "gives", + "giving", + "glade", + "glass", + "gle", + "global", + "globo", + "gmail", + "gmbh", + "gmo", + "gmx", + "godaddy", + "gold", + "goldpoint", + "golf", + "goo", + "goodhands", + "goodyear", + "goog", + "google", + "gop", + "got", + "grainger", + "graphics", + "gratis", + "green", + "gripe", + "grocery", + "group", + "guardian", + "gucci", + "guge", + "guide", + "guitars", + "guru", + "hair", + "hamburg", + "hangout", + "haus", + "hbo", + "hdfc", + "hdfcbank", + "health", + "healthcare", + "help", + "helsinki", + "here", + "hermes", + "hgtv", + "hiphop", + "hisamitsu", + "hitachi", + "hiv", + "hkt", + "hockey", + "holdings", + "holiday", + "homedepot", + "homegoods", + "homes", + "homesense", + "honda", + "honeywell", + "horse", + "hospital", + "host", + "hosting", + "hot", + "hoteles", + "hotels", + "hotmail", + "house", + "how", + "hsbc", + "htc", + "hughes", + "hyatt", + "hyundai", + "ibm", + "icbc", + "ice", + "icu", + "ieee", + "ifm", + "iinet", + "ikano", + "imamat", + "imdb", + "immo", + "immobilien", + "inc", + "industries", + "infiniti", + "info", + "ing", + "ink", + "institute", + "insurance", + "insure", + "intel", + "international", + "intuit", + "investments", + "ipiranga", + "irish", + "iselect", + "ismaili", + "ist", + "istanbul", + "itau", + "itv", + "iveco", + "iwc", + "jaguar", + "java", + "jcb", + "jcp", + "jeep", + "jetzt", + "jewelry", + "jio", + "jlc", + "jll", + "jmp", + "jnj", + "joburg", + "jot", + "joy", + "jpmorgan", + "jprs", + "juegos", + "juniper", + "kaufen", + "kddi", + "kerryhotels", + "kerrylogistics", + "kerryproperties", + "kfh", + "kia", + "kids", + "kim", + "kinder", + "kindle", + "kitchen", + "kiwi", + "koeln", + "komatsu", + "kosher", + "kpmg", + "kpn", + "krd", + "kred", + "kuokgroup", + "kyoto", + "lacaixa", + "ladbrokes", + "lamborghini", + "lamer", + "lancaster", + "lancia", + "lancome", + "land", + "landrover", + "lanxess", + "lasalle", + "lat", + "latino", + "latrobe", + "law", + "lawyer", + "lds", + "lease", + "leclerc", + "lefrak", + "legal", + "lego", + "lexus", + "lgbt", + "liaison", + "lidl", + "life", + "lifeinsurance", + "lifestyle", + "lighting", + "like", + "lilly", + "limited", + "limo", + "lincoln", + "linde", + "link", + "lipsy", + "live", + "living", + "lixil", + "llc", + "llp", + "loan", + "loans", + "locker", + "locus", + "loft", + "lol", + "london", + "lotte", + "lotto", + "love", + "lpl", + "lplfinancial", + "ltd", + "ltda", + "lundbeck", + "lupin", + "luxe", + "luxury", + "macys", + "madrid", + "maif", + "maison", + "makeup", + "man", + "management", + "mango", + "map", + "market", + "marketing", + "markets", + "marriott", + "marshalls", + "maserati", + "mattel", + "mba", + "mcd", + "mcdonalds", + "mckinsey", + "med", + "media", + "meet", + "melbourne", + "meme", + "memorial", + "men", + "menu", + "meo", + "merck", + "merckmsd", + "metlife", + "miami", + "microsoft", + "mini", + "mint", + "mit", + "mitsubishi", + "mlb", + "mls", + "mma", + "mobi", + "mobile", + "mobily", + "moda", + "moe", + "moi", + "mom", + "monash", + "money", + "monster", + "montblanc", + "mopar", + "mormon", + "mortgage", + "moscow", + "moto", + "motorcycles", + "mov", + "movie", + "movistar", + "msd", + "mtn", + "mtpc", + "mtr", + "museum", + "music", + "mutual", + "mutuelle", + "nab", + "nadex", + "nagoya", + "name", + "nationwide", + "natura", + "navy", + "nba", + "nec", + "net", + "netbank", + "netflix", + "network", + "neustar", + "new", + "newholland", + "news", + "next", + "nextdirect", + "nexus", + "nfl", + "ngo", + "nhk", + "nico", + "nike", + "nikon", + "ninja", + "nissan", + "nissay", + "nokia", + "northwesternmutual", + "norton", + "now", + "nowruz", + "nowtv", + "nra", + "nrw", + "ntt", + "nyc", + "obi", + "observer", + "off", + "office", + "okinawa", + "olayan", + "olayangroup", + "oldnavy", + "ollo", + "omega", + "one", + "ong", + "onl", + "online", + "onyourside", + "ooo", + "open", + "oracle", + "orange", + "org", + "organic", + "orientexpress", + "origins", + "osaka", + "otsuka", + "ott", + "ovh", + "page", + "pamperedchef", + "panasonic", + "panerai", + "paris", + "pars", + "partners", + "parts", + "party", + "passagens", + "pay", + "pccw", + "pet", + "pfizer", + "pharmacy", + "phd", + "philips", + "phone", + "photo", + "photography", + "photos", + "physio", + "piaget", + "pics", + "pictet", + "pictures", + "pid", + "pin", + "ping", + "pink", + "pioneer", + "pizza", + "place", + "play", + "playstation", + "plumbing", + "plus", + "pnc", + "pohl", + "poker", + "politie", + "porn", + "pramerica", + "praxi", + "press", + "prime", + "pro", + "prod", + "productions", + "prof", + "progressive", + "promo", + "properties", + "property", + "protection", + "pru", + "prudential", + "pub", + "pwc", + "qpon", + "quebec", + "quest", + "qvc", + "racing", + "radio", + "raid", + "read", + "realestate", + "realtor", + "realty", + "recipes", + "red", + "redstone", + "redumbrella", + "rehab", + "reise", + "reisen", + "reit", + "reliance", + "ren", + "rent", + "rentals", + "repair", + "report", + "republican", + "rest", + "restaurant", + "review", + "reviews", + "rexroth", + "rich", + "richardli", + "ricoh", + "rightathome", + "ril", + "rio", + "rip", + "rmit", + "rocher", + "rocks", + "rodeo", + "rogers", + "room", + "rsvp", + "rugby", + "ruhr", + "run", + "rwe", + "ryukyu", + "saarland", + "safe", + "safety", + "sakura", + "sale", + "salon", + "samsclub", + "samsung", + "sandvik", + "sandvikcoromant", + "sanofi", + "sap", + "sapo", + "sarl", + "sas", + "save", + "saxo", + "sbi", + "sbs", + "sca", + "scb", + "schaeffler", + "schmidt", + "scholarships", + "school", + "schule", + "schwarz", + "science", + "scjohnson", + "scor", + "scot", + "search", + "seat", + "secure", + "security", + "seek", + "select", + "sener", + "services", + "ses", + "seven", + "sew", + "sex", + "sexy", + "sfr", + "shangrila", + "sharp", + "shaw", + "shell", + "shia", + "shiksha", + "shoes", + "shop", + "shopping", + "shouji", + "show", + "showtime", + "shriram", + "silk", + "sina", + "singles", + "site", + "ski", + "skin", + "sky", + "skype", + "sling", + "smart", + "smile", + "sncf", + "soccer", + "social", + "softbank", + "software", + "sohu", + "solar", + "solutions", + "song", + "sony", + "soy", + "spa", + "space", + "spiegel", + "sport", + "spot", + "spreadbetting", + "srl", + "srt", + "stada", + "staples", + "star", + "starhub", + "statebank", + "statefarm", + "statoil", + "stc", + "stcgroup", + "stockholm", + "storage", + "store", + "stream", + "studio", + "study", + "style", + "sucks", + "supplies", + "supply", + "support", + "surf", + "surgery", + "suzuki", + "swatch", + "swiftcover", + "swiss", + "sydney", + "symantec", + "systems", + "tab", + "taipei", + "talk", + "taobao", + "target", + "tatamotors", + "tatar", + "tattoo", + "tax", + "taxi", + "tci", + "tdk", + "team", + "tech", + "technology", + "tel", + "telecity", + "telefonica", + "temasek", + "tennis", + "teva", + "thd", + "theater", + "theatre", + "tiaa", + "tickets", + "tienda", + "tiffany", + "tips", + "tires", + "tirol", + "tjmaxx", + "tjx", + "tkmaxx", + "tmall", + "today", + "tokyo", + "tools", + "top", + "toray", + "toshiba", + "total", + "tours", + "town", + "toyota", + "toys", + "trade", + "trading", + "training", + "travel", + "travelchannel", + "travelers", + "travelersinsurance", + "trust", + "trv", + "tube", + "tui", + "tunes", + "tushu", + "tvs", + "ubank", + "ubs", + "uconnect", + "unicom", + "university", + "uno", + "uol", + "ups", + "vacations", + "vana", + "vanguard", + "vegas", + "ventures", + "verisign", + "versicherung", + "vet", + "viajes", + "video", + "vig", + "viking", + "villas", + "vin", + "vip", + "virgin", + "visa", + "vision", + "vista", + "vistaprint", + "viva", + "vivo", + "vlaanderen", + "vodka", + "volkswagen", + "volvo", + "vote", + "voting", + "voto", + "voyage", + "vuelos", + "wales", + "walmart", + "walter", + "wang", + "wanggou", + "warman", + "watch", + "watches", + "weather", + "weatherchannel", + "webcam", + "weber", + "website", + "wed", + "wedding", + "weibo", + "weir", + "whoswho", + "wien", + "wiki", + "williamhill", + "win", + "windows", + "wine", + "winners", + "wme", + "wolterskluwer", + "woodside", + "work", + "works", + "world", + "wow", + "wtc", + "wtf", + "xbox", + "xerox", + "xfinity", + "xihuan", + "xin", + "xn--11b4c3d", + "xn--1ck2e1b", + "xn--1qqw23a", + "xn--30rr7y", + "xn--3bst00m", + "xn--3ds443g", + "xn--3oq18vl8pn36a", + "xn--3pxu8k", + "xn--42c2d9a", + "xn--45q11c", + "xn--4gbrim", + "xn--4gq48lf9j", + "xn--55qw42g", + "xn--55qx5d", + "xn--5su34j936bgsg", + "xn--5tzm5g", + "xn--6frz82g", + "xn--6qq986b3xl", + "xn--80adxhks", + "xn--80aqecdr1a", + "xn--80asehdb", + "xn--80aswg", + "xn--8y0a063a", + "xn--9dbq2a", + "xn--9et52u", + "xn--9krt00a", + "xn--b4w605ferd", + "xn--bck1b9a5dre4c", + "xn--c1avg", + "xn--c2br7g", + "xn--cck2b3b", + "xn--cckwcxetd", + "xn--cg4bki", + "xn--czr694b", + "xn--czrs0t", + "xn--czru2d", + "xn--d1acj3b", + "xn--eckvdtc9d", + "xn--efvy88h", + "xn--estv75g", + "xn--fct429k", + "xn--fhbei", + "xn--fiq228c5hs", + "xn--fiq64b", + "xn--fjq720a", + "xn--flw351e", + "xn--fzys8d69uvgm", + "xn--g2xx48c", + "xn--gckr3f0f", + "xn--gk3at1e", + "xn--hxt814e", + "xn--i1b6b1a6a2e", + "xn--imr513n", + "xn--io0a7i", + "xn--j1aef", + "xn--jlq480n2rg", + "xn--jlq61u9w7b", + "xn--jvr189m", + "xn--kcrx77d1x4a", + "xn--kpu716f", + "xn--kput3i", + "xn--mgba3a3ejt", + "xn--mgba7c0bbn0a", + "xn--mgbaakc7dvf", + "xn--mgbab2bd", + "xn--mgbb9fbpob", + "xn--mgbca7dzdo", + "xn--mgbi4ecexp", + "xn--mgbt3dhd", + "xn--mk1bu44c", + "xn--mxtq1m", + "xn--ngbc5azd", + "xn--ngbe9e0a", + "xn--ngbrx", + "xn--nqv7f", + "xn--nqv7fs00ema", + "xn--nyqy26a", + "xn--otu796d", + "xn--p1acf", + "xn--pbt977c", + "xn--pssy2u", + "xn--q9jyb4c", + "xn--qcka1pmc", + "xn--rhqv96g", + "xn--rovu88b", + "xn--ses554g", + "xn--t60b56a", + "xn--tckwe", + "xn--tiq49xqyj", + "xn--unup4y", + "xn--vermgensberater-ctb", + "xn--vermgensberatung-pwb", + "xn--vhquv", + "xn--vuq861b", + "xn--w4r85el8fhu5dnra", + "xn--w4rs40l", + "xn--xhq521b", + "xn--zfr164b", + "xperia", + "xxx", + "xyz", + "yachts", + "yahoo", + "yamaxun", + "yandex", + "yodobashi", + "yoga", + "yokohama", + "you", + "youtube", + "yun", + "zappos", + "zara", + "zero", + "zip", + "zippo", + "zone", + "zuerich" + ] + }, + { + "slug": "sponsored", + "display_name": "Sponsored", + "source_names": { + "icann": "Sponsored" + }, + "tlds": [ + "aero", + "asia", + "coop", + "jobs", + "post" + ] + } + ] +} diff --git a/data/generated/cultures.json b/data/generated/cultures.json new file mode 100644 index 00000000..70a74b64 --- /dev/null +++ b/data/generated/cultures.json @@ -0,0 +1,120 @@ +{ + "description": "Ethno-linguistic and cultural communities claimed by TLDs in the IANA root zone, each with a reverse index of those TLDs.", + "publication": "2026-05-26T05:00:52Z", + "sources": [ + "data/manual/cultures.json (editorial)", + "data/manual/annotations.json (cultural_affiliation tags)" + ], + "cultures": [ + { + "slug": "arab", + "name_en": "Arab", + "info_link": "https://en.wikipedia.org/wiki/Arab_culture", + "language_code": "ar", + "tlds": [ + "arab", + "xn--ngbrx" + ] + }, + { + "slug": "basque", + "name_en": "Basque", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_the_Basque_Country", + "language_code": "eu", + "tlds": [ + "eus" + ] + }, + { + "slug": "breton", + "name_en": "Breton", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Brittany", + "language_code": "br", + "tlds": [ + "bzh" + ] + }, + { + "slug": "catalan", + "name_en": "Catalan", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Catalonia", + "language_code": "ca", + "tlds": [ + "cat" + ] + }, + { + "slug": "desi", + "name_en": "Desi", + "info_link": "https://en.wikipedia.org/wiki/Desi", + "language_code": null, + "tlds": [ + "desi" + ] + }, + { + "slug": "galician", + "name_en": "Galician", + "info_link": "https://en.wikipedia.org/wiki/Galician_culture", + "language_code": "gl", + "tlds": [ + "gal" + ] + }, + { + "slug": "kiwi", + "name_en": "Kiwi", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_New_Zealand", + "language_code": null, + "tlds": [ + "kiwi" + ] + }, + { + "slug": "kurdish", + "name_en": "Kurdish", + "info_link": "https://en.wikipedia.org/wiki/Kurdish_culture", + "language_code": "ku", + "tlds": [ + "krd" + ] + }, + { + "slug": "scottish", + "name_en": "Scottish", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Scotland", + "language_code": null, + "tlds": [ + "scot" + ] + }, + { + "slug": "swiss", + "name_en": "Swiss", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Switzerland", + "language_code": null, + "tlds": [ + "swiss" + ] + }, + { + "slug": "tatar", + "name_en": "Tatar", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Tatarstan", + "language_code": "tt", + "tlds": [ + "tatar" + ] + }, + { + "slug": "welsh", + "name_en": "Welsh", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Wales", + "language_code": "cy", + "tlds": [ + "cymru", + "wales" + ] + } + ] +} diff --git a/data/generated/organizations.json b/data/generated/organizations.json index cab17f0c..33be5b5c 100644 --- a/data/generated/organizations.json +++ b/data/generated/organizations.json @@ -1,6 +1,6 @@ { "description": "Organizations that play roles for TLDs in the IANA root zone, with a reverse-index of those roles. Consolidated subset: this covers the curated multi-source organizations only; the single-source long tail is not yet included, so absence here does not mean a TLD has no operator.", - "publication": "2026-05-26T03:41:37Z", + "publication": "2026-05-26T05:23:56Z", "sources": [ "data/source/iana-root.html (IANA)", "data/source/icann-gtlds.json (ICANN)", @@ -294,7 +294,6 @@ "asn": { "operator": [ "bf", - "cu", "dj", "ge", "jo", diff --git a/data/generated/places.json b/data/generated/places.json new file mode 100644 index 00000000..3ea1f90e --- /dev/null +++ b/data/generated/places.json @@ -0,0 +1,3216 @@ +{ + "description": "Places associated with TLDs in the IANA root zone (countries, dependent territories, subdivisions, cities, and supranational regions), each with a reverse index of its TLDs. Country slugs are ISO 3166-1 alpha-2.", + "publication": "2026-05-26T05:00:52Z", + "sources": [ + "pycountry (ISO 3166-1 / 3166-2)", + "data/manual/places.json (editorial)", + "data/manual/dependent-territories.json (editorial; ISO 3166-1)" + ], + "places": [ + { + "slug": "abudhabi", + "name_en": "Abu Dhabi", + "subtype": "city", + "iso_code": null, + "parent": "ae", + "info_link": "https://en.wikipedia.org/wiki/Abu_Dhabi", + "tlds": [ + "abudhabi", + "xn--mgbca7dzdo" + ] + }, + { + "slug": "ac", + "name_en": "Ascension Island", + "subtype": "country", + "iso_code": null, + "parent": "sh", + "tlds": [ + "ac" + ], + "iso_designation": "exceptionally_reserved" + }, + { + "slug": "ad", + "name_en": "Andorra", + "subtype": "country", + "iso_code": "AD", + "parent": null, + "tlds": [ + "ad" + ] + }, + { + "slug": "ae", + "name_en": "United Arab Emirates", + "subtype": "country", + "iso_code": "AE", + "parent": null, + "tlds": [ + "ae", + "xn--mgbaam7a8h" + ] + }, + { + "slug": "af", + "name_en": "Afghanistan", + "subtype": "country", + "iso_code": "AF", + "parent": null, + "tlds": [ + "af" + ] + }, + { + "slug": "africa", + "name_en": "Africa", + "subtype": "supranational", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Africa", + "tlds": [ + "africa" + ] + }, + { + "slug": "ag", + "name_en": "Antigua and Barbuda", + "subtype": "country", + "iso_code": "AG", + "parent": null, + "tlds": [ + "ag" + ] + }, + { + "slug": "ai", + "name_en": "Anguilla", + "subtype": "country", + "iso_code": "AI", + "parent": "gb", + "tlds": [ + "ai" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "al", + "name_en": "Albania", + "subtype": "country", + "iso_code": "AL", + "parent": null, + "tlds": [ + "al" + ] + }, + { + "slug": "alsace", + "name_en": "Alsace", + "subtype": "subdivision", + "iso_code": null, + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Alsace", + "tlds": [ + "alsace" + ] + }, + { + "slug": "am", + "name_en": "Armenia", + "subtype": "country", + "iso_code": "AM", + "parent": null, + "tlds": [ + "am", + "xn--y9a3aq" + ] + }, + { + "slug": "amsterdam", + "name_en": "Amsterdam", + "subtype": "city", + "iso_code": null, + "parent": "nl", + "info_link": "https://en.wikipedia.org/wiki/Amsterdam", + "tlds": [ + "amsterdam" + ] + }, + { + "slug": "ao", + "name_en": "Angola", + "subtype": "country", + "iso_code": "AO", + "parent": null, + "tlds": [ + "ao" + ] + }, + { + "slug": "aq", + "name_en": "Antarctica", + "subtype": "country", + "iso_code": "AQ", + "parent": null, + "tlds": [ + "aq" + ], + "iso_designation": "special_area" + }, + { + "slug": "ar", + "name_en": "Argentina", + "subtype": "country", + "iso_code": "AR", + "parent": null, + "tlds": [ + "ar" + ] + }, + { + "slug": "as", + "name_en": "American Samoa", + "subtype": "country", + "iso_code": "AS", + "parent": "us", + "tlds": [ + "as" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "asia", + "name_en": "Asia", + "subtype": "supranational", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Asia", + "tlds": [ + "asia" + ] + }, + { + "slug": "at", + "name_en": "Austria", + "subtype": "country", + "iso_code": "AT", + "parent": null, + "tlds": [ + "at" + ] + }, + { + "slug": "au", + "name_en": "Australia", + "subtype": "country", + "iso_code": "AU", + "parent": null, + "tlds": [ + "au" + ] + }, + { + "slug": "aw", + "name_en": "Aruba", + "subtype": "country", + "iso_code": "AW", + "parent": "nl", + "tlds": [ + "aw" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "ax", + "name_en": "Åland Islands", + "subtype": "country", + "iso_code": "AX", + "parent": "fi", + "tlds": [ + "ax" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "az", + "name_en": "Azerbaijan", + "subtype": "country", + "iso_code": "AZ", + "parent": null, + "tlds": [ + "az" + ] + }, + { + "slug": "ba", + "name_en": "Bosnia and Herzegovina", + "subtype": "country", + "iso_code": "BA", + "parent": null, + "tlds": [ + "ba" + ] + }, + { + "slug": "barcelona", + "name_en": "Barcelona", + "subtype": "city", + "iso_code": null, + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Barcelona", + "tlds": [ + "barcelona", + "bcn" + ] + }, + { + "slug": "basque-country", + "name_en": "Basque Country", + "subtype": "subdivision", + "iso_code": "ES-PV", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", + "tlds": [ + "eus" + ] + }, + { + "slug": "bayern", + "name_en": "Bavaria", + "subtype": "subdivision", + "iso_code": "DE-BY", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Bavaria", + "tlds": [ + "bayern" + ] + }, + { + "slug": "bb", + "name_en": "Barbados", + "subtype": "country", + "iso_code": "BB", + "parent": null, + "tlds": [ + "bb" + ] + }, + { + "slug": "bd", + "name_en": "Bangladesh", + "subtype": "country", + "iso_code": "BD", + "parent": null, + "tlds": [ + "bd", + "xn--54b7fta0cc" + ] + }, + { + "slug": "be", + "name_en": "Belgium", + "subtype": "country", + "iso_code": "BE", + "parent": null, + "tlds": [ + "be" + ] + }, + { + "slug": "berlin", + "name_en": "Berlin", + "subtype": "city", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Berlin", + "tlds": [ + "berlin" + ] + }, + { + "slug": "bf", + "name_en": "Burkina Faso", + "subtype": "country", + "iso_code": "BF", + "parent": null, + "tlds": [ + "bf" + ] + }, + { + "slug": "bg", + "name_en": "Bulgaria", + "subtype": "country", + "iso_code": "BG", + "parent": null, + "tlds": [ + "bg", + "xn--90ae" + ] + }, + { + "slug": "bh", + "name_en": "Bahrain", + "subtype": "country", + "iso_code": "BH", + "parent": null, + "tlds": [ + "bh", + "xn--mgbcpq6gpa1a" + ] + }, + { + "slug": "bi", + "name_en": "Burundi", + "subtype": "country", + "iso_code": "BI", + "parent": null, + "tlds": [ + "bi" + ] + }, + { + "slug": "bj", + "name_en": "Benin", + "subtype": "country", + "iso_code": "BJ", + "parent": null, + "tlds": [ + "bj" + ] + }, + { + "slug": "bm", + "name_en": "Bermuda", + "subtype": "country", + "iso_code": "BM", + "parent": "gb", + "tlds": [ + "bm" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "bn", + "name_en": "Brunei Darussalam", + "subtype": "country", + "iso_code": "BN", + "parent": null, + "tlds": [ + "bn" + ] + }, + { + "slug": "bo", + "name_en": "Bolivia, Plurinational State of", + "subtype": "country", + "iso_code": "BO", + "parent": null, + "tlds": [ + "bo" + ] + }, + { + "slug": "boston", + "name_en": "Boston", + "subtype": "city", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Boston", + "tlds": [ + "boston" + ] + }, + { + "slug": "br", + "name_en": "Brazil", + "subtype": "country", + "iso_code": "BR", + "parent": null, + "tlds": [ + "br" + ] + }, + { + "slug": "brittany", + "name_en": "Brittany", + "subtype": "subdivision", + "iso_code": "FR-BRE", + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Brittany", + "tlds": [ + "bzh" + ] + }, + { + "slug": "brussels", + "name_en": "Brussels", + "subtype": "city", + "iso_code": null, + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Brussels", + "tlds": [ + "brussels" + ] + }, + { + "slug": "bs", + "name_en": "Bahamas", + "subtype": "country", + "iso_code": "BS", + "parent": null, + "tlds": [ + "bs" + ] + }, + { + "slug": "bt", + "name_en": "Bhutan", + "subtype": "country", + "iso_code": "BT", + "parent": null, + "tlds": [ + "bt" + ] + }, + { + "slug": "bv", + "name_en": "Bouvet Island", + "subtype": "country", + "iso_code": "BV", + "parent": "no", + "tlds": [ + "bv" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "bw", + "name_en": "Botswana", + "subtype": "country", + "iso_code": "BW", + "parent": null, + "tlds": [ + "bw" + ] + }, + { + "slug": "by", + "name_en": "Belarus", + "subtype": "country", + "iso_code": "BY", + "parent": null, + "tlds": [ + "by", + "xn--90ais" + ] + }, + { + "slug": "bz", + "name_en": "Belize", + "subtype": "country", + "iso_code": "BZ", + "parent": null, + "tlds": [ + "bz" + ] + }, + { + "slug": "ca", + "name_en": "Canada", + "subtype": "country", + "iso_code": "CA", + "parent": null, + "tlds": [ + "ca" + ] + }, + { + "slug": "capetown", + "name_en": "Cape Town", + "subtype": "city", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Cape_Town", + "tlds": [ + "capetown" + ] + }, + { + "slug": "catalonia", + "name_en": "Catalonia", + "subtype": "subdivision", + "iso_code": "ES-CT", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Catalonia", + "tlds": [ + "cat" + ] + }, + { + "slug": "cc", + "name_en": "Cocos (Keeling) Islands", + "subtype": "country", + "iso_code": "CC", + "parent": "au", + "tlds": [ + "cc" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "cd", + "name_en": "Congo, The Democratic Republic of the", + "subtype": "country", + "iso_code": "CD", + "parent": null, + "tlds": [ + "cd" + ] + }, + { + "slug": "cf", + "name_en": "Central African Republic", + "subtype": "country", + "iso_code": "CF", + "parent": null, + "tlds": [ + "cf" + ] + }, + { + "slug": "cg", + "name_en": "Congo", + "subtype": "country", + "iso_code": "CG", + "parent": null, + "tlds": [ + "cg" + ] + }, + { + "slug": "ch", + "name_en": "Switzerland", + "subtype": "country", + "iso_code": "CH", + "parent": null, + "tlds": [ + "ch" + ] + }, + { + "slug": "ci", + "name_en": "Côte d'Ivoire", + "subtype": "country", + "iso_code": "CI", + "parent": null, + "tlds": [ + "ci" + ] + }, + { + "slug": "ck", + "name_en": "Cook Islands", + "subtype": "country", + "iso_code": "CK", + "parent": "nz", + "tlds": [ + "ck" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "cl", + "name_en": "Chile", + "subtype": "country", + "iso_code": "CL", + "parent": null, + "tlds": [ + "cl" + ] + }, + { + "slug": "cm", + "name_en": "Cameroon", + "subtype": "country", + "iso_code": "CM", + "parent": null, + "tlds": [ + "cm" + ] + }, + { + "slug": "cn", + "name_en": "China", + "subtype": "country", + "iso_code": "CN", + "parent": null, + "tlds": [ + "cn", + "xn--fiqs8s", + "xn--fiqz9s" + ] + }, + { + "slug": "co", + "name_en": "Colombia", + "subtype": "country", + "iso_code": "CO", + "parent": null, + "tlds": [ + "co" + ] + }, + { + "slug": "cologne", + "name_en": "Cologne", + "subtype": "city", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Cologne", + "tlds": [ + "cologne", + "koeln" + ] + }, + { + "slug": "corsica", + "name_en": "Corsica", + "subtype": "subdivision", + "iso_code": "FR-20R", + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Corsica", + "tlds": [ + "corsica" + ] + }, + { + "slug": "cr", + "name_en": "Costa Rica", + "subtype": "country", + "iso_code": "CR", + "parent": null, + "tlds": [ + "cr" + ] + }, + { + "slug": "cu", + "name_en": "Cuba", + "subtype": "country", + "iso_code": "CU", + "parent": null, + "tlds": [ + "cu" + ] + }, + { + "slug": "cv", + "name_en": "Cabo Verde", + "subtype": "country", + "iso_code": "CV", + "parent": null, + "tlds": [ + "cv" + ] + }, + { + "slug": "cw", + "name_en": "Curaçao", + "subtype": "country", + "iso_code": "CW", + "parent": "nl", + "tlds": [ + "cw" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "cx", + "name_en": "Christmas Island", + "subtype": "country", + "iso_code": "CX", + "parent": "au", + "tlds": [ + "cx" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "cy", + "name_en": "Cyprus", + "subtype": "country", + "iso_code": "CY", + "parent": null, + "tlds": [ + "cy" + ] + }, + { + "slug": "cz", + "name_en": "Czechia", + "subtype": "country", + "iso_code": "CZ", + "parent": null, + "tlds": [ + "cz" + ] + }, + { + "slug": "de", + "name_en": "Germany", + "subtype": "country", + "iso_code": "DE", + "parent": null, + "tlds": [ + "de" + ] + }, + { + "slug": "dj", + "name_en": "Djibouti", + "subtype": "country", + "iso_code": "DJ", + "parent": null, + "tlds": [ + "dj" + ] + }, + { + "slug": "dk", + "name_en": "Denmark", + "subtype": "country", + "iso_code": "DK", + "parent": null, + "tlds": [ + "dk" + ] + }, + { + "slug": "dm", + "name_en": "Dominica", + "subtype": "country", + "iso_code": "DM", + "parent": null, + "tlds": [ + "dm" + ] + }, + { + "slug": "do", + "name_en": "Dominican Republic", + "subtype": "country", + "iso_code": "DO", + "parent": null, + "tlds": [ + "do" + ] + }, + { + "slug": "dubai", + "name_en": "Dubai", + "subtype": "city", + "iso_code": null, + "parent": "ae", + "info_link": "https://en.wikipedia.org/wiki/Dubai", + "tlds": [ + "dubai" + ] + }, + { + "slug": "durban", + "name_en": "Durban", + "subtype": "city", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Durban", + "tlds": [ + "durban" + ] + }, + { + "slug": "dz", + "name_en": "Algeria", + "subtype": "country", + "iso_code": "DZ", + "parent": null, + "tlds": [ + "dz", + "xn--lgbbat1ad8j" + ] + }, + { + "slug": "ec", + "name_en": "Ecuador", + "subtype": "country", + "iso_code": "EC", + "parent": null, + "tlds": [ + "ec" + ] + }, + { + "slug": "ee", + "name_en": "Estonia", + "subtype": "country", + "iso_code": "EE", + "parent": null, + "tlds": [ + "ee" + ] + }, + { + "slug": "eg", + "name_en": "Egypt", + "subtype": "country", + "iso_code": "EG", + "parent": null, + "tlds": [ + "eg", + "xn--wgbh1c" + ] + }, + { + "slug": "er", + "name_en": "Eritrea", + "subtype": "country", + "iso_code": "ER", + "parent": null, + "tlds": [ + "er" + ] + }, + { + "slug": "es", + "name_en": "Spain", + "subtype": "country", + "iso_code": "ES", + "parent": null, + "tlds": [ + "es" + ] + }, + { + "slug": "et", + "name_en": "Ethiopia", + "subtype": "country", + "iso_code": "ET", + "parent": null, + "tlds": [ + "et" + ] + }, + { + "slug": "eu", + "name_en": "European Union", + "subtype": "supranational", + "iso_code": "EU", + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/European_Union", + "tlds": [ + "eu", + "xn--e1a4c", + "xn--qxa6a" + ] + }, + { + "slug": "fi", + "name_en": "Finland", + "subtype": "country", + "iso_code": "FI", + "parent": null, + "tlds": [ + "fi" + ] + }, + { + "slug": "fj", + "name_en": "Fiji", + "subtype": "country", + "iso_code": "FJ", + "parent": null, + "tlds": [ + "fj" + ] + }, + { + "slug": "fk", + "name_en": "Falkland Islands (Malvinas)", + "subtype": "country", + "iso_code": "FK", + "parent": "gb", + "tlds": [ + "fk" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "flanders", + "name_en": "Flanders", + "subtype": "subdivision", + "iso_code": "BE-VLG", + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Flanders", + "tlds": [ + "vlaanderen" + ] + }, + { + "slug": "fm", + "name_en": "Micronesia, Federated States of", + "subtype": "country", + "iso_code": "FM", + "parent": null, + "tlds": [ + "fm" + ] + }, + { + "slug": "fo", + "name_en": "Faroe Islands", + "subtype": "country", + "iso_code": "FO", + "parent": "dk", + "tlds": [ + "fo" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "fr", + "name_en": "France", + "subtype": "country", + "iso_code": "FR", + "parent": null, + "tlds": [ + "fr" + ] + }, + { + "slug": "friesland", + "name_en": "Friesland", + "subtype": "subdivision", + "iso_code": "NL-FR", + "parent": "nl", + "info_link": "https://en.wikipedia.org/wiki/Friesland", + "tlds": [ + "frl" + ] + }, + { + "slug": "ga", + "name_en": "Gabon", + "subtype": "country", + "iso_code": "GA", + "parent": null, + "tlds": [ + "ga" + ] + }, + { + "slug": "galicia", + "name_en": "Galicia", + "subtype": "subdivision", + "iso_code": "ES-GA", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Galicia_(Spain)", + "tlds": [ + "gal" + ] + }, + { + "slug": "gb", + "name_en": "United Kingdom", + "subtype": "country", + "iso_code": "GB", + "parent": null, + "tlds": [ + "gb", + "uk" + ] + }, + { + "slug": "gd", + "name_en": "Grenada", + "subtype": "country", + "iso_code": "GD", + "parent": null, + "tlds": [ + "gd" + ] + }, + { + "slug": "ge", + "name_en": "Georgia", + "subtype": "country", + "iso_code": "GE", + "parent": null, + "tlds": [ + "ge", + "xn--node" + ] + }, + { + "slug": "gent", + "name_en": "Ghent", + "subtype": "city", + "iso_code": null, + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Ghent", + "tlds": [ + "gent" + ] + }, + { + "slug": "gf", + "name_en": "French Guiana", + "subtype": "country", + "iso_code": "GF", + "parent": "fr", + "tlds": [ + "gf" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gg", + "name_en": "Guernsey", + "subtype": "country", + "iso_code": "GG", + "parent": "gb", + "tlds": [ + "gg" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gh", + "name_en": "Ghana", + "subtype": "country", + "iso_code": "GH", + "parent": null, + "tlds": [ + "gh" + ] + }, + { + "slug": "gi", + "name_en": "Gibraltar", + "subtype": "country", + "iso_code": "GI", + "parent": "gb", + "tlds": [ + "gi" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gl", + "name_en": "Greenland", + "subtype": "country", + "iso_code": "GL", + "parent": "dk", + "tlds": [ + "gl" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gm", + "name_en": "Gambia", + "subtype": "country", + "iso_code": "GM", + "parent": null, + "tlds": [ + "gm" + ] + }, + { + "slug": "gn", + "name_en": "Guinea", + "subtype": "country", + "iso_code": "GN", + "parent": null, + "tlds": [ + "gn" + ] + }, + { + "slug": "gp", + "name_en": "Guadeloupe", + "subtype": "country", + "iso_code": "GP", + "parent": "fr", + "tlds": [ + "gp" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gq", + "name_en": "Equatorial Guinea", + "subtype": "country", + "iso_code": "GQ", + "parent": null, + "tlds": [ + "gq" + ] + }, + { + "slug": "gr", + "name_en": "Greece", + "subtype": "country", + "iso_code": "GR", + "parent": null, + "tlds": [ + "gr", + "xn--qxam" + ] + }, + { + "slug": "gs", + "name_en": "South Georgia and the South Sandwich Islands", + "subtype": "country", + "iso_code": "GS", + "parent": "gb", + "tlds": [ + "gs" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gt", + "name_en": "Guatemala", + "subtype": "country", + "iso_code": "GT", + "parent": null, + "tlds": [ + "gt" + ] + }, + { + "slug": "gu", + "name_en": "Guam", + "subtype": "country", + "iso_code": "GU", + "parent": "us", + "tlds": [ + "gu" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "gw", + "name_en": "Guinea-Bissau", + "subtype": "country", + "iso_code": "GW", + "parent": null, + "tlds": [ + "gw" + ] + }, + { + "slug": "gy", + "name_en": "Guyana", + "subtype": "country", + "iso_code": "GY", + "parent": null, + "tlds": [ + "gy" + ] + }, + { + "slug": "hamburg", + "name_en": "Hamburg", + "subtype": "city", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Hamburg", + "tlds": [ + "hamburg" + ] + }, + { + "slug": "helsinki", + "name_en": "Helsinki", + "subtype": "city", + "iso_code": null, + "parent": "fi", + "info_link": "https://en.wikipedia.org/wiki/Helsinki", + "tlds": [ + "helsinki" + ] + }, + { + "slug": "hk", + "name_en": "Hong Kong", + "subtype": "country", + "iso_code": "HK", + "parent": "cn", + "tlds": [ + "hk", + "xn--j6w193g" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "hm", + "name_en": "Heard Island and McDonald Islands", + "subtype": "country", + "iso_code": "HM", + "parent": "au", + "tlds": [ + "hm" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "hn", + "name_en": "Honduras", + "subtype": "country", + "iso_code": "HN", + "parent": null, + "tlds": [ + "hn" + ] + }, + { + "slug": "hr", + "name_en": "Croatia", + "subtype": "country", + "iso_code": "HR", + "parent": null, + "tlds": [ + "hr" + ] + }, + { + "slug": "ht", + "name_en": "Haiti", + "subtype": "country", + "iso_code": "HT", + "parent": null, + "tlds": [ + "ht" + ] + }, + { + "slug": "hu", + "name_en": "Hungary", + "subtype": "country", + "iso_code": "HU", + "parent": null, + "tlds": [ + "hu" + ] + }, + { + "slug": "id", + "name_en": "Indonesia", + "subtype": "country", + "iso_code": "ID", + "parent": null, + "tlds": [ + "id" + ] + }, + { + "slug": "ie", + "name_en": "Ireland", + "subtype": "country", + "iso_code": "IE", + "parent": null, + "tlds": [ + "ie" + ] + }, + { + "slug": "il", + "name_en": "Israel", + "subtype": "country", + "iso_code": "IL", + "parent": null, + "tlds": [ + "il", + "xn--4dbrk0ce" + ] + }, + { + "slug": "im", + "name_en": "Isle of Man", + "subtype": "country", + "iso_code": "IM", + "parent": "gb", + "tlds": [ + "im" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "in", + "name_en": "India", + "subtype": "country", + "iso_code": "IN", + "parent": null, + "tlds": [ + "in", + "xn--2scrj9c", + "xn--3hcrj9c", + "xn--45br5cyl", + "xn--45brj9c", + "xn--fpcrj9c3d", + "xn--gecrj9c", + "xn--h2breg3eve", + "xn--h2brj9c", + "xn--h2brj9c8c", + "xn--mgbbh1a", + "xn--mgbbh1a71e", + "xn--mgbgu82a", + "xn--rvc1e0am3e", + "xn--s9brj9c", + "xn--xkc2dl3a5ee0h" + ] + }, + { + "slug": "io", + "name_en": "British Indian Ocean Territory", + "subtype": "country", + "iso_code": "IO", + "parent": "gb", + "tlds": [ + "io" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "iq", + "name_en": "Iraq", + "subtype": "country", + "iso_code": "IQ", + "parent": null, + "tlds": [ + "iq", + "xn--mgbtx2b" + ] + }, + { + "slug": "ir", + "name_en": "Iran, Islamic Republic of", + "subtype": "country", + "iso_code": "IR", + "parent": null, + "tlds": [ + "ir", + "xn--mgba3a4f16a" + ] + }, + { + "slug": "is", + "name_en": "Iceland", + "subtype": "country", + "iso_code": "IS", + "parent": null, + "tlds": [ + "is" + ] + }, + { + "slug": "istanbul", + "name_en": "Istanbul", + "subtype": "city", + "iso_code": null, + "parent": "tr", + "info_link": "https://en.wikipedia.org/wiki/Istanbul", + "tlds": [ + "ist", + "istanbul" + ] + }, + { + "slug": "it", + "name_en": "Italy", + "subtype": "country", + "iso_code": "IT", + "parent": null, + "tlds": [ + "it" + ] + }, + { + "slug": "je", + "name_en": "Jersey", + "subtype": "country", + "iso_code": "JE", + "parent": "gb", + "tlds": [ + "je" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "jm", + "name_en": "Jamaica", + "subtype": "country", + "iso_code": "JM", + "parent": null, + "tlds": [ + "jm" + ] + }, + { + "slug": "jo", + "name_en": "Jordan", + "subtype": "country", + "iso_code": "JO", + "parent": null, + "tlds": [ + "jo", + "xn--mgbayh7gpa" + ] + }, + { + "slug": "joburg", + "name_en": "Johannesburg", + "subtype": "city", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Johannesburg", + "tlds": [ + "joburg" + ] + }, + { + "slug": "jp", + "name_en": "Japan", + "subtype": "country", + "iso_code": "JP", + "parent": null, + "tlds": [ + "jp" + ] + }, + { + "slug": "ke", + "name_en": "Kenya", + "subtype": "country", + "iso_code": "KE", + "parent": null, + "tlds": [ + "ke" + ] + }, + { + "slug": "kg", + "name_en": "Kyrgyzstan", + "subtype": "country", + "iso_code": "KG", + "parent": null, + "tlds": [ + "kg" + ] + }, + { + "slug": "kh", + "name_en": "Cambodia", + "subtype": "country", + "iso_code": "KH", + "parent": null, + "tlds": [ + "kh" + ] + }, + { + "slug": "ki", + "name_en": "Kiribati", + "subtype": "country", + "iso_code": "KI", + "parent": null, + "tlds": [ + "ki" + ] + }, + { + "slug": "km", + "name_en": "Comoros", + "subtype": "country", + "iso_code": "KM", + "parent": null, + "tlds": [ + "km" + ] + }, + { + "slug": "kn", + "name_en": "Saint Kitts and Nevis", + "subtype": "country", + "iso_code": "KN", + "parent": null, + "tlds": [ + "kn" + ] + }, + { + "slug": "kp", + "name_en": "Korea, Democratic People's Republic of", + "subtype": "country", + "iso_code": "KP", + "parent": null, + "tlds": [ + "kp" + ] + }, + { + "slug": "kr", + "name_en": "Korea, Republic of", + "subtype": "country", + "iso_code": "KR", + "parent": null, + "tlds": [ + "kr", + "xn--3e0b707e" + ] + }, + { + "slug": "kw", + "name_en": "Kuwait", + "subtype": "country", + "iso_code": "KW", + "parent": null, + "tlds": [ + "kw" + ] + }, + { + "slug": "ky", + "name_en": "Cayman Islands", + "subtype": "country", + "iso_code": "KY", + "parent": "gb", + "tlds": [ + "ky" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "kyoto", + "name_en": "Kyoto", + "subtype": "city", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Kyoto", + "tlds": [ + "kyoto" + ] + }, + { + "slug": "kz", + "name_en": "Kazakhstan", + "subtype": "country", + "iso_code": "KZ", + "parent": null, + "tlds": [ + "kz", + "xn--80ao21a" + ] + }, + { + "slug": "la", + "name_en": "Lao People's Democratic Republic", + "subtype": "country", + "iso_code": "LA", + "parent": null, + "tlds": [ + "la", + "xn--q7ce6a" + ] + }, + { + "slug": "latin-america", + "name_en": "Latin America", + "subtype": "supranational", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Latin_America", + "tlds": [ + "lat" + ] + }, + { + "slug": "lb", + "name_en": "Lebanon", + "subtype": "country", + "iso_code": "LB", + "parent": null, + "tlds": [ + "lb" + ] + }, + { + "slug": "lc", + "name_en": "Saint Lucia", + "subtype": "country", + "iso_code": "LC", + "parent": null, + "tlds": [ + "lc" + ] + }, + { + "slug": "li", + "name_en": "Liechtenstein", + "subtype": "country", + "iso_code": "LI", + "parent": null, + "tlds": [ + "li" + ] + }, + { + "slug": "lk", + "name_en": "Sri Lanka", + "subtype": "country", + "iso_code": "LK", + "parent": null, + "tlds": [ + "lk", + "xn--fzc2c9e2c", + "xn--xkc2al3hye2a" + ] + }, + { + "slug": "london", + "name_en": "London", + "subtype": "city", + "iso_code": null, + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/London", + "tlds": [ + "london" + ] + }, + { + "slug": "lr", + "name_en": "Liberia", + "subtype": "country", + "iso_code": "LR", + "parent": null, + "tlds": [ + "lr" + ] + }, + { + "slug": "ls", + "name_en": "Lesotho", + "subtype": "country", + "iso_code": "LS", + "parent": null, + "tlds": [ + "ls" + ] + }, + { + "slug": "lt", + "name_en": "Lithuania", + "subtype": "country", + "iso_code": "LT", + "parent": null, + "tlds": [ + "lt" + ] + }, + { + "slug": "lu", + "name_en": "Luxembourg", + "subtype": "country", + "iso_code": "LU", + "parent": null, + "tlds": [ + "lu" + ] + }, + { + "slug": "lv", + "name_en": "Latvia", + "subtype": "country", + "iso_code": "LV", + "parent": null, + "tlds": [ + "lv" + ] + }, + { + "slug": "ly", + "name_en": "Libya", + "subtype": "country", + "iso_code": "LY", + "parent": null, + "tlds": [ + "ly" + ] + }, + { + "slug": "ma", + "name_en": "Morocco", + "subtype": "country", + "iso_code": "MA", + "parent": null, + "tlds": [ + "ma", + "xn--mgbc0a9azcg" + ] + }, + { + "slug": "madrid", + "name_en": "Madrid", + "subtype": "city", + "iso_code": null, + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Madrid", + "tlds": [ + "madrid" + ] + }, + { + "slug": "mc", + "name_en": "Monaco", + "subtype": "country", + "iso_code": "MC", + "parent": null, + "tlds": [ + "mc" + ] + }, + { + "slug": "md", + "name_en": "Moldova, Republic of", + "subtype": "country", + "iso_code": "MD", + "parent": null, + "tlds": [ + "md" + ] + }, + { + "slug": "me", + "name_en": "Montenegro", + "subtype": "country", + "iso_code": "ME", + "parent": null, + "tlds": [ + "me" + ] + }, + { + "slug": "melbourne", + "name_en": "Melbourne", + "subtype": "city", + "iso_code": null, + "parent": "au", + "info_link": "https://en.wikipedia.org/wiki/Melbourne", + "tlds": [ + "melbourne" + ] + }, + { + "slug": "mg", + "name_en": "Madagascar", + "subtype": "country", + "iso_code": "MG", + "parent": null, + "tlds": [ + "mg" + ] + }, + { + "slug": "mh", + "name_en": "Marshall Islands", + "subtype": "country", + "iso_code": "MH", + "parent": null, + "tlds": [ + "mh" + ] + }, + { + "slug": "miami", + "name_en": "Miami", + "subtype": "city", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Miami", + "tlds": [ + "miami" + ] + }, + { + "slug": "mk", + "name_en": "North Macedonia", + "subtype": "country", + "iso_code": "MK", + "parent": null, + "tlds": [ + "mk", + "xn--d1alf" + ] + }, + { + "slug": "ml", + "name_en": "Mali", + "subtype": "country", + "iso_code": "ML", + "parent": null, + "tlds": [ + "ml" + ] + }, + { + "slug": "mm", + "name_en": "Myanmar", + "subtype": "country", + "iso_code": "MM", + "parent": null, + "tlds": [ + "mm" + ] + }, + { + "slug": "mn", + "name_en": "Mongolia", + "subtype": "country", + "iso_code": "MN", + "parent": null, + "tlds": [ + "mn", + "xn--l1acc" + ] + }, + { + "slug": "mo", + "name_en": "Macao", + "subtype": "country", + "iso_code": "MO", + "parent": "cn", + "tlds": [ + "mo", + "xn--mix891f" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "moscow", + "name_en": "Moscow", + "subtype": "city", + "iso_code": null, + "parent": "ru", + "info_link": "https://en.wikipedia.org/wiki/Moscow", + "tlds": [ + "moscow", + "xn--80adxhks" + ] + }, + { + "slug": "mp", + "name_en": "Northern Mariana Islands", + "subtype": "country", + "iso_code": "MP", + "parent": "us", + "tlds": [ + "mp" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "mq", + "name_en": "Martinique", + "subtype": "country", + "iso_code": "MQ", + "parent": "fr", + "tlds": [ + "mq" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "mr", + "name_en": "Mauritania", + "subtype": "country", + "iso_code": "MR", + "parent": null, + "tlds": [ + "mr", + "xn--mgbah1a3hjkrd" + ] + }, + { + "slug": "ms", + "name_en": "Montserrat", + "subtype": "country", + "iso_code": "MS", + "parent": "gb", + "tlds": [ + "ms" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "mt", + "name_en": "Malta", + "subtype": "country", + "iso_code": "MT", + "parent": null, + "tlds": [ + "mt" + ] + }, + { + "slug": "mu", + "name_en": "Mauritius", + "subtype": "country", + "iso_code": "MU", + "parent": null, + "tlds": [ + "mu" + ] + }, + { + "slug": "mv", + "name_en": "Maldives", + "subtype": "country", + "iso_code": "MV", + "parent": null, + "tlds": [ + "mv" + ] + }, + { + "slug": "mw", + "name_en": "Malawi", + "subtype": "country", + "iso_code": "MW", + "parent": null, + "tlds": [ + "mw" + ] + }, + { + "slug": "mx", + "name_en": "Mexico", + "subtype": "country", + "iso_code": "MX", + "parent": null, + "tlds": [ + "mx" + ] + }, + { + "slug": "my", + "name_en": "Malaysia", + "subtype": "country", + "iso_code": "MY", + "parent": null, + "tlds": [ + "my", + "xn--mgbx4cd0ab" + ] + }, + { + "slug": "mz", + "name_en": "Mozambique", + "subtype": "country", + "iso_code": "MZ", + "parent": null, + "tlds": [ + "mz" + ] + }, + { + "slug": "na", + "name_en": "Namibia", + "subtype": "country", + "iso_code": "NA", + "parent": null, + "tlds": [ + "na" + ] + }, + { + "slug": "nagoya", + "name_en": "Nagoya", + "subtype": "city", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Nagoya", + "tlds": [ + "nagoya" + ] + }, + { + "slug": "nc", + "name_en": "New Caledonia", + "subtype": "country", + "iso_code": "NC", + "parent": "fr", + "tlds": [ + "nc" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "ne", + "name_en": "Niger", + "subtype": "country", + "iso_code": "NE", + "parent": null, + "tlds": [ + "ne" + ] + }, + { + "slug": "nf", + "name_en": "Norfolk Island", + "subtype": "country", + "iso_code": "NF", + "parent": "au", + "tlds": [ + "nf" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "ng", + "name_en": "Nigeria", + "subtype": "country", + "iso_code": "NG", + "parent": null, + "tlds": [ + "ng" + ] + }, + { + "slug": "ni", + "name_en": "Nicaragua", + "subtype": "country", + "iso_code": "NI", + "parent": null, + "tlds": [ + "ni" + ] + }, + { + "slug": "nl", + "name_en": "Netherlands", + "subtype": "country", + "iso_code": "NL", + "parent": null, + "tlds": [ + "nl" + ] + }, + { + "slug": "no", + "name_en": "Norway", + "subtype": "country", + "iso_code": "NO", + "parent": null, + "tlds": [ + "no" + ] + }, + { + "slug": "north-rhine-westphalia", + "name_en": "North Rhine-Westphalia", + "subtype": "subdivision", + "iso_code": "DE-NW", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/North_Rhine-Westphalia", + "tlds": [ + "nrw" + ] + }, + { + "slug": "np", + "name_en": "Nepal", + "subtype": "country", + "iso_code": "NP", + "parent": null, + "tlds": [ + "np" + ] + }, + { + "slug": "nr", + "name_en": "Nauru", + "subtype": "country", + "iso_code": "NR", + "parent": null, + "tlds": [ + "nr" + ] + }, + { + "slug": "nu", + "name_en": "Niue", + "subtype": "country", + "iso_code": "NU", + "parent": "nz", + "tlds": [ + "nu" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "nyc", + "name_en": "New York City", + "subtype": "city", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/New_York_City", + "tlds": [ + "nyc" + ] + }, + { + "slug": "nz", + "name_en": "New Zealand", + "subtype": "country", + "iso_code": "NZ", + "parent": null, + "tlds": [ + "nz" + ] + }, + { + "slug": "okinawa", + "name_en": "Okinawa", + "subtype": "subdivision", + "iso_code": "JP-47", + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Okinawa_Prefecture", + "tlds": [ + "okinawa" + ] + }, + { + "slug": "om", + "name_en": "Oman", + "subtype": "country", + "iso_code": "OM", + "parent": null, + "tlds": [ + "om", + "xn--mgb9awbf" + ] + }, + { + "slug": "osaka", + "name_en": "Osaka", + "subtype": "city", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Osaka", + "tlds": [ + "osaka" + ] + }, + { + "slug": "pa", + "name_en": "Panama", + "subtype": "country", + "iso_code": "PA", + "parent": null, + "tlds": [ + "pa" + ] + }, + { + "slug": "paris", + "name_en": "Paris", + "subtype": "city", + "iso_code": null, + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Paris", + "tlds": [ + "paris" + ] + }, + { + "slug": "pe", + "name_en": "Peru", + "subtype": "country", + "iso_code": "PE", + "parent": null, + "tlds": [ + "pe" + ] + }, + { + "slug": "pf", + "name_en": "French Polynesia", + "subtype": "country", + "iso_code": "PF", + "parent": "fr", + "tlds": [ + "pf" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "pg", + "name_en": "Papua New Guinea", + "subtype": "country", + "iso_code": "PG", + "parent": null, + "tlds": [ + "pg" + ] + }, + { + "slug": "ph", + "name_en": "Philippines", + "subtype": "country", + "iso_code": "PH", + "parent": null, + "tlds": [ + "ph" + ] + }, + { + "slug": "pk", + "name_en": "Pakistan", + "subtype": "country", + "iso_code": "PK", + "parent": null, + "tlds": [ + "pk", + "xn--mgbai9azgqp6j" + ] + }, + { + "slug": "pl", + "name_en": "Poland", + "subtype": "country", + "iso_code": "PL", + "parent": null, + "tlds": [ + "pl" + ] + }, + { + "slug": "pm", + "name_en": "Saint Pierre and Miquelon", + "subtype": "country", + "iso_code": "PM", + "parent": "fr", + "tlds": [ + "pm" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "pn", + "name_en": "Pitcairn", + "subtype": "country", + "iso_code": "PN", + "parent": "gb", + "tlds": [ + "pn" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "pr", + "name_en": "Puerto Rico", + "subtype": "country", + "iso_code": "PR", + "parent": "us", + "tlds": [ + "pr" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "ps", + "name_en": "Palestine, State of", + "subtype": "country", + "iso_code": "PS", + "parent": null, + "tlds": [ + "ps", + "xn--ygbi2ammx" + ] + }, + { + "slug": "pt", + "name_en": "Portugal", + "subtype": "country", + "iso_code": "PT", + "parent": null, + "tlds": [ + "pt" + ] + }, + { + "slug": "pw", + "name_en": "Palau", + "subtype": "country", + "iso_code": "PW", + "parent": null, + "tlds": [ + "pw" + ] + }, + { + "slug": "py", + "name_en": "Paraguay", + "subtype": "country", + "iso_code": "PY", + "parent": null, + "tlds": [ + "py" + ] + }, + { + "slug": "qa", + "name_en": "Qatar", + "subtype": "country", + "iso_code": "QA", + "parent": null, + "tlds": [ + "qa", + "xn--wgbl6a" + ] + }, + { + "slug": "quebec", + "name_en": "Quebec", + "subtype": "subdivision", + "iso_code": "CA-QC", + "parent": "ca", + "info_link": "https://en.wikipedia.org/wiki/Quebec", + "tlds": [ + "quebec" + ] + }, + { + "slug": "re", + "name_en": "Réunion", + "subtype": "country", + "iso_code": "RE", + "parent": "fr", + "tlds": [ + "re" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "rio", + "name_en": "Rio de Janeiro", + "subtype": "city", + "iso_code": null, + "parent": "br", + "info_link": "https://en.wikipedia.org/wiki/Rio_de_Janeiro", + "tlds": [ + "rio" + ] + }, + { + "slug": "ro", + "name_en": "Romania", + "subtype": "country", + "iso_code": "RO", + "parent": null, + "tlds": [ + "ro" + ] + }, + { + "slug": "rs", + "name_en": "Serbia", + "subtype": "country", + "iso_code": "RS", + "parent": null, + "tlds": [ + "rs", + "xn--90a3ac" + ] + }, + { + "slug": "ru", + "name_en": "Russian Federation", + "subtype": "country", + "iso_code": "RU", + "parent": null, + "tlds": [ + "ru", + "xn--p1ai" + ] + }, + { + "slug": "ruhr", + "name_en": "Ruhr", + "subtype": "subdivision", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Ruhr", + "tlds": [ + "ruhr" + ] + }, + { + "slug": "rw", + "name_en": "Rwanda", + "subtype": "country", + "iso_code": "RW", + "parent": null, + "tlds": [ + "rw" + ] + }, + { + "slug": "ryukyu", + "name_en": "Ryukyu Islands", + "subtype": "subdivision", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Ryukyu_Islands", + "tlds": [ + "ryukyu" + ] + }, + { + "slug": "sa", + "name_en": "Saudi Arabia", + "subtype": "country", + "iso_code": "SA", + "parent": null, + "tlds": [ + "sa", + "xn--mgberp4a5d4ar" + ] + }, + { + "slug": "saarland", + "name_en": "Saarland", + "subtype": "subdivision", + "iso_code": "DE-SL", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Saarland", + "tlds": [ + "saarland" + ] + }, + { + "slug": "sb", + "name_en": "Solomon Islands", + "subtype": "country", + "iso_code": "SB", + "parent": null, + "tlds": [ + "sb" + ] + }, + { + "slug": "sc", + "name_en": "Seychelles", + "subtype": "country", + "iso_code": "SC", + "parent": null, + "tlds": [ + "sc" + ] + }, + { + "slug": "scotland", + "name_en": "Scotland", + "subtype": "subdivision", + "iso_code": "GB-SCT", + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/Scotland", + "tlds": [ + "scot" + ] + }, + { + "slug": "sd", + "name_en": "Sudan", + "subtype": "country", + "iso_code": "SD", + "parent": null, + "tlds": [ + "sd", + "xn--mgbpl2fh" + ] + }, + { + "slug": "se", + "name_en": "Sweden", + "subtype": "country", + "iso_code": "SE", + "parent": null, + "tlds": [ + "se" + ] + }, + { + "slug": "sg", + "name_en": "Singapore", + "subtype": "country", + "iso_code": "SG", + "parent": null, + "tlds": [ + "sg", + "xn--clchc0ea0b2g2a9gcd", + "xn--yfro4i67o" + ] + }, + { + "slug": "sh", + "name_en": "Saint Helena, Ascension and Tristan da Cunha", + "subtype": "country", + "iso_code": "SH", + "parent": "gb", + "tlds": [ + "sh" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "si", + "name_en": "Slovenia", + "subtype": "country", + "iso_code": "SI", + "parent": null, + "tlds": [ + "si" + ] + }, + { + "slug": "sj", + "name_en": "Svalbard and Jan Mayen", + "subtype": "country", + "iso_code": "SJ", + "parent": "no", + "tlds": [ + "sj" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "sk", + "name_en": "Slovakia", + "subtype": "country", + "iso_code": "SK", + "parent": null, + "tlds": [ + "sk" + ] + }, + { + "slug": "sl", + "name_en": "Sierra Leone", + "subtype": "country", + "iso_code": "SL", + "parent": null, + "tlds": [ + "sl" + ] + }, + { + "slug": "sm", + "name_en": "San Marino", + "subtype": "country", + "iso_code": "SM", + "parent": null, + "tlds": [ + "sm" + ] + }, + { + "slug": "sn", + "name_en": "Senegal", + "subtype": "country", + "iso_code": "SN", + "parent": null, + "tlds": [ + "sn" + ] + }, + { + "slug": "so", + "name_en": "Somalia", + "subtype": "country", + "iso_code": "SO", + "parent": null, + "tlds": [ + "so" + ] + }, + { + "slug": "sr", + "name_en": "Suriname", + "subtype": "country", + "iso_code": "SR", + "parent": null, + "tlds": [ + "sr" + ] + }, + { + "slug": "ss", + "name_en": "South Sudan", + "subtype": "country", + "iso_code": "SS", + "parent": null, + "tlds": [ + "ss" + ] + }, + { + "slug": "st", + "name_en": "Sao Tome and Principe", + "subtype": "country", + "iso_code": "ST", + "parent": null, + "tlds": [ + "st" + ] + }, + { + "slug": "stockholm", + "name_en": "Stockholm", + "subtype": "city", + "iso_code": null, + "parent": "se", + "info_link": "https://en.wikipedia.org/wiki/Stockholm", + "tlds": [ + "stockholm" + ] + }, + { + "slug": "su", + "name_en": "Soviet Union", + "subtype": "country", + "iso_code": null, + "parent": null, + "tlds": [ + "su" + ], + "iso_designation": "transitionally_reserved" + }, + { + "slug": "sv", + "name_en": "El Salvador", + "subtype": "country", + "iso_code": "SV", + "parent": null, + "tlds": [ + "sv" + ] + }, + { + "slug": "sx", + "name_en": "Sint Maarten (Dutch part)", + "subtype": "country", + "iso_code": "SX", + "parent": "nl", + "tlds": [ + "sx" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "sy", + "name_en": "Syrian Arab Republic", + "subtype": "country", + "iso_code": "SY", + "parent": null, + "tlds": [ + "sy", + "xn--ogbpf8fl" + ] + }, + { + "slug": "sydney", + "name_en": "Sydney", + "subtype": "city", + "iso_code": null, + "parent": "au", + "info_link": "https://en.wikipedia.org/wiki/Sydney", + "tlds": [ + "sydney" + ] + }, + { + "slug": "sz", + "name_en": "Eswatini", + "subtype": "country", + "iso_code": "SZ", + "parent": null, + "tlds": [ + "sz" + ] + }, + { + "slug": "taipei", + "name_en": "Taipei", + "subtype": "city", + "iso_code": null, + "parent": "tw", + "info_link": "https://en.wikipedia.org/wiki/Taipei", + "tlds": [ + "taipei" + ] + }, + { + "slug": "tatarstan", + "name_en": "Tatarstan", + "subtype": "subdivision", + "iso_code": "RU-TA", + "parent": "ru", + "info_link": "https://en.wikipedia.org/wiki/Tatarstan", + "tlds": [ + "tatar" + ] + }, + { + "slug": "tc", + "name_en": "Turks and Caicos Islands", + "subtype": "country", + "iso_code": "TC", + "parent": "gb", + "tlds": [ + "tc" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "td", + "name_en": "Chad", + "subtype": "country", + "iso_code": "TD", + "parent": null, + "tlds": [ + "td" + ] + }, + { + "slug": "tf", + "name_en": "French Southern Territories", + "subtype": "country", + "iso_code": "TF", + "parent": "fr", + "tlds": [ + "tf" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "tg", + "name_en": "Togo", + "subtype": "country", + "iso_code": "TG", + "parent": null, + "tlds": [ + "tg" + ] + }, + { + "slug": "th", + "name_en": "Thailand", + "subtype": "country", + "iso_code": "TH", + "parent": null, + "tlds": [ + "th", + "xn--o3cw4h" + ] + }, + { + "slug": "tj", + "name_en": "Tajikistan", + "subtype": "country", + "iso_code": "TJ", + "parent": null, + "tlds": [ + "tj" + ] + }, + { + "slug": "tk", + "name_en": "Tokelau", + "subtype": "country", + "iso_code": "TK", + "parent": "nz", + "tlds": [ + "tk" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "tl", + "name_en": "Timor-Leste", + "subtype": "country", + "iso_code": "TL", + "parent": null, + "tlds": [ + "tl" + ] + }, + { + "slug": "tm", + "name_en": "Turkmenistan", + "subtype": "country", + "iso_code": "TM", + "parent": null, + "tlds": [ + "tm" + ] + }, + { + "slug": "tn", + "name_en": "Tunisia", + "subtype": "country", + "iso_code": "TN", + "parent": null, + "tlds": [ + "tn", + "xn--pgbs0dh" + ] + }, + { + "slug": "to", + "name_en": "Tonga", + "subtype": "country", + "iso_code": "TO", + "parent": null, + "tlds": [ + "to" + ] + }, + { + "slug": "tokyo", + "name_en": "Tokyo", + "subtype": "city", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Tokyo", + "tlds": [ + "tokyo" + ] + }, + { + "slug": "tr", + "name_en": "Türkiye", + "subtype": "country", + "iso_code": "TR", + "parent": null, + "tlds": [ + "tr" + ] + }, + { + "slug": "tt", + "name_en": "Trinidad and Tobago", + "subtype": "country", + "iso_code": "TT", + "parent": null, + "tlds": [ + "tt" + ] + }, + { + "slug": "tv", + "name_en": "Tuvalu", + "subtype": "country", + "iso_code": "TV", + "parent": null, + "tlds": [ + "tv" + ] + }, + { + "slug": "tw", + "name_en": "Taiwan, Province of China", + "subtype": "country", + "iso_code": "TW", + "parent": null, + "tlds": [ + "tw", + "xn--kprw13d", + "xn--kpry57d" + ] + }, + { + "slug": "tyrol", + "name_en": "Tyrol", + "subtype": "subdivision", + "iso_code": "AT-7", + "parent": "at", + "info_link": "https://en.wikipedia.org/wiki/Tyrol_(state)", + "tlds": [ + "tirol" + ] + }, + { + "slug": "tz", + "name_en": "Tanzania, United Republic of", + "subtype": "country", + "iso_code": "TZ", + "parent": null, + "tlds": [ + "tz" + ] + }, + { + "slug": "ua", + "name_en": "Ukraine", + "subtype": "country", + "iso_code": "UA", + "parent": null, + "tlds": [ + "ua", + "xn--j1amh" + ] + }, + { + "slug": "ug", + "name_en": "Uganda", + "subtype": "country", + "iso_code": "UG", + "parent": null, + "tlds": [ + "ug" + ] + }, + { + "slug": "us", + "name_en": "United States", + "subtype": "country", + "iso_code": "US", + "parent": null, + "tlds": [ + "us" + ] + }, + { + "slug": "uy", + "name_en": "Uruguay", + "subtype": "country", + "iso_code": "UY", + "parent": null, + "tlds": [ + "uy" + ] + }, + { + "slug": "uz", + "name_en": "Uzbekistan", + "subtype": "country", + "iso_code": "UZ", + "parent": null, + "tlds": [ + "uz" + ] + }, + { + "slug": "va", + "name_en": "Holy See (Vatican City State)", + "subtype": "country", + "iso_code": "VA", + "parent": null, + "tlds": [ + "va" + ] + }, + { + "slug": "vc", + "name_en": "Saint Vincent and the Grenadines", + "subtype": "country", + "iso_code": "VC", + "parent": null, + "tlds": [ + "vc" + ] + }, + { + "slug": "ve", + "name_en": "Venezuela, Bolivarian Republic of", + "subtype": "country", + "iso_code": "VE", + "parent": null, + "tlds": [ + "ve" + ] + }, + { + "slug": "vegas", + "name_en": "Las Vegas", + "subtype": "city", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Las_Vegas", + "tlds": [ + "vegas" + ] + }, + { + "slug": "vg", + "name_en": "Virgin Islands, British", + "subtype": "country", + "iso_code": "VG", + "parent": "gb", + "tlds": [ + "vg" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "vi", + "name_en": "Virgin Islands, U.S.", + "subtype": "country", + "iso_code": "VI", + "parent": "us", + "tlds": [ + "vi" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "vn", + "name_en": "Viet Nam", + "subtype": "country", + "iso_code": "VN", + "parent": null, + "tlds": [ + "vn" + ] + }, + { + "slug": "vu", + "name_en": "Vanuatu", + "subtype": "country", + "iso_code": "VU", + "parent": null, + "tlds": [ + "vu" + ] + }, + { + "slug": "wales", + "name_en": "Wales", + "subtype": "subdivision", + "iso_code": "GB-WLS", + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/Wales", + "tlds": [ + "cymru", + "wales" + ] + }, + { + "slug": "wf", + "name_en": "Wallis and Futuna", + "subtype": "country", + "iso_code": "WF", + "parent": "fr", + "tlds": [ + "wf" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "wien", + "name_en": "Vienna", + "subtype": "city", + "iso_code": null, + "parent": "at", + "info_link": "https://en.wikipedia.org/wiki/Vienna", + "tlds": [ + "wien" + ] + }, + { + "slug": "ws", + "name_en": "Samoa", + "subtype": "country", + "iso_code": "WS", + "parent": null, + "tlds": [ + "ws" + ] + }, + { + "slug": "ye", + "name_en": "Yemen", + "subtype": "country", + "iso_code": "YE", + "parent": null, + "tlds": [ + "ye" + ] + }, + { + "slug": "yokohama", + "name_en": "Yokohama", + "subtype": "city", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Yokohama", + "tlds": [ + "yokohama" + ] + }, + { + "slug": "yt", + "name_en": "Mayotte", + "subtype": "country", + "iso_code": "YT", + "parent": "fr", + "tlds": [ + "yt" + ], + "iso_designation": "dependent_territory" + }, + { + "slug": "za", + "name_en": "South Africa", + "subtype": "country", + "iso_code": "ZA", + "parent": null, + "tlds": [ + "za" + ] + }, + { + "slug": "zm", + "name_en": "Zambia", + "subtype": "country", + "iso_code": "ZM", + "parent": null, + "tlds": [ + "zm" + ] + }, + { + "slug": "zuerich", + "name_en": "Zurich", + "subtype": "city", + "iso_code": null, + "parent": "ch", + "info_link": "https://en.wikipedia.org/wiki/Z%C3%BCrich", + "tlds": [ + "zuerich" + ] + }, + { + "slug": "zw", + "name_en": "Zimbabwe", + "subtype": "country", + "iso_code": "ZW", + "parent": null, + "tlds": [ + "zw" + ] + } + ] +} diff --git a/data/generated/tld/aaa.json b/data/generated/tld/aaa.json index 07577776..db2bfa5b 100644 --- a/data/generated/tld/aaa.json +++ b/data/generated/tld/aaa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.aaa.com", + "whois_server": "whois.nic.aaa", + "rdap_server": "https://rdap.nic.aaa/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2024-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aaa", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.aaa.com", - "whois_server": "whois.nic.aaa", - "rdap_server": "https://rdap.nic.aaa/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2024-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/aarp.json b/data/generated/tld/aarp.json index d329b739..ed0dee39 100644 --- a/data/generated/tld/aarp.json +++ b/data/generated/tld/aarp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.aarp", + "rdap_server": "https://rdap.nic.aarp", + "tld_created": "2015-10-22", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aarp", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.aarp", - "rdap_server": "https://rdap.nic.aarp", - "tld_created": "2015-10-22", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/abb.json b/data/generated/tld/abb.json index d7ecc663..2937b62a 100644 --- a/data/generated/tld/abb.json +++ b/data/generated/tld/abb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://abb.com", + "whois_server": "whois.nic.abb", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.abb", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://abb.com", - "whois_server": "whois.nic.abb", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/abbott.json b/data/generated/tld/abbott.json index 5ca42abf..18e91730 100644 --- a/data/generated/tld/abbott.json +++ b/data/generated/tld/abbott.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.abbott.com", + "whois_server": "whois.nic.abbott", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2026-01-26" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.abbott", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.abbott.com", - "whois_server": "whois.nic.abbott", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2026-01-26" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/abbvie.json b/data/generated/tld/abbvie.json index 9010e46e..3c3954da 100644 --- a/data/generated/tld/abbvie.json +++ b/data/generated/tld/abbvie.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.abbvie.com", + "rdap_server": "https://rdap.nominet.uk/abbvie/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.abbvie", "ipv4": [ { "ip": "213.248.219.41", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.41", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.abbvie.com", - "rdap_server": "https://rdap.nominet.uk/abbvie/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/abc.json b/data/generated/tld/abc.json index 66fcc1d0..82773b1d 100644 --- a/data/generated/tld/abc.json +++ b/data/generated/tld/abc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://abc.com", + "whois_server": "whois.nic.abc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.abc", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://abc.com", - "whois_server": "whois.nic.abc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/able.json b/data/generated/tld/able.json index 8e2e09ae..991afefb 100644 --- a/data/generated/tld/able.json +++ b/data/generated/tld/able.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.able.co.jp", + "rdap_server": "https://rdap.nic.able/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.able", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,27 +164,6 @@ } ] } - ], - "registry_url": "http://www.able.co.jp", - "rdap_server": "https://rdap.nic.able/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/abogado.json b/data/generated/tld/abogado.json index 4f56ff8a..0fa3359e 100644 --- a/data/generated/tld/abogado.json +++ b/data/generated/tld/abogado.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.abogado/", + "whois_server": "whois.nic.abogado", + "rdap_server": "https://rdap.nic.abogado/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.abogado", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.abogado/", - "whois_server": "whois.nic.abogado", - "rdap_server": "https://rdap.nic.abogado/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/abudhabi.json b/data/generated/tld/abudhabi.json index ed39fdf6..8b216de5 100644 --- a/data/generated/tld/abudhabi.json +++ b/data/generated/tld/abudhabi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.abudhabi", + "rdap_server": "https://rdap.nic.abudhabi", + "tld_created": "2016-02-26", + "tld_updated": [ + "2019-11-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -105,26 +125,6 @@ } ] } - ], - "whois_server": "whois.nic.abudhabi", - "rdap_server": "https://rdap.nic.abudhabi", - "tld_created": "2016-02-26", - "tld_updated": [ - "2019-11-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/ac.json b/data/generated/tld/ac.json index a539cef6..a0ba1838 100644 --- a/data/generated/tld/ac.json +++ b/data/generated/tld/ac.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "Internet Computer Bureau Limited" } }, + "registry_url": "http://www.nic.ac/", + "whois_server": "whois.nic.ac", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-12-19", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Ascension Island", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.ac", @@ -94,30 +118,6 @@ } ] } - ], - "registry_url": "http://www.nic.ac/", - "whois_server": "whois.nic.ac", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-12-19", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Ascension Island", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/academy.json b/data/generated/tld/academy.json index fcc090b4..f10a6c4e 100644 --- a/data/generated/tld/academy.json +++ b/data/generated/tld/academy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.academy", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/accenture.json b/data/generated/tld/accenture.json index e4794df2..ea698a43 100644 --- a/data/generated/tld/accenture.json +++ b/data/generated/tld/accenture.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.accenture.com", + "whois_server": "whois.nic.accenture", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.accenture", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.accenture.com", - "whois_server": "whois.nic.accenture", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/accountant.json b/data/generated/tld/accountant.json index c5f4ee88..bcbf2127 100644 --- a/data/generated/tld/accountant.json +++ b/data/generated/tld/accountant.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.accountant", + "whois_server": "whois.nic.accountant", + "rdap_server": "https://rdap.nic.accountant/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.accountant", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.accountant", - "whois_server": "whois.nic.accountant", - "rdap_server": "https://rdap.nic.accountant/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/accountants.json b/data/generated/tld/accountants.json index 735ae350..be3f5dd1 100644 --- a/data/generated/tld/accountants.json +++ b/data/generated/tld/accountants.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.accountants", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/aco.json b/data/generated/tld/aco.json index 2832c402..eae6a183 100644 --- a/data/generated/tld/aco.json +++ b/data/generated/tld/aco.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.aco.com", + "whois_server": "whois.nic.aco", + "rdap_server": "https://rdap.nic.aco/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2022-06-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.aco", @@ -86,28 +108,6 @@ } ] } - ], - "registry_url": "http://www.aco.com", - "whois_server": "whois.nic.aco", - "rdap_server": "https://rdap.nic.aco/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2022-06-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/actor.json b/data/generated/tld/actor.json index eb10623f..fd1a980c 100644 --- a/data/generated/tld/actor.json +++ b/data/generated/tld/actor.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.actor", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ad.json b/data/generated/tld/ad.json index 42817b7b..3971afe9 100644 --- a/data/generated/tld/ad.json +++ b/data/generated/tld/ad.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Andorra Telecom" } }, + "registry_url": "https://www.domini.ad", + "whois_server": "whois.nic.ad", + "rdap_server": "https://rdap.nic.ad", + "tld_created": "1996-01-09", + "tld_updated": [ + "2025-11-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Andorra", + "as_org_aliases": [ + "AFNIC", + "Knipp Medien" + ], + "as_org_slugs": [ + "afnic", + "knipp-medien" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ad.ns.nic.es", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "https://www.domini.ad", - "whois_server": "whois.nic.ad", - "rdap_server": "https://rdap.nic.ad", - "tld_created": "1996-01-09", - "tld_updated": [ - "2025-11-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Andorra", - "as_org_aliases": [ - "AFNIC", - "Knipp Medien" - ], - "as_org_slugs": [ - "afnic", - "knipp-medien" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ads.json b/data/generated/tld/ads.json index 3e0567ff..422cad1a 100644 --- a/data/generated/tld/ads.json +++ b/data/generated/tld/ads.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/adult.json b/data/generated/tld/adult.json index a6da7fac..1fcbf771 100644 --- a/data/generated/tld/adult.json +++ b/data/generated/tld/adult.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.adult", + "whois_server": "whois.nic.adult", + "rdap_server": "https://rdap.nic.adult/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.adult", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.adult", - "whois_server": "whois.nic.adult", - "rdap_server": "https://rdap.nic.adult/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ae.json b/data/generated/tld/ae.json index abb0c70c..a2253e11 100644 --- a/data/generated/tld/ae.json +++ b/data/generated/tld/ae.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": ".ae Domain Administration (.aeDA)" } }, + "registry_url": "http://aeda.ae/", + "whois_server": "whois.aeda.net.ae", + "tld_created": "1992-12-01", + "tld_updated": [ + "2021-10-19" + ], + "annotations": { + "country_name_iso": "United Arab Emirates", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.aedns.ae", @@ -95,22 +111,6 @@ ] } ], - "registry_url": "http://aeda.ae/", - "whois_server": "whois.aeda.net.ae", - "tld_created": "1992-12-01", - "tld_updated": [ - "2021-10-19" - ], - "annotations": { - "country_name_iso": "United Arab Emirates", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbaam7a8h" ] diff --git a/data/generated/tld/aeg.json b/data/generated/tld/aeg.json index 856876db..aaf552b2 100644 --- a/data/generated/tld/aeg.json +++ b/data/generated/tld/aeg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.aeg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.aeg", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.aeg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/aero.json b/data/generated/tld/aero.json index 6b124772..76687bfe 100644 --- a/data/generated/tld/aero.json +++ b/data/generated/tld/aero.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.information.aero", + "whois_server": "whois.aero", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2001-12-21", + "tld_updated": [ + "2026-05-21" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.aero", @@ -124,29 +147,6 @@ } ] } - ], - "registry_url": "http://www.information.aero", - "whois_server": "whois.aero", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2001-12-21", - "tld_updated": [ - "2026-05-21" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/aetna.json b/data/generated/tld/aetna.json index 74595188..bc306695 100644 --- a/data/generated/tld/aetna.json +++ b/data/generated/tld/aetna.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.aetna.com", + "rdap_server": "https://rdap.nic.aetna/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aetna", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.aetna.com", - "rdap_server": "https://rdap.nic.aetna/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/af.json b/data/generated/tld/af.json index 8c33ef41..47be96e9 100644 --- a/data/generated/tld/af.json +++ b/data/generated/tld/af.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Ministry of Communications and IT" } }, + "registry_url": "http://www.nic.af", + "whois_server": "whois.nic.af", + "tld_created": "1997-10-16", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Afghanistan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.af", @@ -68,22 +84,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.af", - "whois_server": "whois.nic.af", - "tld_created": "1997-10-16", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Afghanistan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/afl.json b/data/generated/tld/afl.json index e88c6778..f0d47dbb 100644 --- a/data/generated/tld/afl.json +++ b/data/generated/tld/afl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.afl", + "whois_server": "whois.nic.afl", + "rdap_server": "https://rdap.nic.afl/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.afl", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.afl", - "whois_server": "whois.nic.afl", - "rdap_server": "https://rdap.nic.afl/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/africa.json b/data/generated/tld/africa.json index bb56a506..8cc8beb8 100644 --- a/data/generated/tld/africa.json +++ b/data/generated/tld/africa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.africa", + "whois_server": "whois.nic.africa", + "rdap_server": "https://rdap.nic.africa/rdap/", + "tld_created": "2017-02-11", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "http://nic.africa", - "whois_server": "whois.nic.africa", - "rdap_server": "https://rdap.nic.africa/rdap/", - "tld_created": "2017-02-11", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "supranational" - } + ] } } diff --git a/data/generated/tld/ag.json b/data/generated/tld/ag.json index 39b894d5..09e7d913 100644 --- a/data/generated/tld/ag.json +++ b/data/generated/tld/ag.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Afilias Limited" } }, + "registry_url": "http://www.nic.ag", + "whois_server": "whois.nic.ag", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2021-02-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Antigua and Barbuda", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "http://www.nic.ag", - "whois_server": "whois.nic.ag", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2021-02-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Antigua and Barbuda", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/agakhan.json b/data/generated/tld/agakhan.json index 31a82110..aca8126d 100644 --- a/data/generated/tld/agakhan.json +++ b/data/generated/tld/agakhan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.agakhan", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.agakhan", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.agakhan", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/agency.json b/data/generated/tld/agency.json index 3d374e35..b3e15879 100644 --- a/data/generated/tld/agency.json +++ b/data/generated/tld/agency.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.agency", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ai.json b/data/generated/tld/ai.json index 70f9de59..6c6f12a9 100644 --- a/data/generated/tld/ai.json +++ b/data/generated/tld/ai.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Government of Anguilla" } }, + "registry_url": "https://nic.ai", + "whois_server": "whois.nic.ai", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-02-16", + "tld_updated": [ + "2025-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Anguilla", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "v0n0.nic.ai", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "https://nic.ai", - "whois_server": "whois.nic.ai", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-02-16", - "tld_updated": [ - "2025-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Anguilla", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/aig.json b/data/generated/tld/aig.json index 67bc9760..e56f8226 100644 --- a/data/generated/tld/aig.json +++ b/data/generated/tld/aig.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.aig.com", + "rdap_server": "https://rdap.nic.aig/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aig", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.aig.com", - "rdap_server": "https://rdap.nic.aig/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/airbus.json b/data/generated/tld/airbus.json index 16745d4d..99f7f994 100644 --- a/data/generated/tld/airbus.json +++ b/data/generated/tld/airbus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.airbus", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-26", + "tld_updated": [ + "2024-11-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.airbus", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.airbus", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-26", - "tld_updated": [ - "2024-11-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/airforce.json b/data/generated/tld/airforce.json index 43fff470..88e27281 100644 --- a/data/generated/tld/airforce.json +++ b/data/generated/tld/airforce.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.airforce", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/airtel.json b/data/generated/tld/airtel.json index 970f64e3..e9057f05 100644 --- a/data/generated/tld/airtel.json +++ b/data/generated/tld/airtel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.airtel.in", + "whois_server": "whois.nic.airtel", + "rdap_server": "https://rdap.nic.airtel", + "tld_created": "2015-06-18", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.airtel", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.airtel.in", - "whois_server": "whois.nic.airtel", - "rdap_server": "https://rdap.nic.airtel", - "tld_created": "2015-06-18", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/akdn.json b/data/generated/tld/akdn.json index 61efe2b3..54370485 100644 --- a/data/generated/tld/akdn.json +++ b/data/generated/tld/akdn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.akdn", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.akdn", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.akdn", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/al.json b/data/generated/tld/al.json index c7e779ce..f0962df5 100644 --- a/data/generated/tld/al.json +++ b/data/generated/tld/al.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Electronic and Postal Communications Authority - AKEP" } }, + "registry_url": "https://akep.al/e-aplikime-domain/", + "tld_created": "1992-04-21", + "tld_updated": [ + "2023-10-12" + ], + "annotations": { + "country_name_iso": "Albania", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "munnari.oz.au", @@ -93,21 +108,6 @@ } ] } - ], - "registry_url": "https://akep.al/e-aplikime-domain/", - "tld_created": "1992-04-21", - "tld_updated": [ - "2023-10-12" - ], - "annotations": { - "country_name_iso": "Albania", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/alibaba.json b/data/generated/tld/alibaba.json index 903e7d0f..18432001 100644 --- a/data/generated/tld/alibaba.json +++ b/data/generated/tld/alibaba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,22 +28,37 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.alibaba", + "rdap_server": "https://rdap.aliregistry.cn/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2026-05-20" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "ns1.nic.alibaba", "ipv4": [ { "ip": "203.107.2.1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:101::1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -53,16 +68,16 @@ "ipv4": [ { "ip": "203.107.2.2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:101::2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -72,16 +87,16 @@ "ipv4": [ { "ip": "203.107.3.1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:102::1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -91,35 +106,20 @@ "ipv4": [ { "ip": "203.107.3.2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:102::2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.alibaba", - "rdap_server": "https://rdap.aliregistry.cn/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2026-05-20" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/alipay.json b/data/generated/tld/alipay.json index 0f2aa213..8d7994ce 100644 --- a/data/generated/tld/alipay.json +++ b/data/generated/tld/alipay.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.alipay", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.alipay", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.alipay", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/allfinanz.json b/data/generated/tld/allfinanz.json index 04909650..ff3f56cf 100644 --- a/data/generated/tld/allfinanz.json +++ b/data/generated/tld/allfinanz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.allfinanz-registry.de", + "whois_server": "whois.nic.allfinanz", + "rdap_server": "https://rdap.centralnic.com/allfinanz", + "tld_created": "2014-09-25", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.allfinanz", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.allfinanz-registry.de", - "whois_server": "whois.nic.allfinanz", - "rdap_server": "https://rdap.centralnic.com/allfinanz", - "tld_created": "2014-09-25", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/allstate.json b/data/generated/tld/allstate.json index c076ee01..0bd742df 100644 --- a/data/generated/tld/allstate.json +++ b/data/generated/tld/allstate.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.allstate.com/", + "whois_server": "whois.nic.allstate", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.allstate", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.allstate.com/", - "whois_server": "whois.nic.allstate", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ally.json b/data/generated/tld/ally.json index 1cff099c..bef7765e 100644 --- a/data/generated/tld/ally.json +++ b/data/generated/tld/ally.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ally.com", + "whois_server": "whois.nic.ally", + "rdap_server": "https://rdap.nic.ally", + "tld_created": "2015-10-22", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ally", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.ally.com", - "whois_server": "whois.nic.ally", - "rdap_server": "https://rdap.nic.ally", - "tld_created": "2015-10-22", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/alsace.json b/data/generated/tld/alsace.json index 31544e93..e634e85a 100644 --- a/data/generated/tld/alsace.json +++ b/data/generated/tld/alsace.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://www.mondomaine.alsace", + "whois_server": "whois.nic.alsace", + "rdap_server": "https://rdap.nic.alsace", + "tld_created": "2014-09-18", + "tld_updated": [ + "2024-09-16" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "https://www.mondomaine.alsace", - "whois_server": "whois.nic.alsace", - "rdap_server": "https://rdap.nic.alsace", - "tld_created": "2014-09-18", - "tld_updated": [ - "2024-09-16" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/alstom.json b/data/generated/tld/alstom.json index 17bbbb84..a0462a9c 100644 --- a/data/generated/tld/alstom.json +++ b/data/generated/tld/alstom.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.alstom.com", + "whois_server": "whois.nic.alstom", + "rdap_server": "https://rdap.nic.alstom/", + "tld_created": "2015-12-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://www.alstom.com", - "whois_server": "whois.nic.alstom", - "rdap_server": "https://rdap.nic.alstom/", - "tld_created": "2015-12-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/am.json b/data/generated/tld/am.json index 036dccaf..666e72a1 100644 --- a/data/generated/tld/am.json +++ b/data/generated/tld/am.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "\"Internet Society\" Non-governmental Organization" } }, + "registry_url": "https://www.amnic.net/", + "whois_server": "whois.amnic.net", + "tld_created": "1994-08-26", + "tld_updated": [ + "2024-11-27" + ], + "annotations": { + "country_name_iso": "Armenia", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -95,24 +113,6 @@ ] } ], - "registry_url": "https://www.amnic.net/", - "whois_server": "whois.amnic.net", - "tld_created": "1994-08-26", - "tld_updated": [ - "2024-11-27" - ], - "annotations": { - "country_name_iso": "Armenia", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--y9a3aq" ] diff --git a/data/generated/tld/amazon.json b/data/generated/tld/amazon.json index 881e9b4b..1a8aed21 100644 --- a/data/generated/tld/amazon.json +++ b/data/generated/tld/amazon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,42 @@ "date_removed": null } }, + "registry_url": "http://www.nic.amazon", + "rdap_server": "https://rdap.nominet.uk/amazon/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.amazon", "ipv4": [ { "ip": "213.248.218.90", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +81,8 @@ "ipv4": [ { "ip": "103.49.82.90", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,34 +209,6 @@ } ] } - ], - "registry_url": "http://www.nic.amazon", - "rdap_server": "https://rdap.nominet.uk/amazon/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/americanexpress.json b/data/generated/tld/americanexpress.json index 8efe78ab..8b557aad 100644 --- a/data/generated/tld/americanexpress.json +++ b/data/generated/tld/americanexpress.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "rdap_server": "https://rdap.nic.americanexpress/", + "tld_created": "2016-07-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.americanexpress", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "rdap_server": "https://rdap.nic.americanexpress/", - "tld_created": "2016-07-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/americanfamily.json b/data/generated/tld/americanfamily.json index 3298790f..b34bb851 100644 --- a/data/generated/tld/americanfamily.json +++ b/data/generated/tld/americanfamily.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.americanfamily", + "rdap_server": "https://rdap.nic.americanfamily", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.americanfamily", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.americanfamily", - "rdap_server": "https://rdap.nic.americanfamily", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/amex.json b/data/generated/tld/amex.json index 19ee2c2f..eecbbda7 100644 --- a/data/generated/tld/amex.json +++ b/data/generated/tld/amex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "rdap_server": "https://rdap.nic.amex/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amex", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "rdap_server": "https://rdap.nic.amex/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/amfam.json b/data/generated/tld/amfam.json index 8f9f46dc..468441a9 100644 --- a/data/generated/tld/amfam.json +++ b/data/generated/tld/amfam.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.amfam", + "rdap_server": "https://rdap.nic.amfam", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amfam", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.amfam", - "rdap_server": "https://rdap.nic.amfam", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/amica.json b/data/generated/tld/amica.json index a8a1c715..b4a52b39 100644 --- a/data/generated/tld/amica.json +++ b/data/generated/tld/amica.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.amica.com", + "rdap_server": "https://rdap.nic.amica/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amica", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.amica.com", - "rdap_server": "https://rdap.nic.amica/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/amsterdam.json b/data/generated/tld/amsterdam.json index 4d450289..12cbc396 100644 --- a/data/generated/tld/amsterdam.json +++ b/data/generated/tld/amsterdam.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.nic.amsterdam", + "whois_server": "whois.nic.amsterdam", + "rdap_server": "https://rdap.nic.amsterdam", + "tld_created": "2014-11-20", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "ns1.dns.amsterdam", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "http://www.nic.amsterdam", - "whois_server": "whois.nic.amsterdam", - "rdap_server": "https://rdap.nic.amsterdam", - "tld_created": "2014-11-20", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/analytics.json b/data/generated/tld/analytics.json index 534a4c70..d5ae8040 100644 --- a/data/generated/tld/analytics.json +++ b/data/generated/tld/analytics.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.sas.com", + "rdap_server": "https://rdap.nic.analytics/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.analytics", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,27 +164,6 @@ } ] } - ], - "registry_url": "http://www.sas.com", - "rdap_server": "https://rdap.nic.analytics/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/android.json b/data/generated/tld/android.json index c70d81e0..658b9d4a 100644 --- a/data/generated/tld/android.json +++ b/data/generated/tld/android.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,34 +152,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/anquan.json b/data/generated/tld/anquan.json index ee9649ca..43b69fb1 100644 --- a/data/generated/tld/anquan.json +++ b/data/generated/tld/anquan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -91,26 +111,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/anz.json b/data/generated/tld/anz.json index 5f948680..1aa4707c 100644 --- a/data/generated/tld/anz.json +++ b/data/generated/tld/anz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.anz.com/", + "whois_server": "whois.nic.anz", + "rdap_server": "https://rdap.nic.anz/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.anz", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.anz.com/", - "whois_server": "whois.nic.anz", - "rdap_server": "https://rdap.nic.anz/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ao.json b/data/generated/tld/ao.json index 678b6dd7..913c068a 100644 --- a/data/generated/tld/ao.json +++ b/data/generated/tld/ao.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "INSTITUTO NACIONAL DE FOMENTO DA SOCIEDADE DA INFORMACAO-INFOSI" } }, + "registry_url": "http://www.dns.ao/", + "tld_created": "1995-11-15", + "tld_updated": [ + "2024-09-09" + ], + "annotations": { + "country_name_iso": "Angola", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.ao", @@ -94,23 +111,6 @@ } ] } - ], - "registry_url": "http://www.dns.ao/", - "tld_created": "1995-11-15", - "tld_updated": [ - "2024-09-09" - ], - "annotations": { - "country_name_iso": "Angola", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/aol.json b/data/generated/tld/aol.json index 7d3bcf3f..ceacf9e2 100644 --- a/data/generated/tld/aol.json +++ b/data/generated/tld/aol.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-28T02:11:16Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.aol.com", + "whois_server": "whois.nic.aol", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2026-05-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.aol", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.aol.com", - "whois_server": "whois.nic.aol", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2026-05-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/apartments.json b/data/generated/tld/apartments.json index 9e8bd200..c1d6058e 100644 --- a/data/generated/tld/apartments.json +++ b/data/generated/tld/apartments.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.apartments", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/app.json b/data/generated/tld/app.json index e3dc46c1..5719f488 100644 --- a/data/generated/tld/app.json +++ b/data/generated/tld/app.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/apple.json b/data/generated/tld/apple.json index 872a0082..0eb9c33d 100644 --- a/data/generated/tld/apple.json +++ b/data/generated/tld/apple.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "https://www.nic.apple/", + "rdap_server": "https://rdap.nic.apple/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2025-11-10" + ], + "annotations": { + "iana_sponsor_alias": "Apple", + "iana_sponsor_slug": "apple", + "iana_tech_alias": "Packet Clearing House", + "iana_tech_slug": "packet-clearing-house", + "icann_registry_operator_alias": "Apple", + "icann_registry_operator_slug": "apple", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "apple-ns.pch.net", @@ -86,32 +112,6 @@ } ] } - ], - "registry_url": "https://www.nic.apple/", - "rdap_server": "https://rdap.nic.apple/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2025-11-10" - ], - "annotations": { - "iana_sponsor_alias": "Apple", - "iana_sponsor_slug": "apple", - "iana_tech_alias": "Packet Clearing House", - "iana_tech_slug": "packet-clearing-house", - "icann_registry_operator_alias": "Apple", - "icann_registry_operator_slug": "apple", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/aq.json b/data/generated/tld/aq.json index 3e0d14f0..d9561d0b 100644 --- a/data/generated/tld/aq.json +++ b/data/generated/tld/aq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "InternetNZ" } }, + "tld_created": "1992-02-26", + "tld_updated": [ + "2025-01-21" + ], + "annotations": { + "country_name_iso": "Antarctica", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -75,20 +89,6 @@ } ] } - ], - "tld_created": "1992-02-26", - "tld_updated": [ - "2025-01-21" - ], - "annotations": { - "country_name_iso": "Antarctica", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/aquarelle.json b/data/generated/tld/aquarelle.json index 42880991..dad7c496 100644 --- a/data/generated/tld/aquarelle.json +++ b/data/generated/tld/aquarelle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.aquarelle.com", + "whois_server": "whois.nic.aquarelle", + "rdap_server": "https://rdap.nic.aquarelle", + "tld_created": "2014-11-06", + "tld_updated": [ + "2024-11-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.aquarelle", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.aquarelle.com", - "whois_server": "whois.nic.aquarelle", - "rdap_server": "https://rdap.nic.aquarelle", - "tld_created": "2014-11-06", - "tld_updated": [ - "2024-11-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/ar.json b/data/generated/tld/ar.json index 1d48a8d3..422eb88f 100644 --- a/data/generated/tld/ar.json +++ b/data/generated/tld/ar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Dirección Nacional del Registro de Nombres de Dominio de Internet - NIC Argentina" } }, + "registry_url": "https://nic.ar", + "whois_server": "whois.nic.ar", + "rdap_server": "https://rdap.nic.ar", + "tld_created": "1987-09-23", + "tld_updated": [ + "2025-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Argentina", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -113,26 +133,6 @@ } ] } - ], - "registry_url": "https://nic.ar", - "whois_server": "whois.nic.ar", - "rdap_server": "https://rdap.nic.ar", - "tld_created": "1987-09-23", - "tld_updated": [ - "2025-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Argentina", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/arab.json b/data/generated/tld/arab.json index ad4fb1ad..325279ee 100644 --- a/data/generated/tld/arab.json +++ b/data/generated/tld/arab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.arab", + "rdap_server": "https://rdap.nic.arab/", + "tld_created": "2017-05-11", + "tld_updated": [ + "2020-05-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "arab" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -105,26 +125,6 @@ } ] } - ], - "whois_server": "whois.nic.arab", - "rdap_server": "https://rdap.nic.arab/", - "tld_created": "2017-05-11", - "tld_updated": [ - "2020-05-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "cultural_affiliation": "arab" - } + ] } } diff --git a/data/generated/tld/aramco.json b/data/generated/tld/aramco.json index 6a30bb58..878cc4f9 100644 --- a/data/generated/tld/aramco.json +++ b/data/generated/tld/aramco.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.aramco.com", + "rdap_server": "https://rdap.nic.aramco/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aramco", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.aramco.com", - "rdap_server": "https://rdap.nic.aramco/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/archi.json b/data/generated/tld/archi.json index 0ed21ef9..addae19a 100644 --- a/data/generated/tld/archi.json +++ b/data/generated/tld/archi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.archi", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/army.json b/data/generated/tld/army.json index eaf0ab61..fcb7c45b 100644 --- a/data/generated/tld/army.json +++ b/data/generated/tld/army.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.army", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/arpa.json b/data/generated/tld/arpa.json index eb3f7deb..ab5e2d47 100644 --- a/data/generated/tld/arpa.json +++ b/data/generated/tld/arpa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "Internet Corporation for Assigned Names and Numbers (ICANN)" } }, + "registry_url": "https://www.iana.org/domains/arpa", + "whois_server": "whois.iana.org", + "tld_created": "1985-01-01", + "tld_updated": [ + "2023-11-27" + ], + "annotations": { + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.ns.arpa", @@ -246,20 +260,6 @@ } ] } - ], - "registry_url": "https://www.iana.org/domains/arpa", - "whois_server": "whois.iana.org", - "tld_created": "1985-01-01", - "tld_updated": [ - "2023-11-27" - ], - "annotations": { - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/art.json b/data/generated/tld/art.json index 73a8a465..c5f27bd6 100644 --- a/data/generated/tld/art.json +++ b/data/generated/tld/art.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://art.art/", + "whois_server": "whois.nic.art", + "rdap_server": "https://rdap.centralnic.com/art", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-04-30" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.art", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://art.art/", - "whois_server": "whois.nic.art", - "rdap_server": "https://rdap.centralnic.com/art", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-04-30" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/arte.json b/data/generated/tld/arte.json index cef19d9e..74554fc7 100644 --- a/data/generated/tld/arte.json +++ b/data/generated/tld/arte.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.arte", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.arte", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.arte", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/as.json b/data/generated/tld/as.json index 9bb485ad..e9606d96 100644 --- a/data/generated/tld/as.json +++ b/data/generated/tld/as.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,14 +17,32 @@ "tech": "GDNS, LLC" } }, + "registry_url": "http://www.nic.as", + "whois_server": "whois.nic.as", + "rdap_server": "https://rdap.nic.as", + "tld_created": "1997-06-12", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "American Samoa", + "as_org_aliases": [ + "Nominet" + ], + "as_org_slugs": [ + "nominet" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.asnic.biz", "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -42,8 +60,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -113,24 +131,6 @@ } ] } - ], - "registry_url": "http://www.nic.as", - "whois_server": "whois.nic.as", - "rdap_server": "https://rdap.nic.as", - "tld_created": "1997-06-12", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "American Samoa", - "as_org_aliases": [ - "Nominet" - ], - "as_org_slugs": [ - "nominet" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/asda.json b/data/generated/tld/asda.json index 54afbec8..36ef4d75 100644 --- a/data/generated/tld/asda.json +++ b/data/generated/tld/asda.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.asda.com", + "whois_server": "whois.nic.asda", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.asda", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.asda.com", - "whois_server": "whois.nic.asda", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/asia.json b/data/generated/tld/asia.json index c8030a70..1dbec283 100644 --- a/data/generated/tld/asia.json +++ b/data/generated/tld/asia.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.registry.asia", + "whois_server": "whois.nic.asia", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2007-05-02", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "a0.asia.afilias-nst.info", @@ -143,30 +167,6 @@ } ] } - ], - "registry_url": "http://www.registry.asia", - "whois_server": "whois.nic.asia", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2007-05-02", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "supranational" - } + ] } } diff --git a/data/generated/tld/associates.json b/data/generated/tld/associates.json index 62c8d7e9..d1776dc7 100644 --- a/data/generated/tld/associates.json +++ b/data/generated/tld/associates.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.associates", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/at.json b/data/generated/tld/at.json index d7dc2615..4da686e3 100644 --- a/data/generated/tld/at.json +++ b/data/generated/tld/at.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "nic.at GmbH c/o Vienna University Computer Center" } }, + "registry_url": "http://www.nic.at/", + "whois_server": "whois.nic.at", + "tld_created": "1988-01-20", + "tld_updated": [ + "2025-05-14" + ], + "annotations": { + "country_name_iso": "Austria", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.ns.at", @@ -151,22 +167,6 @@ } ] } - ], - "registry_url": "http://www.nic.at/", - "whois_server": "whois.nic.at", - "tld_created": "1988-01-20", - "tld_updated": [ - "2025-05-14" - ], - "annotations": { - "country_name_iso": "Austria", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/athleta.json b/data/generated/tld/athleta.json index 8fcc30d6..60396a12 100644 --- a/data/generated/tld/athleta.json +++ b/data/generated/tld/athleta.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.gap.com", + "rdap_server": "https://rdap.nic.athleta/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.athleta", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.gap.com", - "rdap_server": "https://rdap.nic.athleta/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/attorney.json b/data/generated/tld/attorney.json index ee3dd017..0c91911c 100644 --- a/data/generated/tld/attorney.json +++ b/data/generated/tld/attorney.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.attorney", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/au.json b/data/generated/tld/au.json index 73364bfd..16e57c0d 100644 --- a/data/generated/tld/au.json +++ b/data/generated/tld/au.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": ".au Domain Administration (auDA)" } }, + "registry_url": "https://www.auda.org.au/domains/au-domains/", + "whois_server": "whois.auda.org.au", + "rdap_server": "https://rdap.cctld.au/rdap/", + "tld_created": "1986-03-05", + "tld_updated": [ + "2026-02-09" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Australia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.au", @@ -113,24 +131,6 @@ } ] } - ], - "registry_url": "https://www.auda.org.au/domains/au-domains/", - "whois_server": "whois.auda.org.au", - "rdap_server": "https://rdap.cctld.au/rdap/", - "tld_created": "1986-03-05", - "tld_updated": [ - "2026-02-09" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Australia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/auction.json b/data/generated/tld/auction.json index a3064b70..30093a18 100644 --- a/data/generated/tld/auction.json +++ b/data/generated/tld/auction.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.auction", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/audi.json b/data/generated/tld/audi.json index 7adb30fd..f0742485 100644 --- a/data/generated/tld/audi.json +++ b/data/generated/tld/audi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.audi.com", + "whois_server": "whois.nic.audi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Audi", + "iana_sponsor_slug": "audi", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Audi", + "icann_registry_operator_slug": "audi", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.audi", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.audi.com", - "whois_server": "whois.nic.audi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Audi", - "iana_sponsor_slug": "audi", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Audi", - "icann_registry_operator_slug": "audi", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/audible.json b/data/generated/tld/audible.json index b0a19578..01d96551 100644 --- a/data/generated/tld/audible.json +++ b/data/generated/tld/audible.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.audible", + "rdap_server": "https://rdap.nominet.uk/audible/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.audible", "ipv4": [ { "ip": "213.248.218.56", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.56", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.audible", - "rdap_server": "https://rdap.nominet.uk/audible/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/audio.json b/data/generated/tld/audio.json index e615a48f..479a06e9 100644 --- a/data/generated/tld/audio.json +++ b/data/generated/tld/audio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.audio", + "whois_server": "whois.nic.audio", + "rdap_server": "https://rdap.centralnic.com/audio/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.audio", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.audio", - "whois_server": "whois.nic.audio", - "rdap_server": "https://rdap.centralnic.com/audio/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/auspost.json b/data/generated/tld/auspost.json index b53c71b7..a93c932a 100644 --- a/data/generated/tld/auspost.json +++ b/data/generated/tld/auspost.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://auspost.com.au", + "whois_server": "whois.nic.auspost", + "rdap_server": "https://rdap.nic.auspost/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.auspost", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://auspost.com.au", - "whois_server": "whois.nic.auspost", - "rdap_server": "https://rdap.nic.auspost/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/author.json b/data/generated/tld/author.json index afe31414..735706c3 100644 --- a/data/generated/tld/author.json +++ b/data/generated/tld/author.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.author", + "rdap_server": "https://rdap.nominet.uk/author/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.author", "ipv4": [ { "ip": "213.248.218.60", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.60", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.author", - "rdap_server": "https://rdap.nominet.uk/author/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/auto.json b/data/generated/tld/auto.json index 7fbcf02f..3dabec26 100644 --- a/data/generated/tld/auto.json +++ b/data/generated/tld/auto.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.nic.auto", + "whois_server": "whois.nic.auto", + "rdap_server": "https://rdap.centralnic.com/auto/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.auto", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.nic.auto", - "whois_server": "whois.nic.auto", - "rdap_server": "https://rdap.centralnic.com/auto/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/autos.json b/data/generated/tld/autos.json index 3c126f47..1641cc79 100644 --- a/data/generated/tld/autos.json +++ b/data/generated/tld/autos.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.autos", + "whois_server": "whois.nic.autos", + "rdap_server": "https://rdap.centralnic.com/autos/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.autos", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://nic.autos", - "whois_server": "whois.nic.autos", - "rdap_server": "https://rdap.centralnic.com/autos/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/aw.json b/data/generated/tld/aw.json index 1877be21..38c059ba 100644 --- a/data/generated/tld/aw.json +++ b/data/generated/tld/aw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "SETAR" } }, + "whois_server": "whois.nic.aw", + "tld_created": "1996-02-20", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "country_name_iso": "Aruba", + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "aw01.setarnet.aw", @@ -99,25 +118,6 @@ } ] } - ], - "whois_server": "whois.nic.aw", - "tld_created": "1996-02-20", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "country_name_iso": "Aruba", - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/aws.json b/data/generated/tld/aws.json index 12c0f7d0..d8127bab 100644 --- a/data/generated/tld/aws.json +++ b/data/generated/tld/aws.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.aws", + "rdap_server": "https://rdap.nominet.uk/aws/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.aws", "ipv4": [ { "ip": "213.248.218.53", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.53", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.aws", - "rdap_server": "https://rdap.nominet.uk/aws/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ax.json b/data/generated/tld/ax.json index e5bd4c54..86623f44 100644 --- a/data/generated/tld/ax.json +++ b/data/generated/tld/ax.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Ålands Telekommunikation Ab" } }, + "registry_url": "http://www.whois.ax", + "whois_server": "whois.ax", + "tld_created": "2006-06-21", + "tld_updated": [ + "2017-08-04" + ], + "annotations": { + "country_name_iso": "Åland Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.aland.net", @@ -80,16 +90,6 @@ } ] } - ], - "registry_url": "http://www.whois.ax", - "whois_server": "whois.ax", - "tld_created": "2006-06-21", - "tld_updated": [ - "2017-08-04" - ], - "annotations": { - "country_name_iso": "Åland Islands", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/axa.json b/data/generated/tld/axa.json index 9a3a8b90..fbce4232 100644 --- a/data/generated/tld/axa.json +++ b/data/generated/tld/axa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://domains.axa/", + "rdap_server": "https://rdap.nic.axa/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.axa", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://domains.axa/", - "rdap_server": "https://rdap.nic.axa/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/az.json b/data/generated/tld/az.json index bfc58681..d5824e1d 100644 --- a/data/generated/tld/az.json +++ b/data/generated/tld/az.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "IntraNS" } }, + "registry_url": "http://www.whois.az/", + "tld_created": "1993-08-25", + "tld_updated": [ + "2025-11-21" + ], + "annotations": { + "country_name_iso": "Azerbaijan", + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "az.hostmaster.ua", @@ -80,21 +95,6 @@ } ] } - ], - "registry_url": "http://www.whois.az/", - "tld_created": "1993-08-25", - "tld_updated": [ - "2025-11-21" - ], - "annotations": { - "country_name_iso": "Azerbaijan", - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/azure.json b/data/generated/tld/azure.json index f2de59e2..c2e6d398 100644 --- a/data/generated/tld/azure.json +++ b/data/generated/tld/azure.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/azure/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.azure", "ipv4": [ { "ip": "213.248.219.129", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.129", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/azure/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ba.json b/data/generated/tld/ba.json index b8a75fbb..10c8c10d 100644 --- a/data/generated/tld/ba.json +++ b/data/generated/tld/ba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "University Tele-Informatic Center (UTIC)" } }, + "registry_url": "http://www.nic.ba", + "tld_created": "1996-08-14", + "tld_updated": [ + "2025-12-26" + ], + "annotations": { + "country_name_iso": "Bosnia and Herzegovina", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bosna.utic.net.ba", @@ -80,23 +97,6 @@ } ] } - ], - "registry_url": "http://www.nic.ba", - "tld_created": "1996-08-14", - "tld_updated": [ - "2025-12-26" - ], - "annotations": { - "country_name_iso": "Bosnia and Herzegovina", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/baby.json b/data/generated/tld/baby.json index 597fd2b3..92c7efb0 100644 --- a/data/generated/tld/baby.json +++ b/data/generated/tld/baby.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.baby/", + "whois_server": "whois.nic.baby", + "rdap_server": "https://rdap.centralnic.com/baby/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.baby", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.baby/", - "whois_server": "whois.nic.baby", - "rdap_server": "https://rdap.centralnic.com/baby/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/baidu.json b/data/generated/tld/baidu.json index 800f95cb..bba50b4a 100644 --- a/data/generated/tld/baidu.json +++ b/data/generated/tld/baidu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.zdns.cn", + "whois_server": "whois.gtld.knet.cn", + "rdap_server": "https://rdap.zdnsgtld.com/baidu", + "tld_created": "2015-12-17", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,29 +148,6 @@ } ] } - ], - "registry_url": "http://www.zdns.cn", - "whois_server": "whois.gtld.knet.cn", - "rdap_server": "https://rdap.zdnsgtld.com/baidu", - "tld_created": "2015-12-17", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/banamex.json b/data/generated/tld/banamex.json index 067b5e53..d7c19bdc 100644 --- a/data/generated/tld/banamex.json +++ b/data/generated/tld/banamex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.citigroup.com", + "rdap_server": "https://rdap.nic.banamex/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.banamex", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.citigroup.com", - "rdap_server": "https://rdap.nic.banamex/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/band.json b/data/generated/tld/band.json index 5985e617..979a6d84 100644 --- a/data/generated/tld/band.json +++ b/data/generated/tld/band.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-01", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.band", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-01", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bank.json b/data/generated/tld/bank.json index 9c8cf18c..efc3403e 100644 --- a/data/generated/tld/bank.json +++ b/data/generated/tld/bank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "https://www.ftld.com/", + "whois_server": "whois.nic.bank", + "rdap_server": "https://rdap.nic.bank/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_sponsor_alias": "fTLD Registry", + "iana_sponsor_slug": "ftld-registry", + "iana_admin_alias": "fTLD Registry", + "iana_admin_slug": "ftld-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "fTLD Registry", + "icann_registry_operator_slug": "ftld-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "d.nic.bank", @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,35 +172,6 @@ } ] } - ], - "registry_url": "https://www.ftld.com/", - "whois_server": "whois.nic.bank", - "rdap_server": "https://rdap.nic.bank/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_sponsor_alias": "fTLD Registry", - "iana_sponsor_slug": "ftld-registry", - "iana_admin_alias": "fTLD Registry", - "iana_admin_slug": "ftld-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "fTLD Registry", - "icann_registry_operator_slug": "ftld-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bar.json b/data/generated/tld/bar.json index 5984f2b5..9f5e5f64 100644 --- a/data/generated/tld/bar.json +++ b/data/generated/tld/bar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://nic.bar", + "whois_server": "whois.nic.bar", + "rdap_server": "https://rdap.registry.bar/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://nic.bar", - "whois_server": "whois.nic.bar", - "rdap_server": "https://rdap.registry.bar/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/barcelona.json b/data/generated/tld/barcelona.json index 31802aba..a62de15b 100644 --- a/data/generated/tld/barcelona.json +++ b/data/generated/tld/barcelona.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.barcelona.cat", + "whois_server": "whois.nic.barcelona", + "rdap_server": "https://rdap.nic.barcelona/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.barcelona.cat", - "whois_server": "whois.nic.barcelona", - "rdap_server": "https://rdap.nic.barcelona/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/barclaycard.json b/data/generated/tld/barclaycard.json index 8f75c5a5..f2e8209b 100644 --- a/data/generated/tld/barclaycard.json +++ b/data/generated/tld/barclaycard.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.barclaycard.com/", + "whois_server": "whois.nic.barclaycard", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barclaycard", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.barclaycard.com/", - "whois_server": "whois.nic.barclaycard", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/barclays.json b/data/generated/tld/barclays.json index dc3f47bb..5c3da21e 100644 --- a/data/generated/tld/barclays.json +++ b/data/generated/tld/barclays.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.barclays.com/", + "whois_server": "whois.nic.barclays", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barclays", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.barclays.com/", - "whois_server": "whois.nic.barclays", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/barefoot.json b/data/generated/tld/barefoot.json index 90705982..5ea942bf 100644 --- a/data/generated/tld/barefoot.json +++ b/data/generated/tld/barefoot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.barefootwine.com", + "whois_server": "whois.nic.barefoot", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barefoot", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.barefootwine.com", - "whois_server": "whois.nic.barefoot", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bargains.json b/data/generated/tld/bargains.json index c0ee5b1e..0eeed3cd 100644 --- a/data/generated/tld/bargains.json +++ b/data/generated/tld/bargains.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bargains", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/baseball.json b/data/generated/tld/baseball.json index 3f769975..71ee486c 100644 --- a/data/generated/tld/baseball.json +++ b/data/generated/tld/baseball.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.mlb.com", + "whois_server": "whois.nic.baseball", + "rdap_server": "https://rdap.nic.baseball/", + "tld_created": "2016-09-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.baseball", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.mlb.com", - "whois_server": "whois.nic.baseball", - "rdap_server": "https://rdap.nic.baseball/", - "tld_created": "2016-09-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/basketball.json b/data/generated/tld/basketball.json index 3f986963..246e1bca 100644 --- a/data/generated/tld/basketball.json +++ b/data/generated/tld/basketball.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.fiba.com/", + "whois_server": "whois.nic.basketball", + "rdap_server": "https://rdap.nic.basketball", + "tld_created": "2016-10-13", + "tld_updated": [ + "2024-11-14" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.basketball", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.fiba.com/", - "whois_server": "whois.nic.basketball", - "rdap_server": "https://rdap.nic.basketball", - "tld_created": "2016-10-13", - "tld_updated": [ - "2024-11-14" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bauhaus.json b/data/generated/tld/bauhaus.json index 141dfdb0..e3300441 100644 --- a/data/generated/tld/bauhaus.json +++ b/data/generated/tld/bauhaus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.bauhaus.info", + "whois_server": "whois.nic.bauhaus", + "rdap_server": "https://rdap.nic.bauhaus/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2023-07-07" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.bauhaus.info", - "whois_server": "whois.nic.bauhaus", - "rdap_server": "https://rdap.nic.bauhaus/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2023-07-07" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/bayern.json b/data/generated/tld/bayern.json index a3596889..4938b19a 100644 --- a/data/generated/tld/bayern.json +++ b/data/generated/tld/bayern.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://nic.bayern", + "whois_server": "whois.nic.bayern", + "rdap_server": "https://rdap.nic.bayern/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2023-06-13" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "UltraDNS" + ], + "as_org_slugs": [ + "knipp-medien", + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -129,7 +156,7 @@ "ipv4": [ { "ip": "37.209.194.2", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181,32 +208,6 @@ } ] } - ], - "registry_url": "http://nic.bayern", - "whois_server": "whois.nic.bayern", - "rdap_server": "https://rdap.nic.bayern/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2023-06-13" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "UltraDNS" - ], - "as_org_slugs": [ - "knipp-medien", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bb.json b/data/generated/tld/bb.json index 0a575e5c..bc6c579f 100644 --- a/data/generated/tld/bb.json +++ b/data/generated/tld/bb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Ministry of Innovation, Science and Smart Technology" } }, + "registry_url": "http://www.whois.telecoms.gov.bb/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "country_name_iso": "Barbados", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.bb", @@ -94,15 +103,6 @@ } ] } - ], - "registry_url": "http://www.whois.telecoms.gov.bb/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "country_name_iso": "Barbados", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bbc.json b/data/generated/tld/bbc.json index a6d333cd..b4529d36 100644 --- a/data/generated/tld/bbc.json +++ b/data/generated/tld/bbc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,37 @@ "date_removed": null } }, + "registry_url": "http://www.bbc.co.uk", + "whois_server": "whois.nic.bbc", + "rdap_server": "https://rdap.nominet.uk/bbc/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2021-11-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bbc", "ipv4": [ { "ip": "213.248.219.4", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +76,8 @@ "ipv4": [ { "ip": "103.49.83.4", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,29 +204,6 @@ } ] } - ], - "registry_url": "http://www.bbc.co.uk", - "whois_server": "whois.nic.bbc", - "rdap_server": "https://rdap.nominet.uk/bbc/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2021-11-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bbt.json b/data/generated/tld/bbt.json index 4932be13..9bde6736 100644 --- a/data/generated/tld/bbt.json +++ b/data/generated/tld/bbt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://bbt.com", + "whois_server": "whois.nic.bbt", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-12", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bbt", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://bbt.com", - "whois_server": "whois.nic.bbt", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-12", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bbva.json b/data/generated/tld/bbva.json index 1251f2e1..9174d8e9 100644 --- a/data/generated/tld/bbva.json +++ b/data/generated/tld/bbva.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,37 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/bbva/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bbva", "ipv4": [ { "ip": "213.248.219.44", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +76,8 @@ "ipv4": [ { "ip": "103.49.83.44", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,29 +204,6 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/bbva/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bcg.json b/data/generated/tld/bcg.json index c61bf160..5a423b06 100644 --- a/data/generated/tld/bcg.json +++ b/data/generated/tld/bcg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.bcg.com", + "whois_server": "whois.nic.bcg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-11", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bcg", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.bcg.com", - "whois_server": "whois.nic.bcg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-11", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bcn.json b/data/generated/tld/bcn.json index 02aa7741..0edc4cfd 100644 --- a/data/generated/tld/bcn.json +++ b/data/generated/tld/bcn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.barcelona.cat", + "whois_server": "whois.nic.bcn", + "rdap_server": "https://rdap.nic.bcn/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://www.barcelona.cat", - "whois_server": "whois.nic.bcn", - "rdap_server": "https://rdap.nic.bcn/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/bd.json b/data/generated/tld/bd.json index f560599c..10c5337a 100644 --- a/data/generated/tld/bd.json +++ b/data/generated/tld/bd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Bangladesh Telecommunications\nCompany Limited (BTCL)" } }, + "registry_url": "https://bdia.btcl.com.bd/", + "tld_created": "1999-05-20", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "country_name_iso": "Bangladesh", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bd-ns.anycast.pch.net", @@ -95,21 +110,6 @@ ] } ], - "registry_url": "https://bdia.btcl.com.bd/", - "tld_created": "1999-05-20", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "country_name_iso": "Bangladesh", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--54b7fta0cc" ] diff --git a/data/generated/tld/be.json b/data/generated/tld/be.json index 92c1c3c5..5f197e33 100644 --- a/data/generated/tld/be.json +++ b/data/generated/tld/be.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "DNS Belgium vzw/asbl" } }, + "registry_url": "https://www.dnsbelgium.be", + "whois_server": "whois.dns.be", + "tld_created": "1988-08-05", + "tld_updated": [ + "2026-01-12" + ], + "annotations": { + "iana_sponsor_alias": "DNS Belgium", + "iana_sponsor_slug": "dns-belgium", + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "country_name_iso": "Belgium", + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nsset.be", @@ -132,30 +156,6 @@ } ] } - ], - "registry_url": "https://www.dnsbelgium.be", - "whois_server": "whois.dns.be", - "tld_created": "1988-08-05", - "tld_updated": [ - "2026-01-12" - ], - "annotations": { - "iana_sponsor_alias": "DNS Belgium", - "iana_sponsor_slug": "dns-belgium", - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "country_name_iso": "Belgium", - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/beats.json b/data/generated/tld/beats.json index a70f53c3..21fbc4d0 100644 --- a/data/generated/tld/beats.json +++ b/data/generated/tld/beats.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://beatsbydre.com", + "whois_server": "whois.nic.beats", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-03-25" + ], + "annotations": { + "iana_sponsor_alias": "Apple", + "iana_sponsor_slug": "apple", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Apple", + "icann_registry_operator_slug": "apple", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.beats", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "http://beatsbydre.com", - "whois_server": "whois.nic.beats", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-03-25" - ], - "annotations": { - "iana_sponsor_alias": "Apple", - "iana_sponsor_slug": "apple", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Apple", - "icann_registry_operator_slug": "apple", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/beauty.json b/data/generated/tld/beauty.json index b88c27e4..55b093b1 100644 --- a/data/generated/tld/beauty.json +++ b/data/generated/tld/beauty.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.beauty/", + "whois_server": "whois.nic.beauty", + "rdap_server": "https://rdap.centralnic.com/beauty/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.beauty", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.beauty/", - "whois_server": "whois.nic.beauty", - "rdap_server": "https://rdap.centralnic.com/beauty/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/beer.json b/data/generated/tld/beer.json index 93c3659b..e0aaee2a 100644 --- a/data/generated/tld/beer.json +++ b/data/generated/tld/beer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.beer/", + "whois_server": "whois.nic.beer", + "rdap_server": "https://rdap.nic.beer/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.beer", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.beer/", - "whois_server": "whois.nic.beer", - "rdap_server": "https://rdap.nic.beer/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/berlin.json b/data/generated/tld/berlin.json index e729a19d..685a3343 100644 --- a/data/generated/tld/berlin.json +++ b/data/generated/tld/berlin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://nic.berlin/", + "whois_server": "whois.nic.berlin", + "rdap_server": "https://rdap.nic.berlin/v1/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.nic.berlin", @@ -86,28 +108,6 @@ } ] } - ], - "registry_url": "http://nic.berlin/", - "whois_server": "whois.nic.berlin", - "rdap_server": "https://rdap.nic.berlin/v1/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/best.json b/data/generated/tld/best.json index 189b79f6..0d75c8e1 100644 --- a/data/generated/tld/best.json +++ b/data/generated/tld/best.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.domains.best", + "whois_server": "whois.nic.best", + "rdap_server": "https://rdap.centralnic.com/best/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.best", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://www.domains.best", - "whois_server": "whois.nic.best", - "rdap_server": "https://rdap.centralnic.com/best/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/bestbuy.json b/data/generated/tld/bestbuy.json index 3e5796ff..71e151d4 100644 --- a/data/generated/tld/bestbuy.json +++ b/data/generated/tld/bestbuy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.bestbuy", + "whois_server": "whois.nic.bestbuy", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-01-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bestbuy", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://nic.bestbuy", - "whois_server": "whois.nic.bestbuy", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-01-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bet.json b/data/generated/tld/bet.json index 109d105b..b5565097 100644 --- a/data/generated/tld/bet.json +++ b/data/generated/tld/bet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bet", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bf.json b/data/generated/tld/bf.json index e981fbd4..e925a120 100644 --- a/data/generated/tld/bf.json +++ b/data/generated/tld/bf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Association Burkinabè des Domaines Internet (A.B.D.I.)" } }, + "registry_url": "https://www.registre.bf", + "whois_server": "whois.registre.bf", + "tld_created": "1993-03-29", + "tld_updated": [ + "2025-04-30" + ], + "annotations": { + "country_name_iso": "Burkina Faso", + "as_org_aliases": [ + "AFNIC", + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registre.bf", @@ -80,26 +100,6 @@ } ] } - ], - "registry_url": "https://www.registre.bf", - "whois_server": "whois.registre.bf", - "tld_created": "1993-03-29", - "tld_updated": [ - "2025-04-30" - ], - "annotations": { - "country_name_iso": "Burkina Faso", - "as_org_aliases": [ - "AFNIC", - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bg.json b/data/generated/tld/bg.json index b1cf428b..47363369 100644 --- a/data/generated/tld/bg.json +++ b/data/generated/tld/bg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Register.BG" } }, + "registry_url": "http://www.register.bg", + "whois_server": "whois.register.bg", + "tld_created": "1995-01-03", + "tld_updated": [ + "2021-02-24" + ], + "annotations": { + "country_name_iso": "Bulgaria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bg", @@ -133,22 +149,6 @@ ] } ], - "registry_url": "http://www.register.bg", - "whois_server": "whois.register.bg", - "tld_created": "1995-01-03", - "tld_updated": [ - "2021-02-24" - ], - "annotations": { - "country_name_iso": "Bulgaria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--90ae" ] diff --git a/data/generated/tld/bh.json b/data/generated/tld/bh.json index e4d5c651..dde20f4e 100644 --- a/data/generated/tld/bh.json +++ b/data/generated/tld/bh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "CentralNic" } }, + "whois_server": "whois.nic.bh", + "rdap_server": "https://rdap.centralnic.com/bh/", + "tld_created": "1994-02-01", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "supplemental", + "country_name_iso": "Bahrain", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bh", @@ -95,25 +114,6 @@ ] } ], - "whois_server": "whois.nic.bh", - "rdap_server": "https://rdap.centralnic.com/bh/", - "tld_created": "1994-02-01", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "supplemental", - "country_name_iso": "Bahrain", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbcpq6gpa1a" ] diff --git a/data/generated/tld/bharti.json b/data/generated/tld/bharti.json index edfb4ebe..06514296 100644 --- a/data/generated/tld/bharti.json +++ b/data/generated/tld/bharti.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.bharti.com/wps/wcm/connect/BhartiPortal/Bharti/home", + "whois_server": "whois.nic.bharti", + "rdap_server": "https://rdap.nic.bharti", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bharti", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.bharti.com/wps/wcm/connect/BhartiPortal/Bharti/home", - "whois_server": "whois.nic.bharti", - "rdap_server": "https://rdap.nic.bharti", - "tld_created": "2015-05-08", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bi.json b/data/generated/tld/bi.json index 4d1e3afa..6b4fb62a 100644 --- a/data/generated/tld/bi.json +++ b/data/generated/tld/bi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Centre National de l'Informatique" } }, + "registry_url": "http://www.nic.bi", + "whois_server": "whois1.nic.bi", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-09-05" + ], + "annotations": { + "country_name_iso": "Burundi", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.nic.bi", @@ -99,22 +115,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.bi", - "whois_server": "whois1.nic.bi", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-09-05" - ], - "annotations": { - "country_name_iso": "Burundi", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bible.json b/data/generated/tld/bible.json index ffb52688..06674e1a 100644 --- a/data/generated/tld/bible.json +++ b/data/generated/tld/bible.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://get.bible", + "whois_server": "whois.nic.bible", + "rdap_server": "https://rdap.nic.bible/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bible", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://get.bible", - "whois_server": "whois.nic.bible", - "rdap_server": "https://rdap.nic.bible/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bid.json b/data/generated/tld/bid.json index 1e61db59..1e2b8939 100644 --- a/data/generated/tld/bid.json +++ b/data/generated/tld/bid.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.bid", + "whois_server": "whois.nic.bid", + "rdap_server": "https://rdap.nic.bid/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bid", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.bid", - "whois_server": "whois.nic.bid", - "rdap_server": "https://rdap.nic.bid/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bike.json b/data/generated/tld/bike.json index 17e177d3..d964ac55 100644 --- a/data/generated/tld/bike.json +++ b/data/generated/tld/bike.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bike", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bing.json b/data/generated/tld/bing.json index 1590b83f..0a7efecc 100644 --- a/data/generated/tld/bing.json +++ b/data/generated/tld/bing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/bing/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bing", "ipv4": [ { "ip": "213.248.219.130", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.130", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/bing/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bingo.json b/data/generated/tld/bingo.json index 3511b720..968bec58 100644 --- a/data/generated/tld/bingo.json +++ b/data/generated/tld/bingo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bingo", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bio.json b/data/generated/tld/bio.json index 005d7485..8f5aa975 100644 --- a/data/generated/tld/bio.json +++ b/data/generated/tld/bio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bio", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/biz.json b/data/generated/tld/biz.json index 2cb296a7..c82d2ae8 100644 --- a/data/generated/tld/biz.json +++ b/data/generated/tld/biz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.biz", + "whois_server": "whois.nic.biz", + "rdap_server": "https://rdap.nic.biz/", + "tld_created": "2001-06-26", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gtld.biz", @@ -134,7 +162,7 @@ "ipv4": [ { "ip": "37.209.194.13", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -167,34 +195,6 @@ } ] } - ], - "registry_url": "http://www.nic.biz", - "whois_server": "whois.nic.biz", - "rdap_server": "https://rdap.nic.biz/", - "tld_created": "2001-06-26", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bj.json b/data/generated/tld/bj.json index 77b18844..ad8e73b1 100644 --- a/data/generated/tld/bj.json +++ b/data/generated/tld/bj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "JENY SAS" } }, + "registry_url": "http://www.nic.bj", + "whois_server": "whois.nic.bj", + "tld_created": "1996-01-18", + "tld_updated": [ + "2023-04-14" + ], + "annotations": { + "country_name_iso": "Benin", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-bj.afrinic.net", @@ -99,24 +117,6 @@ } ] } - ], - "registry_url": "http://www.nic.bj", - "whois_server": "whois.nic.bj", - "tld_created": "1996-01-18", - "tld_updated": [ - "2023-04-14" - ], - "annotations": { - "country_name_iso": "Benin", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/black.json b/data/generated/tld/black.json index 211fd21a..7c1ab056 100644 --- a/data/generated/tld/black.json +++ b/data/generated/tld/black.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.black", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/blackfriday.json b/data/generated/tld/blackfriday.json index 04c1b08a..189cf011 100644 --- a/data/generated/tld/blackfriday.json +++ b/data/generated/tld/blackfriday.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.blackfriday/", + "whois_server": "whois.nic.blackfriday", + "rdap_server": "https://rdap.nic.blackfriday/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.blackfriday", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.blackfriday/", - "whois_server": "whois.nic.blackfriday", - "rdap_server": "https://rdap.nic.blackfriday/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/blockbuster.json b/data/generated/tld/blockbuster.json index 4fdc4018..6b7728cf 100644 --- a/data/generated/tld/blockbuster.json +++ b/data/generated/tld/blockbuster.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.blockbuster", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.blockbuster", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/blog.json b/data/generated/tld/blog.json index 155d8142..9e6b5c2f 100644 --- a/data/generated/tld/blog.json +++ b/data/generated/tld/blog.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://nic.blog", + "whois_server": "whois.nic.blog", + "rdap_server": "https://rdap.blog.fury.ca/rdap/", + "tld_created": "2016-05-12", + "tld_updated": [ + "2026-05-05" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.blog", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://nic.blog", - "whois_server": "whois.nic.blog", - "rdap_server": "https://rdap.blog.fury.ca/rdap/", - "tld_created": "2016-05-12", - "tld_updated": [ - "2026-05-05" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] } } diff --git a/data/generated/tld/bloomberg.json b/data/generated/tld/bloomberg.json index 125c413f..304da55a 100644 --- a/data/generated/tld/bloomberg.json +++ b/data/generated/tld/bloomberg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bloomberg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bloomberg", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.bloomberg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/blue.json b/data/generated/tld/blue.json index eef7393c..7d7e2365 100644 --- a/data/generated/tld/blue.json +++ b/data/generated/tld/blue.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.blue", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bm.json b/data/generated/tld/bm.json index 765ba98f..26e17e17 100644 --- a/data/generated/tld/bm.json +++ b/data/generated/tld/bm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Afilias" } }, + "registry_url": "http://www.bermudanic.bm", + "whois_server": "whois.nic.bm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1993-03-31", + "tld_updated": [ + "2024-03-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "country_name_iso": "Bermuda", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.bm.afilias-nst.info", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "http://www.bermudanic.bm", - "whois_server": "whois.nic.bm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1993-03-31", - "tld_updated": [ - "2024-03-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "country_name_iso": "Bermuda", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bms.json b/data/generated/tld/bms.json index a6f5acb0..f0068883 100644 --- a/data/generated/tld/bms.json +++ b/data/generated/tld/bms.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bms", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bms", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.bms", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bmw.json b/data/generated/tld/bmw.json index cd8b28b2..616c9342 100644 --- a/data/generated/tld/bmw.json +++ b/data/generated/tld/bmw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.bmw.com", + "whois_server": "whois.nic.bmw", + "rdap_server": "https://rdap.centralnic.com/bmw", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_sponsor_alias": "BMW", + "iana_sponsor_slug": "bmw", + "iana_admin_alias": "BMW", + "iana_admin_slug": "bmw", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "BMW", + "icann_registry_operator_slug": "bmw", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.bmw", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://nic.bmw.com", - "whois_server": "whois.nic.bmw", - "rdap_server": "https://rdap.centralnic.com/bmw", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_sponsor_alias": "BMW", - "iana_sponsor_slug": "bmw", - "iana_admin_alias": "BMW", - "iana_admin_slug": "bmw", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "BMW", - "icann_registry_operator_slug": "bmw", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/bn.json b/data/generated/tld/bn.json index 90a547ee..60be527e 100644 --- a/data/generated/tld/bn.json +++ b/data/generated/tld/bn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Authority for Info-communications Technology Industry of Brunei Darussalam" } }, + "registry_url": "http://www.bnnic.bn", + "whois_server": "whois.bnnic.bn", + "tld_created": "1994-06-03", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "country_name_iso": "Brunei Darussalam", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bn-ns.anycast.pch.net", @@ -80,24 +98,6 @@ } ] } - ], - "registry_url": "http://www.bnnic.bn", - "whois_server": "whois.bnnic.bn", - "tld_created": "1994-06-03", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "country_name_iso": "Brunei Darussalam", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bnpparibas.json b/data/generated/tld/bnpparibas.json index 1d334e72..db700645 100644 --- a/data/generated/tld/bnpparibas.json +++ b/data/generated/tld/bnpparibas.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.bnpparibas.com/en/about-us", + "whois_server": "whois.nic.bnpparibas", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bnpparibas", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.bnpparibas.com/en/about-us", - "whois_server": "whois.nic.bnpparibas", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bo.json b/data/generated/tld/bo.json index 6f49e4c9..d918239f 100644 --- a/data/generated/tld/bo.json +++ b/data/generated/tld/bo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia" } }, + "registry_url": "http://www.nic.bo", + "whois_server": "whois.nic.bo", + "tld_created": "1991-02-26", + "tld_updated": [ + "2024-05-23" + ], + "annotations": { + "country_name_iso": "Bolivia, Plurinational State of", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycast.ns.nic.bo", @@ -87,24 +105,6 @@ } ] } - ], - "registry_url": "http://www.nic.bo", - "whois_server": "whois.nic.bo", - "tld_created": "1991-02-26", - "tld_updated": [ - "2024-05-23" - ], - "annotations": { - "country_name_iso": "Bolivia, Plurinational State of", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/boats.json b/data/generated/tld/boats.json index 37be0704..e089accd 100644 --- a/data/generated/tld/boats.json +++ b/data/generated/tld/boats.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.boats", + "whois_server": "whois.nic.boats", + "rdap_server": "https://rdap.centralnic.com/boats/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.boats", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://nic.boats", - "whois_server": "whois.nic.boats", - "rdap_server": "https://rdap.centralnic.com/boats/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/boehringer.json b/data/generated/tld/boehringer.json index 1aafe766..aff692d9 100644 --- a/data/generated/tld/boehringer.json +++ b/data/generated/tld/boehringer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.boehringer-ingelheim.com/", + "whois_server": "whois.nic.boehringer", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.boehringer", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.boehringer-ingelheim.com/", - "whois_server": "whois.nic.boehringer", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bofa.json b/data/generated/tld/bofa.json index 820b6a4a..7eb719d1 100644 --- a/data/generated/tld/bofa.json +++ b/data/generated/tld/bofa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://bofa.com", + "whois_server": "whois.nic.bofa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bofa", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://bofa.com", - "whois_server": "whois.nic.bofa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bom.json b/data/generated/tld/bom.json index 8830b401..c406a5ac 100644 --- a/data/generated/tld/bom.json +++ b/data/generated/tld/bom.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,18 @@ "date_removed": null } }, + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143,18 +155,6 @@ } ] } - ], - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/bond.json b/data/generated/tld/bond.json index 695446a7..bce3a710 100644 --- a/data/generated/tld/bond.json +++ b/data/generated/tld/bond.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.bond", + "whois_server": "whois.nic.bond", + "rdap_server": "https://rdap.centralnic.com/bond", + "tld_created": "2014-10-30", + "tld_updated": [ + "2024-04-18" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.bond", @@ -105,32 +131,6 @@ } ] } - ], - "registry_url": "http://nic.bond", - "whois_server": "whois.nic.bond", - "rdap_server": "https://rdap.centralnic.com/bond", - "tld_created": "2014-10-30", - "tld_updated": [ - "2024-04-18" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/boo.json b/data/generated/tld/boo.json index d0bbd4fe..0c005f47 100644 --- a/data/generated/tld/boo.json +++ b/data/generated/tld/boo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/book.json b/data/generated/tld/book.json index f5140634..9fa0fb85 100644 --- a/data/generated/tld/book.json +++ b/data/generated/tld/book.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.book", + "rdap_server": "https://rdap.nominet.uk/book/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.book", "ipv4": [ { "ip": "213.248.218.61", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.61", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.book", - "rdap_server": "https://rdap.nominet.uk/book/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/booking.json b/data/generated/tld/booking.json index c5555c82..934933e0 100644 --- a/data/generated/tld/booking.json +++ b/data/generated/tld/booking.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.booking.com", + "rdap_server": "https://rdap.nic.booking/", + "tld_created": "2016-07-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.booking", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,27 +164,6 @@ } ] } - ], - "registry_url": "http://www.booking.com", - "rdap_server": "https://rdap.nic.booking/", - "tld_created": "2016-07-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bosch.json b/data/generated/tld/bosch.json index aa7e9b1b..9afe91c8 100644 --- a/data/generated/tld/bosch.json +++ b/data/generated/tld/bosch.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bosch", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bosch", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.bosch", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bostik.json b/data/generated/tld/bostik.json index 4493897f..eb907da0 100644 --- a/data/generated/tld/bostik.json +++ b/data/generated/tld/bostik.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://www.bostik.com", + "whois_server": "whois.nic.bostik", + "rdap_server": "https://rdap.nic.bostik", + "tld_created": "2015-11-06", + "tld_updated": [ + "2025-05-09" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "https://www.bostik.com", - "whois_server": "whois.nic.bostik", - "rdap_server": "https://rdap.nic.bostik", - "tld_created": "2015-11-06", - "tld_updated": [ - "2025-05-09" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/boston.json b/data/generated/tld/boston.json index 7a28c1d7..64435e50 100644 --- a/data/generated/tld/boston.json +++ b/data/generated/tld/boston.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.boston/", + "whois_server": "whois.nic.boston", + "rdap_server": "https://rdap.nic.boston/", + "tld_created": "2016-11-21", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.boston", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.boston/", - "whois_server": "whois.nic.boston", - "rdap_server": "https://rdap.nic.boston/", - "tld_created": "2016-11-21", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/bot.json b/data/generated/tld/bot.json index 16d7f593..028f6865 100644 --- a/data/generated/tld/bot.json +++ b/data/generated/tld/bot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.bot", + "rdap_server": "https://rdap.nominet.uk/bot/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bot", "ipv4": [ { "ip": "213.248.218.55", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.55", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.bot", - "rdap_server": "https://rdap.nominet.uk/bot/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/boutique.json b/data/generated/tld/boutique.json index a9239710..240f50d3 100644 --- a/data/generated/tld/boutique.json +++ b/data/generated/tld/boutique.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.boutique", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/box.json b/data/generated/tld/box.json index c658e680..7be2c523 100644 --- a/data/generated/tld/box.json +++ b/data/generated/tld/box.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://intercap.inc", + "whois_server": "whois.nic.box", + "rdap_server": "https://rdap.centralnic.com/box/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.box", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://intercap.inc", - "whois_server": "whois.nic.box", - "rdap_server": "https://rdap.centralnic.com/box/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/br.json b/data/generated/tld/br.json index 253bff8a..e262f018 100644 --- a/data/generated/tld/br.json +++ b/data/generated/tld/br.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,18 @@ "tech": "Registro .br" } }, + "registry_url": "http://registro.br/", + "whois_server": "whois.registro.br", + "rdap_server": "https://rdap.registro.br/", + "tld_created": "1989-04-18", + "tld_updated": [ + "2023-11-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Brazil", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.br", @@ -132,18 +144,6 @@ } ] } - ], - "registry_url": "http://registro.br/", - "whois_server": "whois.registro.br", - "rdap_server": "https://rdap.registro.br/", - "tld_created": "1989-04-18", - "tld_updated": [ - "2023-11-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Brazil", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bradesco.json b/data/generated/tld/bradesco.json index 80e53193..dc902c9a 100644 --- a/data/generated/tld/bradesco.json +++ b/data/generated/tld/bradesco.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.bradesco/", + "whois_server": "whois.nic.bradesco", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bradesco", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.bradesco/", - "whois_server": "whois.nic.bradesco", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/bridgestone.json b/data/generated/tld/bridgestone.json index 67f51c8e..f5f0c7c9 100644 --- a/data/generated/tld/bridgestone.json +++ b/data/generated/tld/bridgestone.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.bridgestone.com/", + "whois_server": "whois.nic.bridgestone", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2023-06-22" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.bridgestone.com/", - "whois_server": "whois.nic.bridgestone", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2023-06-22" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/broadway.json b/data/generated/tld/broadway.json index 3868019e..52da4484 100644 --- a/data/generated/tld/broadway.json +++ b/data/generated/tld/broadway.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "http://nic.broadway", + "rdap_server": "https://rdap.nominet.uk/broadway/", + "tld_created": "2015-10-08", + "tld_updated": [ + "2025-05-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.broadway", "ipv4": [ { "ip": "213.248.219.38", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.83.38", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "http://nic.broadway", - "rdap_server": "https://rdap.nominet.uk/broadway/", - "tld_created": "2015-10-08", - "tld_updated": [ - "2025-05-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/broker.json b/data/generated/tld/broker.json index de9cfde2..4ed7467e 100644 --- a/data/generated/tld/broker.json +++ b/data/generated/tld/broker.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.broker", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/brother.json b/data/generated/tld/brother.json index db8f42a0..4eac5e1e 100644 --- a/data/generated/tld/brother.json +++ b/data/generated/tld/brother.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.brother.com/", + "whois_server": "whois.nic.brother", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.brother.com/", - "whois_server": "whois.nic.brother", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/brussels.json b/data/generated/tld/brussels.json index faa59b13..3446dc1c 100644 --- a/data/generated/tld/brussels.json +++ b/data/generated/tld/brussels.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.nic.brussels", + "rdap_server": "https://rdap.nic.brussels", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nsset.brussels", @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.nic.brussels", - "rdap_server": "https://rdap.nic.brussels", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/bs.json b/data/generated/tld/bs.json index 5e24c577..8373e0a4 100644 --- a/data/generated/tld/bs.json +++ b/data/generated/tld/bs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "University of The Bahamas" } }, + "registry_url": "http://www.register.bs", + "tld_created": "1991-09-03", + "tld_updated": [ + "2019-08-12" + ], + "annotations": { + "country_name_iso": "Bahamas", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.dns.bs", @@ -75,23 +92,6 @@ } ] } - ], - "registry_url": "http://www.register.bs", - "tld_created": "1991-09-03", - "tld_updated": [ - "2019-08-12" - ], - "annotations": { - "country_name_iso": "Bahamas", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bt.json b/data/generated/tld/bt.json index 4fd11bea..689eaf5a 100644 --- a/data/generated/tld/bt.json +++ b/data/generated/tld/bt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Bhutan Telecom Limited" } }, + "registry_url": "http://www.nic.bt", + "tld_created": "1997-07-16", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Bhutan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "auth00.ns.uu.net", @@ -137,21 +152,6 @@ } ] } - ], - "registry_url": "http://www.nic.bt", - "tld_created": "1997-07-16", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Bhutan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/build.json b/data/generated/tld/build.json index 9433d2ae..ff9508a2 100644 --- a/data/generated/tld/build.json +++ b/data/generated/tld/build.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://about.build/", + "whois_server": "whois.nic.build", + "rdap_server": "https://rdap.centralnic.com/build/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.build", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://about.build/", - "whois_server": "whois.nic.build", - "rdap_server": "https://rdap.centralnic.com/build/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/builders.json b/data/generated/tld/builders.json index 095670a3..6bee4ad2 100644 --- a/data/generated/tld/builders.json +++ b/data/generated/tld/builders.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.builders", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/business.json b/data/generated/tld/business.json index 2b84b924..a6283f24 100644 --- a/data/generated/tld/business.json +++ b/data/generated/tld/business.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.business", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/buy.json b/data/generated/tld/buy.json index 3799be6b..76209cfc 100644 --- a/data/generated/tld/buy.json +++ b/data/generated/tld/buy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.buy", + "rdap_server": "https://rdap.nominet.uk/buy/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.buy", "ipv4": [ { "ip": "213.248.218.62", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.62", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.buy", - "rdap_server": "https://rdap.nominet.uk/buy/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/buzz.json b/data/generated/tld/buzz.json index b6b346be..94805c9e 100644 --- a/data/generated/tld/buzz.json +++ b/data/generated/tld/buzz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.buzznames.biz", + "whois_server": "whois.nic.buzz", + "rdap_server": "https://rdap.nic.buzz/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.buzz", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.buzznames.biz", - "whois_server": "whois.nic.buzz", - "rdap_server": "https://rdap.nic.buzz/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/bv.json b/data/generated/tld/bv.json index 0479f3a4..cf3e3db2 100644 --- a/data/generated/tld/bv.json +++ b/data/generated/tld/bv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Norid A/S" } }, + "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-bv/", + "tld_created": "1997-08-21", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "country_name_iso": "Bouvet Island", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bv", @@ -151,15 +160,6 @@ } ] } - ], - "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-bv/", - "tld_created": "1997-08-21", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "country_name_iso": "Bouvet Island", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bw.json b/data/generated/tld/bw.json index 04df4e68..cc1317f9 100644 --- a/data/generated/tld/bw.json +++ b/data/generated/tld/bw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Botswana Communications Regulatory Authority (BOCRA)" } }, + "registry_url": "http://nic.net.bw", + "whois_server": "whois.nic.net.bw", + "tld_created": "1993-03-19", + "tld_updated": [ + "2024-05-24" + ], + "annotations": { + "country_name_iso": "Botswana", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.net.bw", @@ -80,22 +96,6 @@ } ] } - ], - "registry_url": "http://nic.net.bw", - "whois_server": "whois.nic.net.bw", - "tld_created": "1993-03-19", - "tld_updated": [ - "2024-05-24" - ], - "annotations": { - "country_name_iso": "Botswana", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/by.json b/data/generated/tld/by.json index f9dbbea4..8f290fc3 100644 --- a/data/generated/tld/by.json +++ b/data/generated/tld/by.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Belarusian Cloud Technologies LLC" } }, + "registry_url": "https://cctld.by", + "whois_server": "whois.cctld.by", + "tld_created": "1994-05-10", + "tld_updated": [ + "2025-01-09" + ], + "annotations": { + "country_name_iso": "Belarus", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.tld.becloudby.com", @@ -107,16 +117,6 @@ "ipv6": [] } ], - "registry_url": "https://cctld.by", - "whois_server": "whois.cctld.by", - "tld_created": "1994-05-10", - "tld_updated": [ - "2025-01-09" - ], - "annotations": { - "country_name_iso": "Belarus", - "geographic_scope": "country" - }, "idn": [ "xn--90ais" ] diff --git a/data/generated/tld/bz.json b/data/generated/tld/bz.json index 1ab3301e..4a7d14e9 100644 --- a/data/generated/tld/bz.json +++ b/data/generated/tld/bz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "University Management Ltd" } }, + "registry_url": "http://www.belizenic.bz", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2020-11-23" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Belize", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -132,23 +149,6 @@ } ] } - ], - "registry_url": "http://www.belizenic.bz", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2020-11-23" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Belize", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/bzh.json b/data/generated/tld/bzh.json index 535b2b7c..e33db27e 100644 --- a/data/generated/tld/bzh.json +++ b/data/generated/tld/bzh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.pik.bzh", + "whois_server": "whois.nic.bzh", + "rdap_server": "https://rdap.nic.bzh", + "tld_created": "2014-05-29", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "breton" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,33 +113,6 @@ } ] } - ], - "registry_url": "https://www.pik.bzh", - "whois_server": "whois.nic.bzh", - "rdap_server": "https://rdap.nic.bzh", - "tld_created": "2014-05-29", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "breton" - } + ] } } diff --git a/data/generated/tld/ca.json b/data/generated/tld/ca.json index d914b316..44cc8376 100644 --- a/data/generated/tld/ca.json +++ b/data/generated/tld/ca.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "CIRA" } }, + "registry_url": "http://www.cira.ca/", + "whois_server": "whois.cira.ca", + "rdap_server": "https://rdap.ca.fury.ca/rdap/", + "tld_created": "1987-05-14", + "tld_updated": [ + "2026-03-16" + ], + "annotations": { + "iana_admin_alias": "CIRA", + "iana_admin_slug": "cira", + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "country_name_iso": "Canada", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any.ca-servers.ca", @@ -94,32 +120,6 @@ } ] } - ], - "registry_url": "http://www.cira.ca/", - "whois_server": "whois.cira.ca", - "rdap_server": "https://rdap.ca.fury.ca/rdap/", - "tld_created": "1987-05-14", - "tld_updated": [ - "2026-03-16" - ], - "annotations": { - "iana_admin_alias": "CIRA", - "iana_admin_slug": "cira", - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "country_name_iso": "Canada", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cab.json b/data/generated/tld/cab.json index bd9d7deb..bd543756 100644 --- a/data/generated/tld/cab.json +++ b/data/generated/tld/cab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cab", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cafe.json b/data/generated/tld/cafe.json index c6d54764..62703e1b 100644 --- a/data/generated/tld/cafe.json +++ b/data/generated/tld/cafe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cafe", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cal.json b/data/generated/tld/cal.json index b14dda36..dc421acc 100644 --- a/data/generated/tld/cal.json +++ b/data/generated/tld/cal.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/call.json b/data/generated/tld/call.json index 67003bd7..18c6ecda 100644 --- a/data/generated/tld/call.json +++ b/data/generated/tld/call.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.call", + "rdap_server": "https://rdap.nominet.uk/call/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.call", "ipv4": [ { "ip": "213.248.218.63", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.63", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.call", - "rdap_server": "https://rdap.nominet.uk/call/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/calvinklein.json b/data/generated/tld/calvinklein.json index 85df47c1..c1ecced9 100644 --- a/data/generated/tld/calvinklein.json +++ b/data/generated/tld/calvinklein.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.pvh.com/", + "rdap_server": "https://rdap.nic.calvinklein/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.calvinklein", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.pvh.com/", - "rdap_server": "https://rdap.nic.calvinklein/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cam.json b/data/generated/tld/cam.json index 05d86371..3f6777fb 100644 --- a/data/generated/tld/cam.json +++ b/data/generated/tld/cam.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://nic.cam/", + "whois_server": "whois.nic.cam", + "rdap_server": "https://rdap.centralnic.com/cam/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2026-01-13" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cam", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://nic.cam/", - "whois_server": "whois.nic.cam", - "rdap_server": "https://rdap.centralnic.com/cam/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2026-01-13" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/camera.json b/data/generated/tld/camera.json index 0a7e5535..3fdefcda 100644 --- a/data/generated/tld/camera.json +++ b/data/generated/tld/camera.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.camera", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/camp.json b/data/generated/tld/camp.json index 57c9e76d..cfdf002b 100644 --- a/data/generated/tld/camp.json +++ b/data/generated/tld/camp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.camp", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/canon.json b/data/generated/tld/canon.json index 27cfd7a1..ab5b0469 100644 --- a/data/generated/tld/canon.json +++ b/data/generated/tld/canon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.canon", + "whois_server": "whois.nic.canon", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.canon", - "whois_server": "whois.nic.canon", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/capetown.json b/data/generated/tld/capetown.json index b465e1f1..b3284ed3 100644 --- a/data/generated/tld/capetown.json +++ b/data/generated/tld/capetown.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://registry.net.za", + "whois_server": "whois.nic.capetown", + "rdap_server": "https://rdap.nic.capetown/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -86,33 +113,6 @@ } ] } - ], - "registry_url": "http://registry.net.za", - "whois_server": "whois.nic.capetown", - "rdap_server": "https://rdap.nic.capetown/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/capital.json b/data/generated/tld/capital.json index 80eb24f3..91a01470 100644 --- a/data/generated/tld/capital.json +++ b/data/generated/tld/capital.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.capital", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/capitalone.json b/data/generated/tld/capitalone.json index ccb86567..757c39d9 100644 --- a/data/generated/tld/capitalone.json +++ b/data/generated/tld/capitalone.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.capitalone.com", + "whois_server": "whois.nic.capitalone", + "rdap_server": "https://rdap.nic.capitalone", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-08-13" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.capitalone", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.capitalone.com", - "whois_server": "whois.nic.capitalone", - "rdap_server": "https://rdap.nic.capitalone", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-08-13" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/car.json b/data/generated/tld/car.json index 5aeecf6e..d895ee44 100644 --- a/data/generated/tld/car.json +++ b/data/generated/tld/car.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.car", + "whois_server": "whois.nic.car", + "rdap_server": "https://rdap.centralnic.com/car/", + "tld_created": "2015-08-26", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.car", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.nic.car", - "whois_server": "whois.nic.car", - "rdap_server": "https://rdap.centralnic.com/car/", - "tld_created": "2015-08-26", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/caravan.json b/data/generated/tld/caravan.json index c275641e..2effc151 100644 --- a/data/generated/tld/caravan.json +++ b/data/generated/tld/caravan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.caravan.com", + "rdap_server": "https://rdap.nic.caravan/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.caravan", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.caravan.com", - "rdap_server": "https://rdap.nic.caravan/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cards.json b/data/generated/tld/cards.json index a1a9b25a..31d7d80e 100644 --- a/data/generated/tld/cards.json +++ b/data/generated/tld/cards.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cards", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/care.json b/data/generated/tld/care.json index 57fffe6a..ac97a54f 100644 --- a/data/generated/tld/care.json +++ b/data/generated/tld/care.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.care", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/career.json b/data/generated/tld/career.json index c86bf233..2d39915c 100644 --- a/data/generated/tld/career.json +++ b/data/generated/tld/career.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,42 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/career/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.career", "ipv4": [ { "ip": "213.248.219.121", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +81,8 @@ "ipv4": [ { "ip": "103.49.83.121", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,34 +209,6 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/career/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/careers.json b/data/generated/tld/careers.json index d3835408..48bb494d 100644 --- a/data/generated/tld/careers.json +++ b/data/generated/tld/careers.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.careers", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cars.json b/data/generated/tld/cars.json index 42b29fa6..41ed6221 100644 --- a/data/generated/tld/cars.json +++ b/data/generated/tld/cars.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.cars", + "whois_server": "whois.nic.cars", + "rdap_server": "https://rdap.centralnic.com/cars/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cars", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://nic.cars", - "whois_server": "whois.nic.cars", - "rdap_server": "https://rdap.centralnic.com/cars/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/casa.json b/data/generated/tld/casa.json index c73d05ef..6ad3eb4d 100644 --- a/data/generated/tld/casa.json +++ b/data/generated/tld/casa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.casa/", + "whois_server": "whois.nic.casa", + "rdap_server": "https://rdap.nic.casa/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.casa", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.casa/", - "whois_server": "whois.nic.casa", - "rdap_server": "https://rdap.nic.casa/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/case.json b/data/generated/tld/case.json index b69a41d2..71a1ab7a 100644 --- a/data/generated/tld/case.json +++ b/data/generated/tld/case.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.digity.case/case", + "whois_server": "whois.nic.case", + "rdap_server": "https://rdap.centralnic.com/case/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2023-12-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.case", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://www.digity.case/case", - "whois_server": "whois.nic.case", - "rdap_server": "https://rdap.centralnic.com/case/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2023-12-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/cash.json b/data/generated/tld/cash.json index efc1830b..1fe6b478 100644 --- a/data/generated/tld/cash.json +++ b/data/generated/tld/cash.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cash", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/casino.json b/data/generated/tld/casino.json index 1666168b..2cc24027 100644 --- a/data/generated/tld/casino.json +++ b/data/generated/tld/casino.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.casino", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cat.json b/data/generated/tld/cat.json index c15478cc..d5128509 100644 --- a/data/generated/tld/cat.json +++ b/data/generated/tld/cat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.domini.cat", + "whois_server": "whois.nic.cat", + "rdap_server": "https://rdap.nic.cat/", + "tld_created": "2005-12-19", + "tld_updated": [ + "2025-01-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "catalan" + }, "nameservers": [ { "hostname": "anyc1.irondns.net", @@ -124,32 +151,6 @@ } ] } - ], - "registry_url": "http://www.domini.cat", - "whois_server": "whois.nic.cat", - "rdap_server": "https://rdap.nic.cat/", - "tld_created": "2005-12-19", - "tld_updated": [ - "2025-01-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "knipp-medien", - "packet-clearing-house" - ], - "cultural_affiliation": "catalan" - } + ] } } diff --git a/data/generated/tld/catering.json b/data/generated/tld/catering.json index 52870d9f..0102eb6b 100644 --- a/data/generated/tld/catering.json +++ b/data/generated/tld/catering.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.catering", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/catholic.json b/data/generated/tld/catholic.json index 75c64645..61df2f59 100644 --- a/data/generated/tld/catholic.json +++ b/data/generated/tld/catholic.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.catholic", + "rdap_server": "https://rdap.nic.catholic/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.catholic", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.catholic", - "rdap_server": "https://rdap.nic.catholic/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cba.json b/data/generated/tld/cba.json index 3601f4cc..7e3e448c 100644 --- a/data/generated/tld/cba.json +++ b/data/generated/tld/cba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.cba", + "rdap_server": "https://rdap.nic.cba/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cba", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.cba", - "rdap_server": "https://rdap.nic.cba/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cbn.json b/data/generated/tld/cbn.json index e0d0ac15..6989d171 100644 --- a/data/generated/tld/cbn.json +++ b/data/generated/tld/cbn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.cbn.com", + "rdap_server": "https://rdap.nic.cbn/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cbn", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.cbn.com", - "rdap_server": "https://rdap.nic.cbn/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cbre.json b/data/generated/tld/cbre.json index 8b728605..2f9c0917 100644 --- a/data/generated/tld/cbre.json +++ b/data/generated/tld/cbre.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://cbre.com", + "rdap_server": "https://rdap.nic.cbre/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cbre", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://cbre.com", - "rdap_server": "https://rdap.nic.cbre/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cc.json b/data/generated/tld/cc.json index 47d155b8..6213507b 100644 --- a/data/generated/tld/cc.json +++ b/data/generated/tld/cc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,22 +17,42 @@ "tech": "VeriSign Global Registry Services" } }, + "registry_url": "http://www.nic.cc/", + "whois_server": "ccwhois.verisign-grs.com", + "rdap_server": "https://tld-rdap.verisign.com/cc/v1/", + "tld_created": "1997-10-13", + "tld_updated": [ + "2026-03-24" + ], + "annotations": { + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "rdap_source": "IANA", + "country_name_iso": "Cocos (Keeling) Islands", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -61,16 +81,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://www.nic.cc/", - "whois_server": "ccwhois.verisign-grs.com", - "rdap_server": "https://tld-rdap.verisign.com/cc/v1/", - "tld_created": "1997-10-13", - "tld_updated": [ - "2026-03-24" - ], - "annotations": { - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "rdap_source": "IANA", - "country_name_iso": "Cocos (Keeling) Islands", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cd.json b/data/generated/tld/cd.json index db877a05..d7945537 100644 --- a/data/generated/tld/cd.json +++ b/data/generated/tld/cd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Office Congolais des Postes et Télécommunications - OCPT" } }, + "registry_url": "http://www.nic.cd/", + "tld_created": "1997-08-20", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "country_name_iso": "Congo, The Democratic Republic of the", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gransy-anycast1.nic.cd", @@ -54,21 +69,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.cd/", - "tld_created": "1997-08-20", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "country_name_iso": "Congo, The Democratic Republic of the", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/center.json b/data/generated/tld/center.json index b880a977..fe395747 100644 --- a/data/generated/tld/center.json +++ b/data/generated/tld/center.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.center", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ceo.json b/data/generated/tld/ceo.json index a2240c62..db1480b0 100644 --- a/data/generated/tld/ceo.json +++ b/data/generated/tld/ceo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.peoplebrowsr.com", + "whois_server": "whois.nic.ceo", + "rdap_server": "https://rdap.centralnic.com/ceo/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.ceo", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.peoplebrowsr.com", - "whois_server": "whois.nic.ceo", - "rdap_server": "https://rdap.centralnic.com/ceo/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/cern.json b/data/generated/tld/cern.json index bd8c9cdd..2ce8a43d 100644 --- a/data/generated/tld/cern.json +++ b/data/generated/tld/cern.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.cern.ch", + "whois_server": "whois.nic.cern", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-13", + "tld_updated": [ + "2023-08-22" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cern", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.cern.ch", - "whois_server": "whois.nic.cern", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-13", - "tld_updated": [ - "2023-08-22" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cf.json b/data/generated/tld/cf.json index cb7e770b..c2223441 100644 --- a/data/generated/tld/cf.json +++ b/data/generated/tld/cf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Centrafrique TLD B.V." } }, + "registry_url": "http://www.dot.cf", + "whois_server": "whois.dot.cf", + "tld_created": "1996-04-24", + "tld_updated": [ + "2015-12-29" + ], + "annotations": { + "country_name_iso": "Central African Republic", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.cf", @@ -94,16 +104,6 @@ } ] } - ], - "registry_url": "http://www.dot.cf", - "whois_server": "whois.dot.cf", - "tld_created": "1996-04-24", - "tld_updated": [ - "2015-12-29" - ], - "annotations": { - "country_name_iso": "Central African Republic", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cfa.json b/data/generated/tld/cfa.json index 0ecd74ad..2bc18cf5 100644 --- a/data/generated/tld/cfa.json +++ b/data/generated/tld/cfa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.cfainstitute.org", + "whois_server": "whois.nic.cfa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cfa", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "https://www.cfainstitute.org", - "whois_server": "whois.nic.cfa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cfd.json b/data/generated/tld/cfd.json index e5ad5b8a..603f6bce 100644 --- a/data/generated/tld/cfd.json +++ b/data/generated/tld/cfd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://bostonivy.co", + "whois_server": "whois.nic.cfd", + "rdap_server": "https://rdap.centralnic.com/cfd/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2024-04-29" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cfd", @@ -105,32 +131,6 @@ } ] } - ], - "registry_url": "http://bostonivy.co", - "whois_server": "whois.nic.cfd", - "rdap_server": "https://rdap.centralnic.com/cfd/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2024-04-29" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/cg.json b/data/generated/tld/cg.json index b74745d4..972be8d1 100644 --- a/data/generated/tld/cg.json +++ b/data/generated/tld/cg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Frédéric Grégoire c/o Interpoint Domain Plus" } }, + "registry_url": "https://www.dnsafrica.net", + "tld_created": "1997-01-14", + "tld_updated": [ + "2026-05-01" + ], + "annotations": { + "country_name_iso": "Congo", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.nic.cg", @@ -113,21 +128,6 @@ } ] } - ], - "registry_url": "https://www.dnsafrica.net", - "tld_created": "1997-01-14", - "tld_updated": [ - "2026-05-01" - ], - "annotations": { - "country_name_iso": "Congo", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ch.json b/data/generated/tld/ch.json index f3752e51..5603ccf9 100644 --- a/data/generated/tld/ch.json +++ b/data/generated/tld/ch.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "SWITCH The Swiss Education & Research Network" } }, + "registry_url": "https://www.nic.ch/", + "whois_server": "whois.nic.ch", + "rdap_server": "https://rdap.nic.ch/", + "tld_created": "1987-05-20", + "tld_updated": [ + "2025-11-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Switzerland", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ch", @@ -113,26 +133,6 @@ } ] } - ], - "registry_url": "https://www.nic.ch/", - "whois_server": "whois.nic.ch", - "rdap_server": "https://rdap.nic.ch/", - "tld_created": "1987-05-20", - "tld_updated": [ - "2025-11-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Switzerland", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/chanel.json b/data/generated/tld/chanel.json index 104aaad0..0675cfcd 100644 --- a/data/generated/tld/chanel.json +++ b/data/generated/tld/chanel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.chanel.com", + "whois_server": "whois.nic.chanel", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.chanel", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.chanel.com", - "whois_server": "whois.nic.chanel", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/channel.json b/data/generated/tld/channel.json index 1e570d92..fa64e0b2 100644 --- a/data/generated/tld/channel.json +++ b/data/generated/tld/channel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/charity.json b/data/generated/tld/charity.json index 2241ffa2..6ddd8c13 100644 --- a/data/generated/tld/charity.json +++ b/data/generated/tld/charity.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.charity", + "whois_server": "whois.nic.charity", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2018-05-17", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.charity", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://nic.charity", - "whois_server": "whois.nic.charity", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2018-05-17", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/chase.json b/data/generated/tld/chase.json index b6499ece..04a95f7c 100644 --- a/data/generated/tld/chase.json +++ b/data/generated/tld/chase.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.jpmorganchase.com", + "rdap_server": "https://rdap.nic.chase/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.chase", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.jpmorganchase.com", - "rdap_server": "https://rdap.nic.chase/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/chat.json b/data/generated/tld/chat.json index e8b87837..490650dd 100644 --- a/data/generated/tld/chat.json +++ b/data/generated/tld/chat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.chat", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cheap.json b/data/generated/tld/cheap.json index a04b531c..7a498940 100644 --- a/data/generated/tld/cheap.json +++ b/data/generated/tld/cheap.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cheap", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/chintai.json b/data/generated/tld/chintai.json index 7fc14f6a..62c260fb 100644 --- a/data/generated/tld/chintai.json +++ b/data/generated/tld/chintai.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.chintai", + "whois_server": "whois.nic.chintai", + "rdap_server": "https://rdap.nic.chintai/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.chintai", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.chintai", - "whois_server": "whois.nic.chintai", - "rdap_server": "https://rdap.nic.chintai/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/christmas.json b/data/generated/tld/christmas.json index b3ff6769..a5594558 100644 --- a/data/generated/tld/christmas.json +++ b/data/generated/tld/christmas.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.christmas", + "whois_server": "whois.nic.christmas", + "rdap_server": "https://rdap.centralnic.com/christmas/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.christmas", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.christmas", - "whois_server": "whois.nic.christmas", - "rdap_server": "https://rdap.centralnic.com/christmas/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/chrome.json b/data/generated/tld/chrome.json index cb6381a7..7ddbffed 100644 --- a/data/generated/tld/chrome.json +++ b/data/generated/tld/chrome.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,34 +152,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/church.json b/data/generated/tld/church.json index 1f38b9c5..b9b59cbe 100644 --- a/data/generated/tld/church.json +++ b/data/generated/tld/church.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.church", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ci.json b/data/generated/tld/ci.json index ff28b1c8..3d30c27a 100644 --- a/data/generated/tld/ci.json +++ b/data/generated/tld/ci.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)" } }, + "registry_url": "https://registry.nic.ci/login.jsp", + "whois_server": "whois.nic.ci", + "tld_created": "1995-02-14", + "tld_updated": [ + "2025-05-12" + ], + "annotations": { + "country_name_iso": "Côte d'Ivoire", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any.nic.ci", @@ -80,8 +98,8 @@ "ipv4": [ { "ip": "196.49.0.84", - "asn": 329666, - "as_org": "CIVIX_Management", + "asn": 36946, + "as_org": "CIVIX", "as_country": "CI" } ], @@ -106,24 +124,6 @@ } ] } - ], - "registry_url": "https://registry.nic.ci/login.jsp", - "whois_server": "whois.nic.ci", - "tld_created": "1995-02-14", - "tld_updated": [ - "2025-05-12" - ], - "annotations": { - "country_name_iso": "Côte d'Ivoire", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cipriani.json b/data/generated/tld/cipriani.json index a7d783a9..2934f6f8 100644 --- a/data/generated/tld/cipriani.json +++ b/data/generated/tld/cipriani.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.cipriani.com/", + "whois_server": "whois.nic.cipriani", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cipriani", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.cipriani.com/", - "whois_server": "whois.nic.cipriani", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/circle.json b/data/generated/tld/circle.json index 3cb7210b..e1b4a928 100644 --- a/data/generated/tld/circle.json +++ b/data/generated/tld/circle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.circle", + "rdap_server": "https://rdap.nominet.uk/circle/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-04-20" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.circle", "ipv4": [ { "ip": "213.248.218.64", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.82.64", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "http://www.nic.circle", - "rdap_server": "https://rdap.nominet.uk/circle/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-04-20" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cisco.json b/data/generated/tld/cisco.json index 8e605adc..9551819b 100644 --- a/data/generated/tld/cisco.json +++ b/data/generated/tld/cisco.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.cisco.com", + "rdap_server": "https://rdap.nic.cisco/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cisco", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.cisco.com", - "rdap_server": "https://rdap.nic.cisco/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/citadel.json b/data/generated/tld/citadel.json index 61cfbbaf..350ae556 100644 --- a/data/generated/tld/citadel.json +++ b/data/generated/tld/citadel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.citadel.com", + "whois_server": "whois.nic.citadel", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.citadel", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.citadel.com", - "whois_server": "whois.nic.citadel", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/citi.json b/data/generated/tld/citi.json index 243585c0..46e8ef1f 100644 --- a/data/generated/tld/citi.json +++ b/data/generated/tld/citi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.citigroup.com", + "rdap_server": "https://rdap.nic.citi/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.citi", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.citigroup.com", - "rdap_server": "https://rdap.nic.citi/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/citic.json b/data/generated/tld/citic.json index c1af05ec..6cd59242 100644 --- a/data/generated/tld/citic.json +++ b/data/generated/tld/citic.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,25 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/citic", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-01-03" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,25 +144,6 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/citic", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-01-03" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/city.json b/data/generated/tld/city.json index f3453182..be7eae50 100644 --- a/data/generated/tld/city.json +++ b/data/generated/tld/city.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.city", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ck.json b/data/generated/tld/ck.json index c9e58a36..bb1e49a2 100644 --- a/data/generated/tld/ck.json +++ b/data/generated/tld/ck.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Bluesky Cook Islands" } }, + "registry_url": "http://www.vodafone.co.ck", + "tld_created": "1995-08-08", + "tld_updated": [ + "2020-06-17" + ], + "annotations": { + "country_name_iso": "Cook Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "circa.mcs.vuw.ac.nz", @@ -66,15 +75,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.vodafone.co.ck", - "tld_created": "1995-08-08", - "tld_updated": [ - "2020-06-17" - ], - "annotations": { - "country_name_iso": "Cook Islands", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cl.json b/data/generated/tld/cl.json index c8077c94..23093c2f 100644 --- a/data/generated/tld/cl.json +++ b/data/generated/tld/cl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "NIC Chile\nUniversity of Chile" } }, + "registry_url": "http://www.nic.cl/", + "whois_server": "whois.nic.cl", + "tld_created": "1987-12-15", + "tld_updated": [ + "2021-05-28" + ], + "annotations": { + "country_name_iso": "Chile", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.cl", @@ -151,24 +169,6 @@ } ] } - ], - "registry_url": "http://www.nic.cl/", - "whois_server": "whois.nic.cl", - "tld_created": "1987-12-15", - "tld_updated": [ - "2021-05-28" - ], - "annotations": { - "country_name_iso": "Chile", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/claims.json b/data/generated/tld/claims.json index 0b2bd034..4ce27889 100644 --- a/data/generated/tld/claims.json +++ b/data/generated/tld/claims.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.claims", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cleaning.json b/data/generated/tld/cleaning.json index 208790e7..ca0e986a 100644 --- a/data/generated/tld/cleaning.json +++ b/data/generated/tld/cleaning.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cleaning", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/click.json b/data/generated/tld/click.json index 0b5742a6..451a1412 100644 --- a/data/generated/tld/click.json +++ b/data/generated/tld/click.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/clinic.json b/data/generated/tld/clinic.json index d2c27efa..281e3fe4 100644 --- a/data/generated/tld/clinic.json +++ b/data/generated/tld/clinic.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clinic", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/clinique.json b/data/generated/tld/clinique.json index 310890d3..ef30b106 100644 --- a/data/generated/tld/clinique.json +++ b/data/generated/tld/clinique.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.clinique", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.clinique", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.clinique", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/clothing.json b/data/generated/tld/clothing.json index 3e8d99e0..2d341db1 100644 --- a/data/generated/tld/clothing.json +++ b/data/generated/tld/clothing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clothing", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cloud.json b/data/generated/tld/cloud.json index 2b69d3ea..cf191603 100644 --- a/data/generated/tld/cloud.json +++ b/data/generated/tld/cloud.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://www.get.cloud", + "whois_server": "whois.nic.cloud", + "rdap_server": "https://rdap.registry.cloud/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://www.get.cloud", - "whois_server": "whois.nic.cloud", - "rdap_server": "https://rdap.registry.cloud/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/club.json b/data/generated/tld/club.json index edaa4813..c29638af 100644 --- a/data/generated/tld/club.json +++ b/data/generated/tld/club.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.club/", + "whois_server": "whois.nic.club", + "rdap_server": "https://rdap.nic.club/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.club", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://nic.club/", - "whois_server": "whois.nic.club", - "rdap_server": "https://rdap.nic.club/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/clubmed.json b/data/generated/tld/clubmed.json index ecde0c19..f122e356 100644 --- a/data/generated/tld/clubmed.json +++ b/data/generated/tld/clubmed.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.clubmed", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clubmed", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.clubmed", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cm.json b/data/generated/tld/cm.json index 4ac7cb68..d6a6d29c 100644 --- a/data/generated/tld/cm.json +++ b/data/generated/tld/cm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Agence Nationale des Technologies de l'Information et de la Communication (ANTIC)" } }, + "registry_url": "https://www.nic.cm", + "whois_server": "whois.nic.cm", + "rdap_server": "https://rdap.nic.cm/", + "tld_created": "1995-04-29", + "tld_updated": [ + "2025-07-15" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Cameroon", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "auth02.ns.uu.net", @@ -130,24 +148,6 @@ } ] } - ], - "registry_url": "https://www.nic.cm", - "whois_server": "whois.nic.cm", - "rdap_server": "https://rdap.nic.cm/", - "tld_created": "1995-04-29", - "tld_updated": [ - "2025-07-15" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Cameroon", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cn.json b/data/generated/tld/cn.json index 66a3b46a..d4f84e2a 100644 --- a/data/generated/tld/cn.json +++ b/data/generated/tld/cn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "China Internet Network Information Center (CNNIC)" } }, + "registry_url": "http://www.cnnic.cn/", + "whois_server": "whois.cnnic.cn", + "tld_created": "1990-11-28", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "country_name_iso": "China", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.cn", @@ -50,7 +72,7 @@ "ipv6": [ { "ip": "2001:dc7:1::1", - "asn": 24151, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -61,7 +83,7 @@ "ipv4": [ { "ip": "203.119.27.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -99,7 +121,7 @@ "ipv4": [ { "ip": "203.119.29.1", - "asn": 24409, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -107,7 +129,7 @@ "ipv6": [ { "ip": "2001:dc7:3::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -126,28 +148,6 @@ "ipv6": [] } ], - "registry_url": "http://www.cnnic.cn/", - "whois_server": "whois.cnnic.cn", - "tld_created": "1990-11-28", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "country_name_iso": "China", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--fiqs8s", "xn--fiqz9s" diff --git a/data/generated/tld/co.json b/data/generated/tld/co.json index c277107f..73551f0d 100644 --- a/data/generated/tld/co.json +++ b/data/generated/tld/co.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://www.registry.co", + "whois_server": "whois.registry.co", + "rdap_server": "https://rdap.registry.co/co/", + "tld_created": "1991-12-24", + "tld_updated": [ + "2026-02-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "supplemental", + "country_name_iso": "Colombia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registrydns.co", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://www.registry.co", - "whois_server": "whois.registry.co", - "rdap_server": "https://rdap.registry.co/co/", - "tld_created": "1991-12-24", - "tld_updated": [ - "2026-02-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "supplemental", - "country_name_iso": "Colombia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/coach.json b/data/generated/tld/coach.json index ccb70af5..d595804b 100644 --- a/data/generated/tld/coach.json +++ b/data/generated/tld/coach.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coach", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/codes.json b/data/generated/tld/codes.json index 0f0731ff..898e2c21 100644 --- a/data/generated/tld/codes.json +++ b/data/generated/tld/codes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.codes", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/coffee.json b/data/generated/tld/coffee.json index 42b0defe..23726e97 100644 --- a/data/generated/tld/coffee.json +++ b/data/generated/tld/coffee.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coffee", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/college.json b/data/generated/tld/college.json index 8485031d..8763eae9 100644 --- a/data/generated/tld/college.json +++ b/data/generated/tld/college.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.college/", + "whois_server": "whois.nic.college", + "rdap_server": "https://rdap.centralnic.com/college", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.college", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.college/", - "whois_server": "whois.nic.college", - "rdap_server": "https://rdap.centralnic.com/college", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/cologne.json b/data/generated/tld/cologne.json index d7f67032..300d277a 100644 --- a/data/generated/tld/cologne.json +++ b/data/generated/tld/cologne.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.koeln", + "whois_server": "whois.ryce-rsp.com", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -86,29 +109,6 @@ } ] } - ], - "registry_url": "https://www.nic.koeln", - "whois_server": "whois.ryce-rsp.com", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/com.json b/data/generated/tld/com.json index d267b844..7d6d0205 100644 --- a/data/generated/tld/com.json +++ b/data/generated/tld/com.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.verisign-grs.com", + "rdap_server": "https://rdap.verisign.com/com/v1/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.gtld-servers.net", @@ -53,7 +80,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -61,7 +88,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -72,7 +99,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -80,7 +107,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -91,7 +118,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -99,7 +126,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -110,7 +137,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118,7 +145,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -213,8 +240,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -232,8 +259,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -251,8 +278,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -270,39 +297,12 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.verisign-grs.com", - "rdap_server": "https://rdap.verisign.com/com/v1/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/commbank.json b/data/generated/tld/commbank.json index 3ea4cf2d..efe156c3 100644 --- a/data/generated/tld/commbank.json +++ b/data/generated/tld/commbank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.commbank", + "rdap_server": "https://rdap.nic.commbank/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.commbank", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.commbank", - "rdap_server": "https://rdap.nic.commbank/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/community.json b/data/generated/tld/community.json index 41be878b..fe072886 100644 --- a/data/generated/tld/community.json +++ b/data/generated/tld/community.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.community", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/company.json b/data/generated/tld/company.json index 02aba45b..5234fdbb 100644 --- a/data/generated/tld/company.json +++ b/data/generated/tld/company.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.company", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/compare.json b/data/generated/tld/compare.json index 0fb6ddb6..d020d459 100644 --- a/data/generated/tld/compare.json +++ b/data/generated/tld/compare.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.compare/", + "whois_server": "whois.nic.compare", + "rdap_server": "https://rdap.nic.compare/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.compare", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.compare/", - "whois_server": "whois.nic.compare", - "rdap_server": "https://rdap.nic.compare/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/computer.json b/data/generated/tld/computer.json index c9a54971..e3624e8c 100644 --- a/data/generated/tld/computer.json +++ b/data/generated/tld/computer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.computer", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/comsec.json b/data/generated/tld/comsec.json index 1941ebdf..87e9a477 100644 --- a/data/generated/tld/comsec.json +++ b/data/generated/tld/comsec.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,22 +28,49 @@ "date_removed": null } }, + "whois_server": "whois.nic.comsec", + "rdap_server": "https://tld-rdap.verisign.com/comsec/v1/", + "tld_created": "2015-10-08", + "tld_updated": [ + "2026-03-11" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -72,16 +99,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -105,33 +132,6 @@ } ] } - ], - "whois_server": "whois.nic.comsec", - "rdap_server": "https://tld-rdap.verisign.com/comsec/v1/", - "tld_created": "2015-10-08", - "tld_updated": [ - "2026-03-11" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/condos.json b/data/generated/tld/condos.json index adceaba7..8ace4bd7 100644 --- a/data/generated/tld/condos.json +++ b/data/generated/tld/condos.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.condos", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/construction.json b/data/generated/tld/construction.json index 43a2a76f..de981928 100644 --- a/data/generated/tld/construction.json +++ b/data/generated/tld/construction.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.construction", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/consulting.json b/data/generated/tld/consulting.json index 4ec0d204..ba7328db 100644 --- a/data/generated/tld/consulting.json +++ b/data/generated/tld/consulting.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.consulting", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/contact.json b/data/generated/tld/contact.json index 7c539372..4a84507d 100644 --- a/data/generated/tld/contact.json +++ b/data/generated/tld/contact.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.contact", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/contractors.json b/data/generated/tld/contractors.json index 6992e934..7f65a782 100644 --- a/data/generated/tld/contractors.json +++ b/data/generated/tld/contractors.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.contractors", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cooking.json b/data/generated/tld/cooking.json index 83ad239e..6e2f88fc 100644 --- a/data/generated/tld/cooking.json +++ b/data/generated/tld/cooking.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.cooking/", + "whois_server": "whois.nic.cooking", + "rdap_server": "https://rdap.nic.cooking/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cooking", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.cooking/", - "whois_server": "whois.nic.cooking", - "rdap_server": "https://rdap.nic.cooking/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cool.json b/data/generated/tld/cool.json index 297d54c9..ab288d56 100644 --- a/data/generated/tld/cool.json +++ b/data/generated/tld/cool.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cool", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/coop.json b/data/generated/tld/coop.json index bf7867d4..076a1c18 100644 --- a/data/generated/tld/coop.json +++ b/data/generated/tld/coop.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,36 @@ "date_removed": null } }, + "registry_url": "http://www.nic.coop", + "whois_server": "whois.nic.coop", + "rdap_server": "https://rdap.registry.coop/rdap/", + "tld_created": "2001-12-15", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "DotCooperation", + "iana_sponsor_slug": "dot-cooperation", + "iana_admin_alias": "DotCooperation", + "iana_admin_slug": "dot-cooperation", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "DotCooperation", + "icann_registry_operator_slug": "dot-cooperation", + "rdap_source": "IANA", + "registry_agreement_types": [ + "community", + "sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,36 +135,6 @@ } ] } - ], - "registry_url": "http://www.nic.coop", - "whois_server": "whois.nic.coop", - "rdap_server": "https://rdap.registry.coop/rdap/", - "tld_created": "2001-12-15", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "DotCooperation", - "iana_sponsor_slug": "dot-cooperation", - "iana_admin_alias": "DotCooperation", - "iana_admin_slug": "dot-cooperation", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "DotCooperation", - "icann_registry_operator_slug": "dot-cooperation", - "rdap_source": "IANA", - "registry_agreement_types": [ - "community", - "sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/corsica.json b/data/generated/tld/corsica.json index 0938d9e4..b654cc3d 100644 --- a/data/generated/tld/corsica.json +++ b/data/generated/tld/corsica.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "https://puntu.corsica", + "whois_server": "whois.nic.corsica", + "rdap_server": "https://rdap.nic.corsica", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +112,6 @@ } ] } - ], - "registry_url": "https://puntu.corsica", - "whois_server": "whois.nic.corsica", - "rdap_server": "https://rdap.nic.corsica", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/country.json b/data/generated/tld/country.json index 09327285..05fe682b 100644 --- a/data/generated/tld/country.json +++ b/data/generated/tld/country.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/coupon.json b/data/generated/tld/coupon.json index 0b30f7a0..59a54f73 100644 --- a/data/generated/tld/coupon.json +++ b/data/generated/tld/coupon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.coupon", + "whois_server": "whois.nic.coupon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coupon", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://www.nic.coupon", - "whois_server": "whois.nic.coupon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/coupons.json b/data/generated/tld/coupons.json index 5355189f..fdc4e8a8 100644 --- a/data/generated/tld/coupons.json +++ b/data/generated/tld/coupons.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coupons", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/courses.json b/data/generated/tld/courses.json index f59d9110..29e657a7 100644 --- a/data/generated/tld/courses.json +++ b/data/generated/tld/courses.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.get.courses/", + "whois_server": "whois.nic.courses", + "rdap_server": "https://rdap.nic.courses/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.courses", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.get.courses/", - "whois_server": "whois.nic.courses", - "rdap_server": "https://rdap.nic.courses/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cpa.json b/data/generated/tld/cpa.json index e1946588..b83bc1c6 100644 --- a/data/generated/tld/cpa.json +++ b/data/generated/tld/cpa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "https://www.cpa.com", + "whois_server": "whois.nic.cpa", + "rdap_server": "https://rdap.nic.cpa", + "tld_created": "2019-09-11", + "tld_updated": [ + "2024-09-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cpa", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.cpa.com", - "whois_server": "whois.nic.cpa", - "rdap_server": "https://rdap.nic.cpa", - "tld_created": "2019-09-11", - "tld_updated": [ - "2024-09-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cr.json b/data/generated/tld/cr.json index 9a5a770d..02afdb65 100644 --- a/data/generated/tld/cr.json +++ b/data/generated/tld/cr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "National Academy of Sciences Academia Nacional de Ciencias" } }, + "registry_url": "http://www.nic.cr/", + "whois_server": "whois.nic.cr", + "rdap_server": "https://rdap.nic.cr/", + "tld_created": "1990-09-10", + "tld_updated": [ + "2026-02-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Costa Rica", + "as_org_aliases": [ + "CIRA", + "DENIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -132,30 +156,6 @@ } ] } - ], - "registry_url": "http://www.nic.cr/", - "whois_server": "whois.nic.cr", - "rdap_server": "https://rdap.nic.cr/", - "tld_created": "1990-09-10", - "tld_updated": [ - "2026-02-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Costa Rica", - "as_org_aliases": [ - "CIRA", - "DENIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/credit.json b/data/generated/tld/credit.json index 93c4f7cf..fd704969 100644 --- a/data/generated/tld/credit.json +++ b/data/generated/tld/credit.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.credit", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/creditcard.json b/data/generated/tld/creditcard.json index 5b3ea4a3..8e1de587 100644 --- a/data/generated/tld/creditcard.json +++ b/data/generated/tld/creditcard.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.creditcard", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/creditunion.json b/data/generated/tld/creditunion.json index b13c2eaf..4dcb9c5d 100644 --- a/data/generated/tld/creditunion.json +++ b/data/generated/tld/creditunion.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.identity.coop/creditunion", + "whois_server": "whois.nic.creditunion", + "rdap_server": "https://rdap.registry.coop/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "DotCooperation", + "iana_sponsor_slug": "dot-cooperation", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "DotCooperation", + "icann_registry_operator_slug": "dot-cooperation", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.identity.coop/creditunion", - "whois_server": "whois.nic.creditunion", - "rdap_server": "https://rdap.registry.coop/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "DotCooperation", - "iana_sponsor_slug": "dot-cooperation", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "DotCooperation", - "icann_registry_operator_slug": "dot-cooperation", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/cricket.json b/data/generated/tld/cricket.json index 11bf1a8c..011cd896 100644 --- a/data/generated/tld/cricket.json +++ b/data/generated/tld/cricket.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.cricket", + "whois_server": "whois.nic.cricket", + "rdap_server": "https://rdap.nic.cricket/", + "tld_created": "2014-11-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cricket", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.cricket", - "whois_server": "whois.nic.cricket", - "rdap_server": "https://rdap.nic.cricket/", - "tld_created": "2014-11-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/crown.json b/data/generated/tld/crown.json index f60e25f8..f9973ca2 100644 --- a/data/generated/tld/crown.json +++ b/data/generated/tld/crown.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.crown.com/", + "whois_server": "whois.nic.crown", + "rdap_server": "https://rdap.crown.fury.ca/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2026-01-22" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.crown", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "http://www.crown.com/", - "whois_server": "whois.nic.crown", - "rdap_server": "https://rdap.crown.fury.ca/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2026-01-22" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] } } diff --git a/data/generated/tld/crs.json b/data/generated/tld/crs.json index 02235fcc..c16f0c23 100644 --- a/data/generated/tld/crs.json +++ b/data/generated/tld/crs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "whois_server": "whois.nic.crs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.crs", @@ -105,27 +126,6 @@ } ] } - ], - "whois_server": "whois.nic.crs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cruise.json b/data/generated/tld/cruise.json index c3d8b6c4..1cd396ae 100644 --- a/data/generated/tld/cruise.json +++ b/data/generated/tld/cruise.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.vikingrivercruises.com", + "whois_server": "whois.nic.cruise", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-10-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cruise", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.vikingrivercruises.com", - "whois_server": "whois.nic.cruise", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-10-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cruises.json b/data/generated/tld/cruises.json index 503e5753..aa956bd9 100644 --- a/data/generated/tld/cruises.json +++ b/data/generated/tld/cruises.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cruises", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/cu.json b/data/generated/tld/cu.json index bd6e94af..0bb0d2fa 100644 --- a/data/generated/tld/cu.json +++ b/data/generated/tld/cu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "CENIAInternet" } }, + "registry_url": "http://www.nic.cu", + "tld_created": "1992-06-03", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Cuba", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cu.cctld.authdns.ripe.net", @@ -92,8 +101,8 @@ "ipv4": [ { "ip": "204.59.1.222", - "asn": 16509, - "as_org": "AMAZON-02", + "asn": 51964, + "as_org": "ORANGE-BUSINESS-SERVICES-IPSN-ASN", "as_country": "US" } ], @@ -118,21 +127,6 @@ } ] } - ], - "registry_url": "http://www.nic.cu", - "tld_created": "1992-06-03", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Cuba", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cuisinella.json b/data/generated/tld/cuisinella.json index a5bdebda..06c97ca6 100644 --- a/data/generated/tld/cuisinella.json +++ b/data/generated/tld/cuisinella.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.cuisinella/", + "whois_server": "whois.nic.cuisinella", + "rdap_server": "https://rdap.nic.cuisinella/", + "tld_created": "2014-06-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cuisinella", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.cuisinella/", - "whois_server": "whois.nic.cuisinella", - "rdap_server": "https://rdap.nic.cuisinella/", - "tld_created": "2014-06-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/cv.json b/data/generated/tld/cv.json index 8984e528..91bb247b 100644 --- a/data/generated/tld/cv.json +++ b/data/generated/tld/cv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Associação DNS.PT" } }, + "registry_url": "http://www.dns.cv/", + "whois_server": "whois.nic.cv", + "rdap_server": "https://rdap.nic.cv", + "tld_created": "1996-10-21", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Cabo Verde", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyc.dnsnode.net", @@ -87,24 +105,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.dns.cv/", - "whois_server": "whois.nic.cv", - "rdap_server": "https://rdap.nic.cv", - "tld_created": "1996-10-21", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Cabo Verde", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cw.json b/data/generated/tld/cw.json index 9ac80197..63ffbf55 100644 --- a/data/generated/tld/cw.json +++ b/data/generated/tld/cw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "University of Curacao" } }, + "registry_url": "http://www.uoc.cw/cw-registry", + "tld_created": "2010-12-20", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "Curaçao", + "as_org_aliases": [ + "SIDN" + ], + "as_org_slugs": [ + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cw.cctld.authdns.ripe.net", @@ -135,21 +150,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.uoc.cw/cw-registry", - "tld_created": "2010-12-20", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "Curaçao", - "as_org_aliases": [ - "SIDN" - ], - "as_org_slugs": [ - "sidn" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cx.json b/data/generated/tld/cx.json index be7cf8cc..a8f3725d 100644 --- a/data/generated/tld/cx.json +++ b/data/generated/tld/cx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Indian Ocean Territories Telecom Pty Ltd" } }, + "registry_url": "https://cxda.org.cx", + "whois_server": "whois.nic.cx", + "rdap_server": "https://rdap.nic.cx", + "tld_created": "1997-04-24", + "tld_updated": [ + "2024-02-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Christmas Island", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.cx", @@ -68,24 +86,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://cxda.org.cx", - "whois_server": "whois.nic.cx", - "rdap_server": "https://rdap.nic.cx", - "tld_created": "1997-04-24", - "tld_updated": [ - "2024-02-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Christmas Island", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cy.json b/data/generated/tld/cy.json index ee068297..7c017f6a 100644 --- a/data/generated/tld/cy.json +++ b/data/generated/tld/cy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "University of Cyprus" } }, + "registry_url": "http://www.nic.cy", + "tld_created": "1994-07-26", + "tld_updated": [ + "2024-08-13" + ], + "annotations": { + "country_name_iso": "Cyprus", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cy-ns.anycast.pch.net", @@ -118,23 +135,6 @@ } ] } - ], - "registry_url": "http://www.nic.cy", - "tld_created": "1994-07-26", - "tld_updated": [ - "2024-08-13" - ], - "annotations": { - "country_name_iso": "Cyprus", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/cymru.json b/data/generated/tld/cymru.json index 40360ab1..df6c5585 100644 --- a/data/generated/tld/cymru.json +++ b/data/generated/tld/cymru.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,45 @@ "date_removed": null } }, + "registry_url": "https://eincartrefarlein.cymru/", + "rdap_server": "https://rdap.nominet.uk/cymru/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Nominet", + "icann_registry_operator_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "welsh" + }, "nameservers": [ { "hostname": "dns1.nic.cymru", "ipv4": [ { "ip": "213.248.219.3", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +84,8 @@ "ipv4": [ { "ip": "103.49.83.3", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,37 +212,6 @@ } ] } - ], - "registry_url": "https://eincartrefarlein.cymru/", - "rdap_server": "https://rdap.nominet.uk/cymru/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Nominet", - "icann_registry_operator_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "welsh" - } + ] } } diff --git a/data/generated/tld/cyou.json b/data/generated/tld/cyou.json index 9165e357..f93b4c1f 100644 --- a/data/generated/tld/cyou.json +++ b/data/generated/tld/cyou.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://cy.changyou.com", + "whois_server": "whois.nic.cyou", + "rdap_server": "https://rdap.centralnic.com/cyou/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cyou", @@ -105,32 +131,6 @@ } ] } - ], - "registry_url": "http://cy.changyou.com", - "whois_server": "whois.nic.cyou", - "rdap_server": "https://rdap.centralnic.com/cyou/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/cz.json b/data/generated/tld/cz.json index f9d32b23..bea5c606 100644 --- a/data/generated/tld/cz.json +++ b/data/generated/tld/cz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "CZ.NIC, z.s.p.o." } }, + "registry_url": "http://www.nic.cz/", + "whois_server": "whois.nic.cz", + "rdap_server": "https://rdap.nic.cz", + "tld_created": "1993-01-13", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Czechia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.nic.cz", @@ -94,24 +112,6 @@ } ] } - ], - "registry_url": "http://www.nic.cz/", - "whois_server": "whois.nic.cz", - "rdap_server": "https://rdap.nic.cz", - "tld_created": "1993-01-13", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Czechia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/dad.json b/data/generated/tld/dad.json index f44f3174..948c8d12 100644 --- a/data/generated/tld/dad.json +++ b/data/generated/tld/dad.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/dance.json b/data/generated/tld/dance.json index 439ffb53..2fe09d31 100644 --- a/data/generated/tld/dance.json +++ b/data/generated/tld/dance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dance", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/data.json b/data/generated/tld/data.json index e1e78351..68490949 100644 --- a/data/generated/tld/data.json +++ b/data/generated/tld/data.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.data", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.data", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/date.json b/data/generated/tld/date.json index 8aa7c042..8b9d2f9f 100644 --- a/data/generated/tld/date.json +++ b/data/generated/tld/date.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.date", + "whois_server": "whois.nic.date", + "rdap_server": "https://rdap.nic.date/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.date", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.date", - "whois_server": "whois.nic.date", - "rdap_server": "https://rdap.nic.date/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/dating.json b/data/generated/tld/dating.json index a144c1ab..1818522b 100644 --- a/data/generated/tld/dating.json +++ b/data/generated/tld/dating.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dating", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/datsun.json b/data/generated/tld/datsun.json index 14d6db8a..94dc3a3e 100644 --- a/data/generated/tld/datsun.json +++ b/data/generated/tld/datsun.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/day.json b/data/generated/tld/day.json index 11fbdad6..b09cf0f4 100644 --- a/data/generated/tld/day.json +++ b/data/generated/tld/day.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/dclk.json b/data/generated/tld/dclk.json index b8f5cb69..87c8c6bd 100644 --- a/data/generated/tld/dclk.json +++ b/data/generated/tld/dclk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/dds.json b/data/generated/tld/dds.json index 912500f1..52cfd373 100644 --- a/data/generated/tld/dds.json +++ b/data/generated/tld/dds.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.dds/", + "whois_server": "whois.nic.dds", + "rdap_server": "https://rdap.nic.dds/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dds", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.dds/", - "whois_server": "whois.nic.dds", - "rdap_server": "https://rdap.nic.dds/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/de.json b/data/generated/tld/de.json index 9155576f..27dd7703 100644 --- a/data/generated/tld/de.json +++ b/data/generated/tld/de.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "DENIC eG" } }, + "registry_url": "http://www.denic.de/", + "whois_server": "whois.denic.de", + "rdap_server": "https://rdap.denic.de/", + "tld_created": "1986-11-05", + "tld_updated": [ + "2023-04-04" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Germany", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.de", @@ -42,8 +60,8 @@ "ipv4": [ { "ip": "81.91.164.5", - "asn": 31529, - "as_org": "DENIC-ANYCAST-AS DNS anycast AS object for .DE DNS service", + "asn": 8763, + "as_org": "DENIC-AS Theodor-Stern-Kai 1", "as_country": "DE" } ], @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.denic.de/", - "whois_server": "whois.denic.de", - "rdap_server": "https://rdap.denic.de/", - "tld_created": "1986-11-05", - "tld_updated": [ - "2023-04-04" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Germany", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/deal.json b/data/generated/tld/deal.json index 9d6b14ad..43f9c236 100644 --- a/data/generated/tld/deal.json +++ b/data/generated/tld/deal.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,41 @@ "date_removed": null } }, + "registry_url": "http://www.nic.deal", + "rdap_server": "https://rdap.nominet.uk/deal/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.deal", "ipv4": [ { "ip": "213.248.218.65", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +80,8 @@ "ipv4": [ { "ip": "103.49.82.65", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,33 +208,6 @@ } ] } - ], - "registry_url": "http://www.nic.deal", - "rdap_server": "https://rdap.nominet.uk/deal/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/dealer.json b/data/generated/tld/dealer.json index 3366cae3..aef27ea1 100644 --- a/data/generated/tld/dealer.json +++ b/data/generated/tld/dealer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://get.dealer", + "whois_server": "whois.nic.dealer", + "rdap_server": "https://rdap.centralnic.com/dealer/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.dealer", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://get.dealer", - "whois_server": "whois.nic.dealer", - "rdap_server": "https://rdap.centralnic.com/dealer/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/deals.json b/data/generated/tld/deals.json index c0a2bda9..9139e36e 100644 --- a/data/generated/tld/deals.json +++ b/data/generated/tld/deals.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.deals", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/degree.json b/data/generated/tld/degree.json index cc6647cd..64ed5259 100644 --- a/data/generated/tld/degree.json +++ b/data/generated/tld/degree.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.degree", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/delivery.json b/data/generated/tld/delivery.json index fac2dcc5..99d41f02 100644 --- a/data/generated/tld/delivery.json +++ b/data/generated/tld/delivery.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.delivery", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dell.json b/data/generated/tld/dell.json index 20f73386..2acc06af 100644 --- a/data/generated/tld/dell.json +++ b/data/generated/tld/dell.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.dell.com", + "rdap_server": "https://rdap.nic.dell/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dell", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.dell.com", - "rdap_server": "https://rdap.nic.dell/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/deloitte.json b/data/generated/tld/deloitte.json index a2ff5f68..4faaad00 100644 --- a/data/generated/tld/deloitte.json +++ b/data/generated/tld/deloitte.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.deloitte", + "whois_server": "whois.nic.deloitte", + "rdap_server": "https://rdap.centralnic.com/deloitte", + "tld_created": "2015-12-23", + "tld_updated": [ + "2023-11-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.deloitte", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://nic.deloitte", - "whois_server": "whois.nic.deloitte", - "rdap_server": "https://rdap.centralnic.com/deloitte", - "tld_created": "2015-12-23", - "tld_updated": [ - "2023-11-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/delta.json b/data/generated/tld/delta.json index c4842ffe..0baff4d8 100644 --- a/data/generated/tld/delta.json +++ b/data/generated/tld/delta.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.delta.com", + "whois_server": "whois.nic.delta", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2023-08-07" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.delta", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.delta.com", - "whois_server": "whois.nic.delta", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2023-08-07" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/democrat.json b/data/generated/tld/democrat.json index 06176b0d..6316c40b 100644 --- a/data/generated/tld/democrat.json +++ b/data/generated/tld/democrat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.democrat", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dental.json b/data/generated/tld/dental.json index 370eb795..3a2e96c7 100644 --- a/data/generated/tld/dental.json +++ b/data/generated/tld/dental.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dental", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dentist.json b/data/generated/tld/dentist.json index 8e7ecb60..6b40ea29 100644 --- a/data/generated/tld/dentist.json +++ b/data/generated/tld/dentist.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dentist", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/desi.json b/data/generated/tld/desi.json index 798b0172..8674f150 100644 --- a/data/generated/tld/desi.json +++ b/data/generated/tld/desi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", + "rdap_server": "https://rdap.nominet.uk/desi/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "cultural_affiliation": "desi" + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", - "rdap_server": "https://rdap.nominet.uk/desi/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "cultural_affiliation": "desi" - } + ] } } diff --git a/data/generated/tld/design.json b/data/generated/tld/design.json index 7577ebcc..dbe05db7 100644 --- a/data/generated/tld/design.json +++ b/data/generated/tld/design.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.design/", + "whois_server": "whois.nic.design", + "rdap_server": "https://rdap.nic.design/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.design", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.design/", - "whois_server": "whois.nic.design", - "rdap_server": "https://rdap.nic.design/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/dev.json b/data/generated/tld/dev.json index 9450f92b..cfc36f32 100644 --- a/data/generated/tld/dev.json +++ b/data/generated/tld/dev.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/dhl.json b/data/generated/tld/dhl.json index 288ef064..723af0b2 100644 --- a/data/generated/tld/dhl.json +++ b/data/generated/tld/dhl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.centralnic.com/dhl", + "tld_created": "2016-05-26", + "tld_updated": [ + "2023-11-27" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.dhl", @@ -105,27 +126,6 @@ } ] } - ], - "rdap_server": "https://rdap.centralnic.com/dhl", - "tld_created": "2016-05-26", - "tld_updated": [ - "2023-11-27" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/diamonds.json b/data/generated/tld/diamonds.json index 80d49a5a..06328ab7 100644 --- a/data/generated/tld/diamonds.json +++ b/data/generated/tld/diamonds.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.diamonds", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/diet.json b/data/generated/tld/diet.json index 7a8967a3..efb9332a 100644 --- a/data/generated/tld/diet.json +++ b/data/generated/tld/diet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.diet", + "whois_server": "whois.nic.diet", + "rdap_server": "https://rdap.centralnic.com/diet/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.diet", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.diet", - "whois_server": "whois.nic.diet", - "rdap_server": "https://rdap.centralnic.com/diet/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/digital.json b/data/generated/tld/digital.json index da01eec4..90bef41a 100644 --- a/data/generated/tld/digital.json +++ b/data/generated/tld/digital.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.digital", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/direct.json b/data/generated/tld/direct.json index 208b42cb..27962d59 100644 --- a/data/generated/tld/direct.json +++ b/data/generated/tld/direct.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.direct", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/directory.json b/data/generated/tld/directory.json index 1c52d5ad..b34ddafe 100644 --- a/data/generated/tld/directory.json +++ b/data/generated/tld/directory.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.directory", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/discount.json b/data/generated/tld/discount.json index ada39eb9..ff3ef662 100644 --- a/data/generated/tld/discount.json +++ b/data/generated/tld/discount.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.discount", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/discover.json b/data/generated/tld/discover.json index c1e94ae7..8a72051f 100644 --- a/data/generated/tld/discover.json +++ b/data/generated/tld/discover.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.discover.com/", + "whois_server": "whois.nic.discover", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.discover", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "https://www.discover.com/", - "whois_server": "whois.nic.discover", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dish.json b/data/generated/tld/dish.json index 9e5e2114..6a7a00cc 100644 --- a/data/generated/tld/dish.json +++ b/data/generated/tld/dish.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.dish", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.dish", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/diy.json b/data/generated/tld/diy.json index 14efaea5..764f1045 100644 --- a/data/generated/tld/diy.json +++ b/data/generated/tld/diy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/dj.json b/data/generated/tld/dj.json index 6dd44a74..6b2fd4ef 100644 --- a/data/generated/tld/dj.json +++ b/data/generated/tld/dj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Djibouti Telecom S.A" } }, + "registry_url": "http://www.nic.dj", + "tld_created": "1996-05-22", + "tld_updated": [ + "2024-12-25" + ], + "annotations": { + "country_name_iso": "Djibouti", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.djibtelecom.dj", @@ -54,21 +69,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.dj", - "tld_created": "1996-05-22", - "tld_updated": [ - "2024-12-25" - ], - "annotations": { - "country_name_iso": "Djibouti", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/dk.json b/data/generated/tld/dk.json index f5c98731..463731cd 100644 --- a/data/generated/tld/dk.json +++ b/data/generated/tld/dk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Punktum dk A/S" } }, + "registry_url": "https://punktum.dk/", + "whois_server": "whois.punktum.dk", + "tld_created": "1987-07-14", + "tld_updated": [ + "2025-10-30" + ], + "annotations": { + "country_name_iso": "Denmark", + "as_org_aliases": [ + "CIRA", + "CZNIC", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "cznic", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.nic.dk", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "https://punktum.dk/", - "whois_server": "whois.punktum.dk", - "tld_created": "1987-07-14", - "tld_updated": [ - "2025-10-30" - ], - "annotations": { - "country_name_iso": "Denmark", - "as_org_aliases": [ - "CIRA", - "CZNIC", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "cznic", - "sidn" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/dm.json b/data/generated/tld/dm.json index 19093b7a..765ad887 100644 --- a/data/generated/tld/dm.json +++ b/data/generated/tld/dm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "DotDM Corporation" } }, + "registry_url": "http://www.nic.dm", + "whois_server": "whois.dmdomains.dm", + "tld_created": "1991-09-03", + "tld_updated": [ + "2024-05-29" + ], + "annotations": { + "country_name_iso": "Dominica", + "as_org_aliases": [ + "Community DNS", + "Tucows" + ], + "as_org_slugs": [ + "community-dns", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.blacknightsolutions.com", @@ -125,24 +143,6 @@ } ] } - ], - "registry_url": "http://www.nic.dm", - "whois_server": "whois.dmdomains.dm", - "tld_created": "1991-09-03", - "tld_updated": [ - "2024-05-29" - ], - "annotations": { - "country_name_iso": "Dominica", - "as_org_aliases": [ - "Community DNS", - "Tucows" - ], - "as_org_slugs": [ - "community-dns", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/dnp.json b/data/generated/tld/dnp.json index 12196879..27f351af 100644 --- a/data/generated/tld/dnp.json +++ b/data/generated/tld/dnp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/", + "whois_server": "whois.nic.dnp", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2019-08-28" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/", - "whois_server": "whois.nic.dnp", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2019-08-28" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/do.json b/data/generated/tld/do.json index fbc97f8e..e9bc89a0 100644 --- a/data/generated/tld/do.json +++ b/data/generated/tld/do.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Pontificia Universidad Catolica Madre y Maestra" } }, + "registry_url": "http://www.nic.do", + "whois_server": "whois.nic.do", + "tld_created": "1991-08-25", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Dominican Republic", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -151,24 +169,6 @@ } ] } - ], - "registry_url": "http://www.nic.do", - "whois_server": "whois.nic.do", - "tld_created": "1991-08-25", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Dominican Republic", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/docs.json b/data/generated/tld/docs.json index 191c7a17..18863837 100644 --- a/data/generated/tld/docs.json +++ b/data/generated/tld/docs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/doctor.json b/data/generated/tld/doctor.json index 13b82dca..e0a74b80 100644 --- a/data/generated/tld/doctor.json +++ b/data/generated/tld/doctor.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.doctor", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dog.json b/data/generated/tld/dog.json index ff074fe4..b0aaebb4 100644 --- a/data/generated/tld/dog.json +++ b/data/generated/tld/dog.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dog", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/domains.json b/data/generated/tld/domains.json index d1ea5c04..752ef597 100644 --- a/data/generated/tld/domains.json +++ b/data/generated/tld/domains.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.domains", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/dot.json b/data/generated/tld/dot.json index b026c31f..b2b7d23a 100644 --- a/data/generated/tld/dot.json +++ b/data/generated/tld/dot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,36 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.dot", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_admin_alias": "Dish Network", + "iana_admin_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,36 +135,6 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.dot", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_admin_alias": "Dish Network", - "iana_admin_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/download.json b/data/generated/tld/download.json index eaecbabb..98040436 100644 --- a/data/generated/tld/download.json +++ b/data/generated/tld/download.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.download", + "whois_server": "whois.nic.download", + "rdap_server": "https://rdap.nic.download/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.download", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.download", - "whois_server": "whois.nic.download", - "rdap_server": "https://rdap.nic.download/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/drive.json b/data/generated/tld/drive.json index ddf75b99..44493882 100644 --- a/data/generated/tld/drive.json +++ b/data/generated/tld/drive.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/dtv.json b/data/generated/tld/dtv.json index 26eeeecc..31edc79c 100644 --- a/data/generated/tld/dtv.json +++ b/data/generated/tld/dtv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.dtv", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.dtv", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/dubai.json b/data/generated/tld/dubai.json index 8773a46f..6aad5dec 100644 --- a/data/generated/tld/dubai.json +++ b/data/generated/tld/dubai.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.dubai", + "rdap_server": "https://rdap.nic.dubai/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2020-05-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -105,26 +125,6 @@ } ] } - ], - "whois_server": "whois.nic.dubai", - "rdap_server": "https://rdap.nic.dubai/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2020-05-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/dupont.json b/data/generated/tld/dupont.json index 63fdbf02..555d3391 100644 --- a/data/generated/tld/dupont.json +++ b/data/generated/tld/dupont.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.dupont.com", + "rdap_server": "https://rdap.nic.dupont/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-06-04" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dupont", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.dupont.com", - "rdap_server": "https://rdap.nic.dupont/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-06-04" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/durban.json b/data/generated/tld/durban.json index e9402b85..95d99f15 100644 --- a/data/generated/tld/durban.json +++ b/data/generated/tld/durban.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.registry.net.za", + "whois_server": "whois.nic.durban", + "rdap_server": "https://rdap.nic.durban/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -86,33 +113,6 @@ } ] } - ], - "registry_url": "http://www.registry.net.za", - "whois_server": "whois.nic.durban", - "rdap_server": "https://rdap.nic.durban/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/dvag.json b/data/generated/tld/dvag.json index 57cddf46..8b751388 100644 --- a/data/generated/tld/dvag.json +++ b/data/generated/tld/dvag.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.dvag", + "rdap_server": "https://rdap.centralnic.com/dvag", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.dvag", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.dvag", - "rdap_server": "https://rdap.centralnic.com/dvag", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/dvr.json b/data/generated/tld/dvr.json index a91c8f03..028c36d8 100644 --- a/data/generated/tld/dvr.json +++ b/data/generated/tld/dvr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.echostar.com", + "whois_server": "whois.nic.dvr", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-09-22", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.echostar.com", - "whois_server": "whois.nic.dvr", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-09-22", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/dz.json b/data/generated/tld/dz.json index 07224c03..698a56e0 100644 --- a/data/generated/tld/dz.json +++ b/data/generated/tld/dz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "CERIST" } }, + "registry_url": "http://www.nic.dz", + "whois_server": "whois.nic.dz", + "tld_created": "1994-01-03", + "tld_updated": [ + "2025-10-10" + ], + "annotations": { + "country_name_iso": "Algeria", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-dz.afrinic.net", @@ -126,24 +144,6 @@ ] } ], - "registry_url": "http://www.nic.dz", - "whois_server": "whois.nic.dz", - "tld_created": "1994-01-03", - "tld_updated": [ - "2025-10-10" - ], - "annotations": { - "country_name_iso": "Algeria", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--lgbbat1ad8j" ] diff --git a/data/generated/tld/earth.json b/data/generated/tld/earth.json index 49d162b4..a31961c0 100644 --- a/data/generated/tld/earth.json +++ b/data/generated/tld/earth.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://domain.earth/", + "whois_server": "whois.nic.earth", + "rdap_server": "https://rdap.nic.earth/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.earth", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://domain.earth/", - "whois_server": "whois.nic.earth", - "rdap_server": "https://rdap.nic.earth/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/eat.json b/data/generated/tld/eat.json index 4e6e57f3..24d7518c 100644 --- a/data/generated/tld/eat.json +++ b/data/generated/tld/eat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/ec.json b/data/generated/tld/ec.json index 7999df9d..cc23d406 100644 --- a/data/generated/tld/ec.json +++ b/data/generated/tld/ec.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "ECUADORDOMAIN S.A." } }, + "registry_url": "http://www.nic.ec", + "whois_server": "whois.nic.ec", + "rdap_server": "https://rdap.registry.ec", + "tld_created": "1991-02-01", + "tld_updated": [ + "2024-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Ecuador", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -106,26 +126,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ec", - "whois_server": "whois.nic.ec", - "rdap_server": "https://rdap.registry.ec", - "tld_created": "1991-02-01", - "tld_updated": [ - "2024-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Ecuador", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/eco.json b/data/generated/tld/eco.json index 333b253c..1693280f 100644 --- a/data/generated/tld/eco.json +++ b/data/generated/tld/eco.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://go.eco", + "whois_server": "whois.nic.eco", + "rdap_server": "https://rdap.eco.fury.ca/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.eco", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "https://go.eco", - "whois_server": "whois.nic.eco", - "rdap_server": "https://rdap.eco.fury.ca/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] } } diff --git a/data/generated/tld/edeka.json b/data/generated/tld/edeka.json index 1ea4e915..92abe863 100644 --- a/data/generated/tld/edeka.json +++ b/data/generated/tld/edeka.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://edeka.de", + "whois_server": "whois.nic.edeka", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.edeka", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://edeka.de", - "whois_server": "whois.nic.edeka", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/edu.json b/data/generated/tld/edu.json index 971661f2..63b649c8 100644 --- a/data/generated/tld/edu.json +++ b/data/generated/tld/edu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "VeriSign Global Registry" } }, + "registry_url": "http://www.educause.edu/edudomain", + "whois_server": "whois.educause.edu", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.edu-servers.net", @@ -42,7 +58,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -50,7 +66,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -61,7 +77,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -69,7 +85,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -80,7 +96,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -88,7 +104,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -99,7 +115,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -107,7 +123,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -202,8 +218,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -221,8 +237,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -240,8 +256,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -259,28 +275,12 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.educause.edu/edudomain", - "whois_server": "whois.educause.edu", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/education.json b/data/generated/tld/education.json index ea118c4f..082782bf 100644 --- a/data/generated/tld/education.json +++ b/data/generated/tld/education.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.education", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ee.json b/data/generated/tld/ee.json index 1b04f62c..a8f55b90 100644 --- a/data/generated/tld/ee.json +++ b/data/generated/tld/ee.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Eesti Interneti Sihtasutus (EIS)" } }, + "registry_url": "http://www.internet.ee", + "whois_server": "whois.tld.ee", + "tld_created": "1992-06-03", + "tld_updated": [ + "2023-06-28" + ], + "annotations": { + "country_name_iso": "Estonia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.tld.ee", @@ -106,22 +122,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.internet.ee", - "whois_server": "whois.tld.ee", - "tld_created": "1992-06-03", - "tld_updated": [ - "2023-06-28" - ], - "annotations": { - "country_name_iso": "Estonia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/eg.json b/data/generated/tld/eg.json index 43c2b231..ae764ce0 100644 --- a/data/generated/tld/eg.json +++ b/data/generated/tld/eg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Egyptian Universities Network (EUN)\nSupreme Council of Universities" } }, + "registry_url": "http://www.egregistry.eg/", + "tld_created": "1990-11-30", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Egypt", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-eg.univie.ac.at", @@ -69,15 +78,6 @@ ] } ], - "registry_url": "http://www.egregistry.eg/", - "tld_created": "1990-11-30", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Egypt", - "geographic_scope": "country" - }, "idn": [ "xn--wgbh1c" ] diff --git a/data/generated/tld/email.json b/data/generated/tld/email.json index f0f8c2ca..4c0cc8c9 100644 --- a/data/generated/tld/email.json +++ b/data/generated/tld/email.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.email", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/emerck.json b/data/generated/tld/emerck.json index e513f691..051681e2 100644 --- a/data/generated/tld/emerck.json +++ b/data/generated/tld/emerck.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.emerck", + "whois_server": "whois.nic.emerck", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-11", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.emerck", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.emerck", - "whois_server": "whois.nic.emerck", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-11", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/energy.json b/data/generated/tld/energy.json index edaad566..f194f15e 100644 --- a/data/generated/tld/energy.json +++ b/data/generated/tld/energy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.energy", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/engineer.json b/data/generated/tld/engineer.json index 32001b5d..0cad51d7 100644 --- a/data/generated/tld/engineer.json +++ b/data/generated/tld/engineer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.engineer", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/engineering.json b/data/generated/tld/engineering.json index 1c255b68..a6873b53 100644 --- a/data/generated/tld/engineering.json +++ b/data/generated/tld/engineering.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.engineering", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/enterprises.json b/data/generated/tld/enterprises.json index af58750c..7d72539e 100644 --- a/data/generated/tld/enterprises.json +++ b/data/generated/tld/enterprises.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.enterprises", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/epson.json b/data/generated/tld/epson.json index 5d8978fd..8fa7ea58 100644 --- a/data/generated/tld/epson.json +++ b/data/generated/tld/epson.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.epson.com", + "whois_server": "whois.nic.epson", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.epson.com", - "whois_server": "whois.nic.epson", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/equipment.json b/data/generated/tld/equipment.json index c1ddec3d..928091b4 100644 --- a/data/generated/tld/equipment.json +++ b/data/generated/tld/equipment.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.equipment", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/er.json b/data/generated/tld/er.json index 47c5f7bb..4dc11ae5 100644 --- a/data/generated/tld/er.json +++ b/data/generated/tld/er.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,14 @@ "tech": "Eritrea Telecommunications Corporation" } }, + "tld_created": "1996-09-24", + "tld_updated": [ + "2025-10-28" + ], + "annotations": { + "country_name_iso": "Eritrea", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "er.cctld.authdns.ripe.net", @@ -61,14 +69,6 @@ ], "ipv6": [] } - ], - "tld_created": "1996-09-24", - "tld_updated": [ - "2025-10-28" - ], - "annotations": { - "country_name_iso": "Eritrea", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ericsson.json b/data/generated/tld/ericsson.json index c166efb0..d24e750c 100644 --- a/data/generated/tld/ericsson.json +++ b/data/generated/tld/ericsson.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ericsson", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ericsson", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.ericsson", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/erni.json b/data/generated/tld/erni.json index 7b4c547d..76cba6c1 100644 --- a/data/generated/tld/erni.json +++ b/data/generated/tld/erni.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.erni.ch", + "whois_server": "whois.nic.erni", + "rdap_server": "https://rdap.nic.erni/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,26 +125,6 @@ } ] } - ], - "registry_url": "http://www.erni.ch", - "whois_server": "whois.nic.erni", - "rdap_server": "https://rdap.nic.erni/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/es.json b/data/generated/tld/es.json index 2931bc37..99c621bf 100644 --- a/data/generated/tld/es.json +++ b/data/generated/tld/es.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Red.es" } }, + "registry_url": "http://www.nic.es/", + "whois_server": "whois.nic.es", + "tld_created": "1988-04-14", + "tld_updated": [ + "2025-07-11" + ], + "annotations": { + "country_name_iso": "Spain", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.es", @@ -94,22 +110,6 @@ } ] } - ], - "registry_url": "http://www.nic.es/", - "whois_server": "whois.nic.es", - "tld_created": "1988-04-14", - "tld_updated": [ - "2025-07-11" - ], - "annotations": { - "country_name_iso": "Spain", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/esq.json b/data/generated/tld/esq.json index efaf2c94..74881973 100644 --- a/data/generated/tld/esq.json +++ b/data/generated/tld/esq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/estate.json b/data/generated/tld/estate.json index ae0c4bbc..3183754c 100644 --- a/data/generated/tld/estate.json +++ b/data/generated/tld/estate.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.estate", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/et.json b/data/generated/tld/et.json index 8df40d3c..9f87d966 100644 --- a/data/generated/tld/et.json +++ b/data/generated/tld/et.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Ethio Telecom" } }, + "registry_url": "http://www.ethiotelecom.et", + "tld_created": "1995-10-15", + "tld_updated": [ + "2025-09-19" + ], + "annotations": { + "country_name_iso": "Ethiopia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.et", @@ -66,15 +75,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.ethiotelecom.et", - "tld_created": "1995-10-15", - "tld_updated": [ - "2025-09-19" - ], - "annotations": { - "country_name_iso": "Ethiopia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/eu.json b/data/generated/tld/eu.json index a56c746c..5ceb5fb4 100644 --- a/data/generated/tld/eu.json +++ b/data/generated/tld/eu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "EURid vzw" } }, + "registry_url": "http://www.eurid.eu", + "whois_server": "whois.eu", + "tld_created": "2005-04-28", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -107,24 +125,6 @@ ] } ], - "registry_url": "http://www.eurid.eu", - "whois_server": "whois.eu", - "tld_created": "2005-04-28", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "supranational" - }, "idn": [ "xn--e1a4c", "xn--qxa6a" diff --git a/data/generated/tld/eurovision.json b/data/generated/tld/eurovision.json index a7bd5849..01e6ebd3 100644 --- a/data/generated/tld/eurovision.json +++ b/data/generated/tld/eurovision.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://www.ebu.ch/", + "whois_server": "whois.nic.eurovision", + "rdap_server": "https://rdap.nic.eurovision/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "https://www.ebu.ch/", - "whois_server": "whois.nic.eurovision", - "rdap_server": "https://rdap.nic.eurovision/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/eus.json b/data/generated/tld/eus.json index 4780150c..44666c54 100644 --- a/data/generated/tld/eus.json +++ b/data/generated/tld/eus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.domeinuak.eus", + "whois_server": "whois.nic.eus", + "rdap_server": "https://rdap.nic.eus/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "basque" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.domeinuak.eus", - "whois_server": "whois.nic.eus", - "rdap_server": "https://rdap.nic.eus/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "basque" - } + ] } } diff --git a/data/generated/tld/events.json b/data/generated/tld/events.json index 5dd76a46..79293283 100644 --- a/data/generated/tld/events.json +++ b/data/generated/tld/events.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.events", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/exchange.json b/data/generated/tld/exchange.json index e60d5770..5c16ae2c 100644 --- a/data/generated/tld/exchange.json +++ b/data/generated/tld/exchange.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.exchange", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/expert.json b/data/generated/tld/expert.json index 695dbc11..518eefd4 100644 --- a/data/generated/tld/expert.json +++ b/data/generated/tld/expert.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.expert", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/exposed.json b/data/generated/tld/exposed.json index e85d8f54..0c941f68 100644 --- a/data/generated/tld/exposed.json +++ b/data/generated/tld/exposed.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.exposed", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/express.json b/data/generated/tld/express.json index b74886fe..eeffd97f 100644 --- a/data/generated/tld/express.json +++ b/data/generated/tld/express.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.express", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/extraspace.json b/data/generated/tld/extraspace.json index 95904d15..2a9df9c9 100644 --- a/data/generated/tld/extraspace.json +++ b/data/generated/tld/extraspace.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.extraspace.com", + "whois_server": "whois.nic.extraspace", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.extraspace", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.extraspace.com", - "whois_server": "whois.nic.extraspace", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fage.json b/data/generated/tld/fage.json index c96a56af..3cb6c23f 100644 --- a/data/generated/tld/fage.json +++ b/data/generated/tld/fage.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://home.fage/", + "whois_server": "whois.nic.fage", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fage", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://home.fage/", - "whois_server": "whois.nic.fage", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fail.json b/data/generated/tld/fail.json index c2bb2413..4aae1546 100644 --- a/data/generated/tld/fail.json +++ b/data/generated/tld/fail.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fail", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fairwinds.json b/data/generated/tld/fairwinds.json index bebf695b..80eb0400 100644 --- a/data/generated/tld/fairwinds.json +++ b/data/generated/tld/fairwinds.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.fairwindspartners.com", + "rdap_server": "https://rdap.nominet.uk/fairwinds/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fairwinds", "ipv4": [ { "ip": "213.248.219.135", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.135", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.fairwindspartners.com", - "rdap_server": "https://rdap.nominet.uk/fairwinds/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/faith.json b/data/generated/tld/faith.json index 0a14d3ae..704624f2 100644 --- a/data/generated/tld/faith.json +++ b/data/generated/tld/faith.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.faith", + "whois_server": "whois.nic.faith", + "rdap_server": "https://rdap.nic.faith/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.faith", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.faith", - "whois_server": "whois.nic.faith", - "rdap_server": "https://rdap.nic.faith/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/family.json b/data/generated/tld/family.json index 85bb243a..bff14fcd 100644 --- a/data/generated/tld/family.json +++ b/data/generated/tld/family.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.family", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fan.json b/data/generated/tld/fan.json index f51b5af7..2ba45413 100644 --- a/data/generated/tld/fan.json +++ b/data/generated/tld/fan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-28", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fan", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-28", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fans.json b/data/generated/tld/fans.json index dec07189..647d840d 100644 --- a/data/generated/tld/fans.json +++ b/data/generated/tld/fans.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fans/", + "whois_server": "whois.nic.fans", + "rdap_server": "https://rdap.centralnic.com/fans", + "tld_created": "2015-02-05", + "tld_updated": [ + "2023-12-07" + ], + "annotations": { + "iana_admin_alias": "ZDNS", + "iana_admin_slug": "zdns", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.fans", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.nic.fans/", - "whois_server": "whois.nic.fans", - "rdap_server": "https://rdap.centralnic.com/fans", - "tld_created": "2015-02-05", - "tld_updated": [ - "2023-12-07" - ], - "annotations": { - "iana_admin_alias": "ZDNS", - "iana_admin_slug": "zdns", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/farm.json b/data/generated/tld/farm.json index b99c7c5b..d54dee0f 100644 --- a/data/generated/tld/farm.json +++ b/data/generated/tld/farm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.farm", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/farmers.json b/data/generated/tld/farmers.json index 72bd29ef..38549b40 100644 --- a/data/generated/tld/farmers.json +++ b/data/generated/tld/farmers.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.farmers.com", + "rdap_server": "https://rdap.nic.farmers/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.farmers", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.farmers.com", - "rdap_server": "https://rdap.nic.farmers/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fashion.json b/data/generated/tld/fashion.json index 3a07aded..fa43778b 100644 --- a/data/generated/tld/fashion.json +++ b/data/generated/tld/fashion.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fashion/", + "whois_server": "whois.nic.fashion", + "rdap_server": "https://rdap.nic.fashion/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fashion", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fashion/", - "whois_server": "whois.nic.fashion", - "rdap_server": "https://rdap.nic.fashion/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fast.json b/data/generated/tld/fast.json index 3898e298..e00554c1 100644 --- a/data/generated/tld/fast.json +++ b/data/generated/tld/fast.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fast", + "rdap_server": "https://rdap.nominet.uk/fast/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fast", "ipv4": [ { "ip": "213.248.218.66", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.66", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.fast", - "rdap_server": "https://rdap.nominet.uk/fast/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fedex.json b/data/generated/tld/fedex.json index 8db71e52..698b6de5 100644 --- a/data/generated/tld/fedex.json +++ b/data/generated/tld/fedex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.fedex.com/", + "whois_server": "whois.nic.fedex", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fedex", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.fedex.com/", - "whois_server": "whois.nic.fedex", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/feedback.json b/data/generated/tld/feedback.json index 0460547e..2ef3c13c 100644 --- a/data/generated/tld/feedback.json +++ b/data/generated/tld/feedback.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://nic.feedback", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://nic.feedback", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/ferrari.json b/data/generated/tld/ferrari.json index c588b2fa..19b0e57a 100644 --- a/data/generated/tld/ferrari.json +++ b/data/generated/tld/ferrari.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.ferrari.com/en_us/", + "whois_server": "whois.nic.ferrari", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Stellantis", + "iana_sponsor_slug": "stellantis", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Stellantis", + "icann_registry_operator_slug": "stellantis", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ferrari", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "http://www.ferrari.com/en_us/", - "whois_server": "whois.nic.ferrari", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Stellantis", - "iana_sponsor_slug": "stellantis", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Stellantis", - "icann_registry_operator_slug": "stellantis", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ferrero.json b/data/generated/tld/ferrero.json index 217a0a77..564427ff 100644 --- a/data/generated/tld/ferrero.json +++ b/data/generated/tld/ferrero.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.ferrero.com", + "rdap_server": "https://rdap.nic.ferrero/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ferrero", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.ferrero.com", - "rdap_server": "https://rdap.nic.ferrero/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fi.json b/data/generated/tld/fi.json index 2069f7fd..27ec20f8 100644 --- a/data/generated/tld/fi.json +++ b/data/generated/tld/fi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Finnish Transport and Communications Agency Traficom" } }, + "registry_url": "https://domain.fi", + "whois_server": "whois.fi", + "rdap_server": "https://rdap.fi/rdap/rdap/", + "tld_created": "1986-12-17", + "tld_updated": [ + "2025-09-15" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Finland", + "as_org_aliases": [ + "CIRA", + "Community DNS", + "DENIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "community-dns", + "denic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.fi", @@ -208,32 +234,6 @@ } ] } - ], - "registry_url": "https://domain.fi", - "whois_server": "whois.fi", - "rdap_server": "https://rdap.fi/rdap/rdap/", - "tld_created": "1986-12-17", - "tld_updated": [ - "2025-09-15" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Finland", - "as_org_aliases": [ - "CIRA", - "Community DNS", - "DENIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "community-dns", - "denic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/fidelity.json b/data/generated/tld/fidelity.json index 25d33d95..741406b2 100644 --- a/data/generated/tld/fidelity.json +++ b/data/generated/tld/fidelity.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://fidelity.com", + "whois_server": "whois.nic.fidelity", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fidelity", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://fidelity.com", - "whois_server": "whois.nic.fidelity", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fido.json b/data/generated/tld/fido.json index e8623591..d4d040b3 100644 --- a/data/generated/tld/fido.json +++ b/data/generated/tld/fido.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.rogers.com/consumer/home", + "whois_server": "whois.nic.fido", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fido", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.rogers.com/consumer/home", - "whois_server": "whois.nic.fido", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/film.json b/data/generated/tld/film.json index dea49cc3..ed431bba 100644 --- a/data/generated/tld/film.json +++ b/data/generated/tld/film.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://nic.film", + "whois_server": "whois.nic.film", + "rdap_server": "https://rdap.nic.film/", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-01-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.film", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.film", - "whois_server": "whois.nic.film", - "rdap_server": "https://rdap.nic.film/", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-01-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/final.json b/data/generated/tld/final.json index 5fd5ac6c..e99aa267 100644 --- a/data/generated/tld/final.json +++ b/data/generated/tld/final.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,18 @@ "date_removed": null } }, + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143,18 +155,6 @@ } ] } - ], - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/finance.json b/data/generated/tld/finance.json index fcf33641..d0140f46 100644 --- a/data/generated/tld/finance.json +++ b/data/generated/tld/finance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.finance", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/financial.json b/data/generated/tld/financial.json index b5de87ec..812807a9 100644 --- a/data/generated/tld/financial.json +++ b/data/generated/tld/financial.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.financial", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fire.json b/data/generated/tld/fire.json index 97c2c376..d884f9f8 100644 --- a/data/generated/tld/fire.json +++ b/data/generated/tld/fire.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fire", + "rdap_server": "https://rdap.nominet.uk/fire/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fire", "ipv4": [ { "ip": "213.248.218.57", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.57", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.fire", - "rdap_server": "https://rdap.nominet.uk/fire/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/firestone.json b/data/generated/tld/firestone.json index 47c9831e..2ad6a83f 100644 --- a/data/generated/tld/firestone.json +++ b/data/generated/tld/firestone.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.firestone.com/", + "whois_server": "whois.nic.firestone", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.firestone.com/", - "whois_server": "whois.nic.firestone", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/firmdale.json b/data/generated/tld/firmdale.json index 1810a9d1..f07ca893 100644 --- a/data/generated/tld/firmdale.json +++ b/data/generated/tld/firmdale.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,25 @@ "date_removed": null } }, + "whois_server": "whois.nic.firmdale", + "rdap_server": "https://rdap.nic.firmdale/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2020-01-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "ns1.nic.firmdale", @@ -67,25 +86,6 @@ } ] } - ], - "whois_server": "whois.nic.firmdale", - "rdap_server": "https://rdap.nic.firmdale/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2020-01-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/fish.json b/data/generated/tld/fish.json index 33200687..1889a821 100644 --- a/data/generated/tld/fish.json +++ b/data/generated/tld/fish.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fish", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fishing.json b/data/generated/tld/fishing.json index 4bffc101..54797860 100644 --- a/data/generated/tld/fishing.json +++ b/data/generated/tld/fishing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fishing/", + "whois_server": "whois.nic.fishing", + "rdap_server": "https://rdap.nic.fishing/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fishing", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fishing/", - "whois_server": "whois.nic.fishing", - "rdap_server": "https://rdap.nic.fishing/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fit.json b/data/generated/tld/fit.json index 0a3429a4..7a797973 100644 --- a/data/generated/tld/fit.json +++ b/data/generated/tld/fit.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fit/", + "whois_server": "whois.nic.fit", + "rdap_server": "https://rdap.nic.fit/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fit", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fit/", - "whois_server": "whois.nic.fit", - "rdap_server": "https://rdap.nic.fit/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fitness.json b/data/generated/tld/fitness.json index d89114ba..3bec0145 100644 --- a/data/generated/tld/fitness.json +++ b/data/generated/tld/fitness.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fitness", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fj.json b/data/generated/tld/fj.json index bf62ac1e..e2070f16 100644 --- a/data/generated/tld/fj.json +++ b/data/generated/tld/fj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "The University of the South Pacific, IT Services" } }, + "registry_url": "https://www.domains.fj/", + "whois_server": "www.whois.fj", + "rdap_server": "https://www.rdap.fj", + "tld_created": "1992-06-03", + "tld_updated": [ + "2025-08-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Fiji", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.fj", @@ -99,24 +117,6 @@ } ] } - ], - "registry_url": "https://www.domains.fj/", - "whois_server": "www.whois.fj", - "rdap_server": "https://www.rdap.fj", - "tld_created": "1992-06-03", - "tld_updated": [ - "2025-08-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Fiji", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/fk.json b/data/generated/tld/fk.json index 3d9034d4..aea68f53 100644 --- a/data/generated/tld/fk.json +++ b/data/generated/tld/fk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Sure South Atlantic Ltd." } }, + "registry_url": "http://www.sure.co.fk", + "tld_created": "1997-03-26", + "tld_updated": [ + "2024-10-17" + ], + "annotations": { + "country_name_iso": "Falkland Islands (Malvinas)", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.horizon.net.fk", @@ -54,15 +63,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.sure.co.fk", - "tld_created": "1997-03-26", - "tld_updated": [ - "2024-10-17" - ], - "annotations": { - "country_name_iso": "Falkland Islands (Malvinas)", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/flickr.json b/data/generated/tld/flickr.json index b88e289b..54232c83 100644 --- a/data/generated/tld/flickr.json +++ b/data/generated/tld/flickr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://nic.flickr", + "rdap_server": "https://rdap.nic.flickr/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.flickr", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://nic.flickr", - "rdap_server": "https://rdap.nic.flickr/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/flights.json b/data/generated/tld/flights.json index 94e37703..d6854c91 100644 --- a/data/generated/tld/flights.json +++ b/data/generated/tld/flights.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.flights", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/flir.json b/data/generated/tld/flir.json index 56120806..1691a9ba 100644 --- a/data/generated/tld/flir.json +++ b/data/generated/tld/flir.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.flir.com", + "rdap_server": "https://rdap.nic.flir/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.flir", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.flir.com", - "rdap_server": "https://rdap.nic.flir/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/florist.json b/data/generated/tld/florist.json index 379de89f..371a2943 100644 --- a/data/generated/tld/florist.json +++ b/data/generated/tld/florist.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.florist", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/flowers.json b/data/generated/tld/flowers.json index 13071585..c60887e0 100644 --- a/data/generated/tld/flowers.json +++ b/data/generated/tld/flowers.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.flowers", + "whois_server": "whois.nic.flowers", + "rdap_server": "https://rdap.centralnic.com/flowers/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.flowers", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.flowers", - "whois_server": "whois.nic.flowers", - "rdap_server": "https://rdap.centralnic.com/flowers/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/fly.json b/data/generated/tld/fly.json index 1059ee54..55da1910 100644 --- a/data/generated/tld/fly.json +++ b/data/generated/tld/fly.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/fm.json b/data/generated/tld/fm.json index a2308852..32516818 100644 --- a/data/generated/tld/fm.json +++ b/data/generated/tld/fm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "FSM Telecommunications Corporation" } }, + "registry_url": "https://www.dot.fm/", + "whois_server": "whois.nic.fm", + "rdap_server": "https://rdap.centralnic.com/fm/", + "tld_created": "1995-04-19", + "tld_updated": [ + "2024-08-07" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Micronesia, Federated States of", + "as_org_aliases": [ + "CentralNic", + "Packet Clearing House" + ], + "as_org_slugs": [ + "centralnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.fm", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "https://www.dot.fm/", - "whois_server": "whois.nic.fm", - "rdap_server": "https://rdap.centralnic.com/fm/", - "tld_created": "1995-04-19", - "tld_updated": [ - "2024-08-07" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Micronesia, Federated States of", - "as_org_aliases": [ - "CentralNic", - "Packet Clearing House" - ], - "as_org_slugs": [ - "centralnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/fo.json b/data/generated/tld/fo.json index 81c49909..993c800b 100644 --- a/data/generated/tld/fo.json +++ b/data/generated/tld/fo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://www.nic.fo/", + "whois_server": "whois.nic.fo", + "rdap_server": "https://rdap.centralnic.com/fo", + "tld_created": "1993-05-14", + "tld_updated": [ + "2026-02-13" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Faroe Islands", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.fo", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "http://www.nic.fo/", - "whois_server": "whois.nic.fo", - "rdap_server": "https://rdap.centralnic.com/fo", - "tld_created": "1993-05-14", - "tld_updated": [ - "2026-02-13" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Faroe Islands", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/foo.json b/data/generated/tld/foo.json index c86f16f7..f606b537 100644 --- a/data/generated/tld/foo.json +++ b/data/generated/tld/foo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/food.json b/data/generated/tld/food.json index 683b5679..26c4c5e8 100644 --- a/data/generated/tld/food.json +++ b/data/generated/tld/food.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2016-11-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2016-11-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/football.json b/data/generated/tld/football.json index 6bbc6cf3..06cad225 100644 --- a/data/generated/tld/football.json +++ b/data/generated/tld/football.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.football", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ford.json b/data/generated/tld/ford.json index 9fdb8452..c72c684a 100644 --- a/data/generated/tld/ford.json +++ b/data/generated/tld/ford.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.ford.com", + "rdap_server": "https://rdap.nic.ford/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ford", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.ford.com", - "rdap_server": "https://rdap.nic.ford/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/forex.json b/data/generated/tld/forex.json index 1e8e129f..0e5755e8 100644 --- a/data/generated/tld/forex.json +++ b/data/generated/tld/forex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.forex", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/forsale.json b/data/generated/tld/forsale.json index 6465e33d..b9e70c5d 100644 --- a/data/generated/tld/forsale.json +++ b/data/generated/tld/forsale.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.forsale", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/forum.json b/data/generated/tld/forum.json index 2d0fef61..a1d1fec3 100644 --- a/data/generated/tld/forum.json +++ b/data/generated/tld/forum.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.topspectrum.com", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.topspectrum.com", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/foundation.json b/data/generated/tld/foundation.json index d0c4e8cf..8bc8ef60 100644 --- a/data/generated/tld/foundation.json +++ b/data/generated/tld/foundation.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.foundation", + "whois_server": "whois.nic.foundation", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.foundation", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://nic.foundation", - "whois_server": "whois.nic.foundation", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fox.json b/data/generated/tld/fox.json index 4d26792c..384bd221 100644 --- a/data/generated/tld/fox.json +++ b/data/generated/tld/fox.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.fox.com", + "whois_server": "whois.nic.fox", + "rdap_server": "https://rdap.nic.fox/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fox", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "https://www.fox.com", - "whois_server": "whois.nic.fox", - "rdap_server": "https://rdap.nic.fox/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fr.json b/data/generated/tld/fr.json index bdf94cb3..ea0e3b39 100644 --- a/data/generated/tld/fr.json +++ b/data/generated/tld/fr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "https://www.nic.fr", + "whois_server": "whois.nic.fr", + "rdap_server": "https://rdap.nic.fr/", + "tld_created": "1986-09-02", + "tld_updated": [ + "2025-07-31" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "France", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "https://www.nic.fr", - "whois_server": "whois.nic.fr", - "rdap_server": "https://rdap.nic.fr/", - "tld_created": "1986-09-02", - "tld_updated": [ - "2025-07-31" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "France", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/free.json b/data/generated/tld/free.json index 567c8d3b..a1522a25 100644 --- a/data/generated/tld/free.json +++ b/data/generated/tld/free.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.free", + "rdap_server": "https://rdap.nominet.uk/free/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.free", "ipv4": [ { "ip": "213.248.218.67", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.67", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.free", - "rdap_server": "https://rdap.nominet.uk/free/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fresenius.json b/data/generated/tld/fresenius.json index 35887f3a..2a3463d0 100644 --- a/data/generated/tld/fresenius.json +++ b/data/generated/tld/fresenius.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.freseniusregistry.com", + "whois_server": "whois.nic.fresenius", + "rdap_server": "https://rdap.centralnic.com/fresenius", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.fresenius", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.freseniusregistry.com", - "whois_server": "whois.nic.fresenius", - "rdap_server": "https://rdap.centralnic.com/fresenius", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/frl.json b/data/generated/tld/frl.json index bf023e4e..b4f9c313 100644 --- a/data/generated/tld/frl.json +++ b/data/generated/tld/frl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://registreer.frl", + "whois_server": "whois.nic.frl", + "rdap_server": "https://rdap.centralnic.com/frl", + "tld_created": "2014-08-22", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.frl", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://registreer.frl", - "whois_server": "whois.nic.frl", - "rdap_server": "https://rdap.centralnic.com/frl", - "tld_created": "2014-08-22", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/frogans.json b/data/generated/tld/frogans.json index bd7eec99..f104f9ae 100644 --- a/data/generated/tld/frogans.json +++ b/data/generated/tld/frogans.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://nic.frogans/", + "whois_server": "whois.nic.frogans", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.frogans", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://nic.frogans/", - "whois_server": "whois.nic.frogans", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/frontier.json b/data/generated/tld/frontier.json index 51bfb860..d79cce57 100644 --- a/data/generated/tld/frontier.json +++ b/data/generated/tld/frontier.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://frontier.com", + "rdap_server": "https://rdap.nic.frontier/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.frontier", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://frontier.com", - "rdap_server": "https://rdap.nic.frontier/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ftr.json b/data/generated/tld/ftr.json index 3a6f1cca..f1623dc8 100644 --- a/data/generated/tld/ftr.json +++ b/data/generated/tld/ftr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://frontier.com", + "rdap_server": "https://rdap.nic.ftr/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ftr", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,27 +164,6 @@ } ] } - ], - "registry_url": "http://frontier.com", - "rdap_server": "https://rdap.nic.ftr/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fujitsu.json b/data/generated/tld/fujitsu.json index 3982ee97..9fd64bf8 100644 --- a/data/generated/tld/fujitsu.json +++ b/data/generated/tld/fujitsu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-06-12" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-06-12" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/fun.json b/data/generated/tld/fun.json index 207ac361..88d5c1b3 100644 --- a/data/generated/tld/fun.json +++ b/data/generated/tld/fun.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.radix.website/", + "whois_server": "whois.nic.fun", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2016-11-30", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.radix.website/", - "whois_server": "whois.nic.fun", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2016-11-30", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/fund.json b/data/generated/tld/fund.json index 3ae0d252..470527a1 100644 --- a/data/generated/tld/fund.json +++ b/data/generated/tld/fund.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fund", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/furniture.json b/data/generated/tld/furniture.json index bb145a47..9b201061 100644 --- a/data/generated/tld/furniture.json +++ b/data/generated/tld/furniture.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.furniture", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/futbol.json b/data/generated/tld/futbol.json index 6d0fd53f..1bba4bb3 100644 --- a/data/generated/tld/futbol.json +++ b/data/generated/tld/futbol.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.futbol", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/fyi.json b/data/generated/tld/fyi.json index dd49927e..668db68f 100644 --- a/data/generated/tld/fyi.json +++ b/data/generated/tld/fyi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fyi", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ga.json b/data/generated/tld/ga.json index 1ef5a7d0..9b315702 100644 --- a/data/generated/tld/ga.json +++ b/data/generated/tld/ga.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)" } }, + "tld_created": "1994-12-12", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "country_name_iso": "Gabon", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,22 +91,6 @@ } ] } - ], - "tld_created": "1994-12-12", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "country_name_iso": "Gabon", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gal.json b/data/generated/tld/gal.json index 304ca4a8..d38405b0 100644 --- a/data/generated/tld/gal.json +++ b/data/generated/tld/gal.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://asociacion.dominio.gal/", + "whois_server": "whois.nic.gal", + "rdap_server": "https://rdap.nic.gal/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "galician" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://asociacion.dominio.gal/", - "whois_server": "whois.nic.gal", - "rdap_server": "https://rdap.nic.gal/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "galician" - } + ] } } diff --git a/data/generated/tld/gallery.json b/data/generated/tld/gallery.json index c11adc52..b19834fd 100644 --- a/data/generated/tld/gallery.json +++ b/data/generated/tld/gallery.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gallery", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gallo.json b/data/generated/tld/gallo.json index f5a69b64..02035784 100644 --- a/data/generated/tld/gallo.json +++ b/data/generated/tld/gallo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gallo.com", + "whois_server": "whois.nic.gallo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.gallo", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.gallo.com", - "whois_server": "whois.nic.gallo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gallup.json b/data/generated/tld/gallup.json index c98658d2..e7181a70 100644 --- a/data/generated/tld/gallup.json +++ b/data/generated/tld/gallup.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://gallup.com", + "whois_server": "whois.nic.gallup", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.gallup", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://gallup.com", - "whois_server": "whois.nic.gallup", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/game.json b/data/generated/tld/game.json index af7115f3..86fa8313 100644 --- a/data/generated/tld/game.json +++ b/data/generated/tld/game.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.game", + "whois_server": "whois.nic.game", + "rdap_server": "https://rdap.centralnic.com/game/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.game", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.game", - "whois_server": "whois.nic.game", - "rdap_server": "https://rdap.centralnic.com/game/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/games.json b/data/generated/tld/games.json index 10369fa1..8f94c6f9 100644 --- a/data/generated/tld/games.json +++ b/data/generated/tld/games.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.games", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gap.json b/data/generated/tld/gap.json index da27f0a4..2bc66fb1 100644 --- a/data/generated/tld/gap.json +++ b/data/generated/tld/gap.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.gap.com", + "rdap_server": "https://rdap.nic.gap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.gap", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.gap.com", - "rdap_server": "https://rdap.nic.gap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/garden.json b/data/generated/tld/garden.json index d22aecfe..d68f2753 100644 --- a/data/generated/tld/garden.json +++ b/data/generated/tld/garden.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.garden/", + "whois_server": "whois.nic.garden", + "rdap_server": "https://rdap.nic.garden/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.garden", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.garden/", - "whois_server": "whois.nic.garden", - "rdap_server": "https://rdap.nic.garden/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gay.json b/data/generated/tld/gay.json index f0fb3579..37f2add4 100644 --- a/data/generated/tld/gay.json +++ b/data/generated/tld/gay.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.gay", + "whois_server": "whois.nic.gay", + "rdap_server": "https://rdap.nic.gay/", + "tld_created": "2019-07-19", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.gay", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.gay", - "whois_server": "whois.nic.gay", - "rdap_server": "https://rdap.nic.gay/", - "tld_created": "2019-07-19", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gb.json b/data/generated/tld/gb.json index 861e7514..7aa3db1b 100644 --- a/data/generated/tld/gb.json +++ b/data/generated/tld/gb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,14 @@ "tech": "Jisc" } }, + "tld_created": "1985-07-24", + "tld_updated": [ + "2024-09-10" + ], + "annotations": { + "country_name_iso": "United Kingdom", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.uu.net", @@ -80,14 +88,6 @@ } ] } - ], - "tld_created": "1985-07-24", - "tld_updated": [ - "2024-09-10" - ], - "annotations": { - "country_name_iso": "United Kingdom", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gbiz.json b/data/generated/tld/gbiz.json index a287805b..65ee8756 100644 --- a/data/generated/tld/gbiz.json +++ b/data/generated/tld/gbiz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/gd.json b/data/generated/tld/gd.json index 7a8848a0..337331b1 100644 --- a/data/generated/tld/gd.json +++ b/data/generated/tld/gd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://nic.gd", + "whois_server": "whois.nic.gd", + "rdap_server": "https://rdap.centralnic.com/gd", + "tld_created": "1992-06-03", + "tld_updated": [ + "2025-04-07" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Grenada", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.gd", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://nic.gd", - "whois_server": "whois.nic.gd", - "rdap_server": "https://rdap.centralnic.com/gd", - "tld_created": "1992-06-03", - "tld_updated": [ - "2025-04-07" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Grenada", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gdn.json b/data/generated/tld/gdn.json index 2aecd829..1ae6805a 100644 --- a/data/generated/tld/gdn.json +++ b/data/generated/tld/gdn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.gdn", + "whois_server": "whois.nic.gdn", + "rdap_server": "https://rdap.nic.gdn/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2026-05-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "ns1.nic.gdn", @@ -86,26 +106,6 @@ } ] } - ], - "registry_url": "http://www.nic.gdn", - "whois_server": "whois.nic.gdn", - "rdap_server": "https://rdap.nic.gdn/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2026-05-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/ge.json b/data/generated/tld/ge.json index 0ac097ff..cdb36ff3 100644 --- a/data/generated/tld/ge.json +++ b/data/generated/tld/ge.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Caucasus Online LLC" } }, + "registry_url": "http://nic.ge", + "whois_server": "whois.nic.ge", + "tld_created": "1992-12-02", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "country_name_iso": "Georgia", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.ge", @@ -67,22 +83,6 @@ "ipv6": [] } ], - "registry_url": "http://nic.ge", - "whois_server": "whois.nic.ge", - "tld_created": "1992-12-02", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "country_name_iso": "Georgia", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - }, "idn": [ "xn--node" ] diff --git a/data/generated/tld/gea.json b/data/generated/tld/gea.json index 16698a9f..47b2696c 100644 --- a/data/generated/tld/gea.json +++ b/data/generated/tld/gea.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.geagroup.com", + "whois_server": "whois.nic.gea", + "rdap_server": "https://rdap.nic.gea/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2022-06-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.gea", @@ -86,28 +108,6 @@ } ] } - ], - "registry_url": "http://www.geagroup.com", - "whois_server": "whois.nic.gea", - "rdap_server": "https://rdap.nic.gea/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2022-06-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/gent.json b/data/generated/tld/gent.json index 4ec00ace..597e84c7 100644 --- a/data/generated/tld/gent.json +++ b/data/generated/tld/gent.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.gent", + "whois_server": "whois.nic.gent", + "rdap_server": "https://rdap.centralnic.com/gent", + "tld_created": "2014-07-03", + "tld_updated": [ + "2026-03-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.gent", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.nic.gent", - "whois_server": "whois.nic.gent", - "rdap_server": "https://rdap.centralnic.com/gent", - "tld_created": "2014-07-03", - "tld_updated": [ - "2026-03-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/genting.json b/data/generated/tld/genting.json index b34ffc54..05317ff2 100644 --- a/data/generated/tld/genting.json +++ b/data/generated/tld/genting.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.genting/", + "whois_server": "whois.nic.genting", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.genting", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.genting/", - "whois_server": "whois.nic.genting", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/george.json b/data/generated/tld/george.json index 20fd3ed7..87011708 100644 --- a/data/generated/tld/george.json +++ b/data/generated/tld/george.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.walmart.com", + "whois_server": "whois.nic.george", + "rdap_server": "https://rdap.nic.george", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.george", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.walmart.com", - "whois_server": "whois.nic.george", - "rdap_server": "https://rdap.nic.george", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gf.json b/data/generated/tld/gf.json index 61a88320..344c4e3d 100644 --- a/data/generated/tld/gf.json +++ b/data/generated/tld/gf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "CANAL+ TELECOM" } }, + "registry_url": "https://www.dom-enic.com", + "whois_server": "whois.mediaserv.net", + "tld_created": "1996-07-25", + "tld_updated": [ + "2021-10-18" + ], + "annotations": { + "country_name_iso": "French Guiana", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1-fr.mediaserv.net", @@ -54,16 +64,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.dom-enic.com", - "whois_server": "whois.mediaserv.net", - "tld_created": "1996-07-25", - "tld_updated": [ - "2021-10-18" - ], - "annotations": { - "country_name_iso": "French Guiana", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gg.json b/data/generated/tld/gg.json index 08c452d8..ef65ad2c 100644 --- a/data/generated/tld/gg.json +++ b/data/generated/tld/gg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Island Networks Limited" } }, + "registry_url": "http://www.nic.gg", + "whois_server": "whois.gg", + "tld_created": "1996-08-07", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "Guernsey", + "as_org_aliases": [ + "Nominet", + "Packet Clearing House" + ], + "as_org_slugs": [ + "nominet", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.ci-servers.org", @@ -42,8 +60,8 @@ "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -61,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.nic.gg", - "whois_server": "whois.gg", - "tld_created": "1996-08-07", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "Guernsey", - "as_org_aliases": [ - "Nominet", - "Packet Clearing House" - ], - "as_org_slugs": [ - "nominet", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ggee.json b/data/generated/tld/ggee.json index ecac7282..80ad807b 100644 --- a/data/generated/tld/ggee.json +++ b/data/generated/tld/ggee.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.ggee", + "whois_server": "whois.nic.ggee", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2019-08-07" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,34 +126,6 @@ } ] } - ], - "registry_url": "http://nic.ggee", - "whois_server": "whois.nic.ggee", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2019-08-07" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gh.json b/data/generated/tld/gh.json index 5b3ea396..d9d26887 100644 --- a/data/generated/tld/gh.json +++ b/data/generated/tld/gh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Network Computer Systems Limited" } }, + "registry_url": "http://www.nic.gh", + "whois_server": "whois.nic.gh", + "tld_created": "1995-01-19", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "country_name_iso": "Ghana", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.dns.br", @@ -61,16 +71,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gh", - "whois_server": "whois.nic.gh", - "tld_created": "1995-01-19", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "country_name_iso": "Ghana", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gi.json b/data/generated/tld/gi.json index 301617a1..e6f2c780 100644 --- a/data/generated/tld/gi.json +++ b/data/generated/tld/gi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Identity Digital Inc." } }, + "registry_url": "http://www.nic.gi", + "whois_server": "whois.identitydigital.services", + "tld_created": "1995-12-05", + "tld_updated": [ + "2024-06-24" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "country_name_iso": "Gibraltar", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.nic.gi", - "whois_server": "whois.identitydigital.services", - "tld_created": "1995-12-05", - "tld_updated": [ - "2024-06-24" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "country_name_iso": "Gibraltar", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gift.json b/data/generated/tld/gift.json index b64c0e82..b0975d44 100644 --- a/data/generated/tld/gift.json +++ b/data/generated/tld/gift.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://uniregistry.link", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://uniregistry.link", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/gifts.json b/data/generated/tld/gifts.json index 84712b3a..76e62889 100644 --- a/data/generated/tld/gifts.json +++ b/data/generated/tld/gifts.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gifts", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gives.json b/data/generated/tld/gives.json index fec8df36..852a7f66 100644 --- a/data/generated/tld/gives.json +++ b/data/generated/tld/gives.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.gives", + "whois_server": "whois.nic.gives", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gives", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://nic.gives", - "whois_server": "whois.nic.gives", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/giving.json b/data/generated/tld/giving.json index 23b46d1d..a3660aa7 100644 --- a/data/generated/tld/giving.json +++ b/data/generated/tld/giving.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.giving", + "whois_server": "whois.nic.giving", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.giving", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://nic.giving", - "whois_server": "whois.nic.giving", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gl.json b/data/generated/tld/gl.json index dd34059e..919da68f 100644 --- a/data/generated/tld/gl.json +++ b/data/generated/tld/gl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "TELE Greenland A/S" } }, + "registry_url": "http://www.nic.gl/", + "whois_server": "whois.nic.gl", + "rdap_server": "https://rdap.centralnic.com/gl/", + "tld_created": "1994-04-08", + "tld_updated": [ + "2024-12-19" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Greenland", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.gl", @@ -92,24 +110,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gl/", - "whois_server": "whois.nic.gl", - "rdap_server": "https://rdap.centralnic.com/gl/", - "tld_created": "1994-04-08", - "tld_updated": [ - "2024-12-19" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Greenland", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/glass.json b/data/generated/tld/glass.json index 8603d04a..c6654efe 100644 --- a/data/generated/tld/glass.json +++ b/data/generated/tld/glass.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.glass", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gle.json b/data/generated/tld/gle.json index 9fe7736b..0b8388fa 100644 --- a/data/generated/tld/gle.json +++ b/data/generated/tld/gle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/global.json b/data/generated/tld/global.json index 2757d3ae..6de53745 100644 --- a/data/generated/tld/global.json +++ b/data/generated/tld/global.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-08-08" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.global", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-08-08" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/globo.json b/data/generated/tld/globo.json index 115f7091..cdbd2fa7 100644 --- a/data/generated/tld/globo.json +++ b/data/generated/tld/globo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,19 @@ "date_removed": null } }, + "registry_url": "https://nic.globo/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143,19 +156,6 @@ } ] } - ], - "registry_url": "https://nic.globo/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/gm.json b/data/generated/tld/gm.json index 99e9f3b3..5c3bd702 100644 --- a/data/generated/tld/gm.json +++ b/data/generated/tld/gm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "CYPDOM" } }, + "registry_url": "http://www.nic.gm", + "tld_created": "1997-03-28", + "tld_updated": [ + "2025-02-27" + ], + "annotations": { + "country_name_iso": "Gambia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-gm.afrinic.net", @@ -68,15 +77,6 @@ } ] } - ], - "registry_url": "http://www.nic.gm", - "tld_created": "1997-03-28", - "tld_updated": [ - "2025-02-27" - ], - "annotations": { - "country_name_iso": "Gambia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gmail.json b/data/generated/tld/gmail.json index 3818d7ef..4d6de0d9 100644 --- a/data/generated/tld/gmail.json +++ b/data/generated/tld/gmail.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,34 +152,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/gmbh.json b/data/generated/tld/gmbh.json index bbc64b4f..c2afd607 100644 --- a/data/generated/tld/gmbh.json +++ b/data/generated/tld/gmbh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gmbh", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gmo.json b/data/generated/tld/gmo.json index 95bc59a3..253d5540 100644 --- a/data/generated/tld/gmo.json +++ b/data/generated/tld/gmo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,34 +126,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gmx.json b/data/generated/tld/gmx.json index 8f575cfd..e2e4c907 100644 --- a/data/generated/tld/gmx.json +++ b/data/generated/tld/gmx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://cp.nic.gmx", + "whois_server": "whois.nic.gmx", + "rdap_server": "https://rdap.nic.gmx/", + "tld_created": "2014-08-07", + "tld_updated": [ + "2022-09-02" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://cp.nic.gmx", - "whois_server": "whois.nic.gmx", - "rdap_server": "https://rdap.nic.gmx/", - "tld_created": "2014-08-07", - "tld_updated": [ - "2022-09-02" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/gn.json b/data/generated/tld/gn.json index 021af92a..62808416 100644 --- a/data/generated/tld/gn.json +++ b/data/generated/tld/gn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Agence Nationale de Digitalisation de l’Etat (ANDE)" } }, + "registry_url": "https://ande.gov.gn/dns-gn/", + "whois_server": "whois.ande.gov.gn", + "tld_created": "1994-08-09", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "country_name_iso": "Guinea", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -87,22 +103,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://ande.gov.gn/dns-gn/", - "whois_server": "whois.ande.gov.gn", - "tld_created": "1994-08-09", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "country_name_iso": "Guinea", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/godaddy.json b/data/generated/tld/godaddy.json index 85274a51..c7cc2832 100644 --- a/data/generated/tld/godaddy.json +++ b/data/generated/tld/godaddy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://nic.godaddy", + "whois_server": "whois.nic.godaddy", + "rdap_server": "https://rdap.nic.godaddy/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.godaddy", @@ -53,7 +80,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +118,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +126,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +137,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +145,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +156,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,39 +164,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.godaddy", - "whois_server": "whois.nic.godaddy", - "rdap_server": "https://rdap.nic.godaddy/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gold.json b/data/generated/tld/gold.json index 4884740e..b2ed533a 100644 --- a/data/generated/tld/gold.json +++ b/data/generated/tld/gold.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gold", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/goldpoint.json b/data/generated/tld/goldpoint.json index b01a0904..ec34edcf 100644 --- a/data/generated/tld/goldpoint.json +++ b/data/generated/tld/goldpoint.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.goldpoint", + "whois_server": "whois.nic.goldpoint", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.goldpoint", - "whois_server": "whois.nic.goldpoint", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/golf.json b/data/generated/tld/golf.json index c8d6a117..ffb7dad2 100644 --- a/data/generated/tld/golf.json +++ b/data/generated/tld/golf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.golf", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/goodyear.json b/data/generated/tld/goodyear.json index cf461e17..586e83ad 100644 --- a/data/generated/tld/goodyear.json +++ b/data/generated/tld/goodyear.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.goodyear.com/", + "whois_server": "whois.nic.goodyear", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.goodyear", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.goodyear.com/", - "whois_server": "whois.nic.goodyear", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/goog.json b/data/generated/tld/goog.json index 58840139..c1420905 100644 --- a/data/generated/tld/goog.json +++ b/data/generated/tld/goog.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/google.json b/data/generated/tld/google.json index 95a64ff0..df89a033 100644 --- a/data/generated/tld/google.json +++ b/data/generated/tld/google.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,34 +152,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/gop.json b/data/generated/tld/gop.json index fb9682ab..5286711b 100644 --- a/data/generated/tld/gop.json +++ b/data/generated/tld/gop.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://join.gop", + "whois_server": "whois.nic.gop", + "rdap_server": "https://rdap.nominet.uk/gop/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-01-22" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.gop", "ipv4": [ { "ip": "213.248.219.39", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.39", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://join.gop", - "whois_server": "whois.nic.gop", - "rdap_server": "https://rdap.nominet.uk/gop/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-01-22" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/got.json b/data/generated/tld/got.json index cac669c3..fe68f85c 100644 --- a/data/generated/tld/got.json +++ b/data/generated/tld/got.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.got", + "rdap_server": "https://rdap.nominet.uk/got/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-05-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.got", "ipv4": [ { "ip": "213.248.218.68", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.82.68", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "http://www.nic.got", - "rdap_server": "https://rdap.nominet.uk/got/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-05-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/gov.json b/data/generated/tld/gov.json index 1f686ad4..e2032768 100644 --- a/data/generated/tld/gov.json +++ b/data/generated/tld/gov.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Cloudflare, Inc." } }, + "registry_url": "https://get.gov", + "whois_server": "whois.nic.gov", + "rdap_server": "https://rdap.nic.gov/rdap/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "rdap_source": "IANA", + "as_org_aliases": [ + "Cloudflare" + ], + "as_org_slugs": [ + "cloudflare" + ] + }, "nameservers": [ { "hostname": "a.ns.gov", @@ -94,22 +110,6 @@ } ] } - ], - "registry_url": "https://get.gov", - "whois_server": "whois.nic.gov", - "rdap_server": "https://rdap.nic.gov/rdap/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "rdap_source": "IANA", - "as_org_aliases": [ - "Cloudflare" - ], - "as_org_slugs": [ - "cloudflare" - ] - } + ] } } diff --git a/data/generated/tld/gp.json b/data/generated/tld/gp.json index 91196d21..56a09299 100644 --- a/data/generated/tld/gp.json +++ b/data/generated/tld/gp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Bull ATOS Caraibes" } }, + "registry_url": "http://www.nic.gp/", + "whois_server": "whois.nic.gp", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-09-09" + ], + "annotations": { + "country_name_iso": "Guadeloupe", + "as_org_aliases": [ + "AFNIC", + "LACTLD" + ], + "as_org_slugs": [ + "afnic", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -99,24 +117,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gp/", - "whois_server": "whois.nic.gp", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-09-09" - ], - "annotations": { - "country_name_iso": "Guadeloupe", - "as_org_aliases": [ - "AFNIC", - "LACTLD" - ], - "as_org_slugs": [ - "afnic", - "lactld" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gq.json b/data/generated/tld/gq.json index bbb2d61a..87db48ae 100644 --- a/data/generated/tld/gq.json +++ b/data/generated/tld/gq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "GETESA S.A." } }, + "registry_url": "http://www.dominio.gq", + "whois_server": "whois.dominio.gq", + "tld_created": "1997-07-10", + "tld_updated": [ + "2023-08-14" + ], + "annotations": { + "country_name_iso": "Equatorial Guinea", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.gq", @@ -94,16 +104,6 @@ } ] } - ], - "registry_url": "http://www.dominio.gq", - "whois_server": "whois.dominio.gq", - "tld_created": "1997-07-10", - "tld_updated": [ - "2023-08-14" - ], - "annotations": { - "country_name_iso": "Equatorial Guinea", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gr.json b/data/generated/tld/gr.json index 78d4ef70..5faf6f13 100644 --- a/data/generated/tld/gr.json +++ b/data/generated/tld/gr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "ICS-FORTH GR" } }, + "registry_url": "http://www.gr", + "tld_created": "1989-02-19", + "tld_updated": [ + "2022-06-16" + ], + "annotations": { + "country_name_iso": "Greece", + "as_org_aliases": [ + "Community DNS", + "DENIC" + ], + "as_org_slugs": [ + "community-dns", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "estia.ics.forth.gr", @@ -119,23 +136,6 @@ "ipv6": [] } ], - "registry_url": "http://www.gr", - "tld_created": "1989-02-19", - "tld_updated": [ - "2022-06-16" - ], - "annotations": { - "country_name_iso": "Greece", - "as_org_aliases": [ - "Community DNS", - "DENIC" - ], - "as_org_slugs": [ - "community-dns", - "denic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--qxam" ] diff --git a/data/generated/tld/grainger.json b/data/generated/tld/grainger.json index bbe7aab2..75431b12 100644 --- a/data/generated/tld/grainger.json +++ b/data/generated/tld/grainger.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.grainger.com", + "rdap_server": "https://rdap.nic.grainger/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.grainger", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.grainger.com", - "rdap_server": "https://rdap.nic.grainger/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/graphics.json b/data/generated/tld/graphics.json index 0dbca996..0c25f85a 100644 --- a/data/generated/tld/graphics.json +++ b/data/generated/tld/graphics.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.graphics", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gratis.json b/data/generated/tld/gratis.json index c9233a22..e912d35c 100644 --- a/data/generated/tld/gratis.json +++ b/data/generated/tld/gratis.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gratis", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/green.json b/data/generated/tld/green.json index c544007e..bdb1500f 100644 --- a/data/generated/tld/green.json +++ b/data/generated/tld/green.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.green", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gripe.json b/data/generated/tld/gripe.json index b70dc254..709cb658 100644 --- a/data/generated/tld/gripe.json +++ b/data/generated/tld/gripe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gripe", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/grocery.json b/data/generated/tld/grocery.json index f66fecfa..fa09d3e0 100644 --- a/data/generated/tld/grocery.json +++ b/data/generated/tld/grocery.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.walmart.com", + "whois_server": "whois.nic.grocery", + "rdap_server": "https://rdap.nic.grocery", + "tld_created": "2017-06-08", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.grocery", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.walmart.com", - "whois_server": "whois.nic.grocery", - "rdap_server": "https://rdap.nic.grocery", - "tld_created": "2017-06-08", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/group.json b/data/generated/tld/group.json index 50aba57c..74418ed3 100644 --- a/data/generated/tld/group.json +++ b/data/generated/tld/group.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.group", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gs.json b/data/generated/tld/gs.json index f8be9182..d4a45029 100644 --- a/data/generated/tld/gs.json +++ b/data/generated/tld/gs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Atlantis North Ltd" } }, + "registry_url": "http://secure.nic.gs", + "whois_server": "whois.nic.gs", + "rdap_server": "https://rdap.nic.gs", + "tld_created": "1997-07-31", + "tld_updated": [ + "2024-03-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "South Georgia and the South Sandwich Islands", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.gs", @@ -68,24 +86,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://secure.nic.gs", - "whois_server": "whois.nic.gs", - "rdap_server": "https://rdap.nic.gs", - "tld_created": "1997-07-31", - "tld_updated": [ - "2024-03-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "South Georgia and the South Sandwich Islands", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gt.json b/data/generated/tld/gt.json index 1ba006bc..2c0bb502 100644 --- a/data/generated/tld/gt.json +++ b/data/generated/tld/gt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "Universidad del Valle de Guatemala" } }, + "registry_url": "http://www.gt", + "tld_created": "1992-08-14", + "tld_updated": [ + "2024-01-16" + ], + "annotations": { + "country_name_iso": "Guatemala", + "as_org_aliases": [ + "CZNIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -138,25 +157,6 @@ } ] } - ], - "registry_url": "http://www.gt", - "tld_created": "1992-08-14", - "tld_updated": [ - "2024-01-16" - ], - "annotations": { - "country_name_iso": "Guatemala", - "as_org_aliases": [ - "CZNIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gu.json b/data/generated/tld/gu.json index 6ab5260c..956ca996 100644 --- a/data/generated/tld/gu.json +++ b/data/generated/tld/gu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "University of Guam" } }, + "registry_url": "https://give.uog.edu/shop/", + "tld_created": "1994-04-15", + "tld_updated": [ + "2025-09-08" + ], + "annotations": { + "country_name_iso": "Guam", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gold.uog.edu", @@ -80,15 +89,6 @@ } ] } - ], - "registry_url": "https://give.uog.edu/shop/", - "tld_created": "1994-04-15", - "tld_updated": [ - "2025-09-08" - ], - "annotations": { - "country_name_iso": "Guam", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gucci.json b/data/generated/tld/gucci.json index b95a27de..2558cbdb 100644 --- a/data/generated/tld/gucci.json +++ b/data/generated/tld/gucci.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.gucci.com", + "rdap_server": "https://rdap.nominet.uk/gucci/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.gucci", "ipv4": [ { "ip": "213.248.219.43", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.43", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.gucci.com", - "rdap_server": "https://rdap.nominet.uk/gucci/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/guge.json b/data/generated/tld/guge.json index 9753ce33..b4cd283a 100644 --- a/data/generated/tld/guge.json +++ b/data/generated/tld/guge.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/guide.json b/data/generated/tld/guide.json index 57df6be0..0d0ec19d 100644 --- a/data/generated/tld/guide.json +++ b/data/generated/tld/guide.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.guide", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/guitars.json b/data/generated/tld/guitars.json index 3e56dff7..28d581da 100644 --- a/data/generated/tld/guitars.json +++ b/data/generated/tld/guitars.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.guitars", + "whois_server": "whois.nic.guitars", + "rdap_server": "https://rdap.centralnic.com/guitars/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.guitars", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.guitars", - "whois_server": "whois.nic.guitars", - "rdap_server": "https://rdap.centralnic.com/guitars/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/guru.json b/data/generated/tld/guru.json index 59ba7b5b..1a1ffbc0 100644 --- a/data/generated/tld/guru.json +++ b/data/generated/tld/guru.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.guru", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/gw.json b/data/generated/tld/gw.json index 23b9cd89..389fc0a2 100644 --- a/data/generated/tld/gw.json +++ b/data/generated/tld/gw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "Associação DNS.PT (DNS.PT)" } }, + "tld_created": "1997-02-04", + "tld_updated": [ + "2022-07-11" + ], + "annotations": { + "country_name_iso": "Guinea-Bissau", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gw01.dns.pt", @@ -75,20 +89,6 @@ } ] } - ], - "tld_created": "1997-02-04", - "tld_updated": [ - "2022-07-11" - ], - "annotations": { - "country_name_iso": "Guinea-Bissau", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/gy.json b/data/generated/tld/gy.json index 2800c6e3..44c07c8b 100644 --- a/data/generated/tld/gy.json +++ b/data/generated/tld/gy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "University of Guyana" } }, + "registry_url": "https://registry.gy/", + "whois_server": "whois.registry.gy", + "rdap_server": "https://rdap.registry.gy", + "tld_created": "1994-09-13", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Guyana", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -56,26 +76,6 @@ } ] } - ], - "registry_url": "https://registry.gy/", - "whois_server": "whois.registry.gy", - "rdap_server": "https://rdap.registry.gy", - "tld_created": "1994-09-13", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Guyana", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hair.json b/data/generated/tld/hair.json index 324dfb20..9f4d84f8 100644 --- a/data/generated/tld/hair.json +++ b/data/generated/tld/hair.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.hair/", + "whois_server": "whois.nic.hair", + "rdap_server": "https://rdap.centralnic.com/hair/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.hair", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.hair/", - "whois_server": "whois.nic.hair", - "rdap_server": "https://rdap.centralnic.com/hair/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/hamburg.json b/data/generated/tld/hamburg.json index e1c46e71..1577f4fa 100644 --- a/data/generated/tld/hamburg.json +++ b/data/generated/tld/hamburg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hamburg", + "whois_server": "whois.nic.hamburg", + "rdap_server": "https://rdap.nic.hamburg/v1/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.nic.hamburg", @@ -86,28 +108,6 @@ } ] } - ], - "registry_url": "http://www.nic.hamburg", - "whois_server": "whois.nic.hamburg", - "rdap_server": "https://rdap.nic.hamburg/v1/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/hangout.json b/data/generated/tld/hangout.json index 5ea459c4..01237cf4 100644 --- a/data/generated/tld/hangout.json +++ b/data/generated/tld/hangout.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/haus.json b/data/generated/tld/haus.json index 4bac7b91..6620beb3 100644 --- a/data/generated/tld/haus.json +++ b/data/generated/tld/haus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-26", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.haus", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-26", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/hbo.json b/data/generated/tld/hbo.json index 82dbd780..d237c173 100644 --- a/data/generated/tld/hbo.json +++ b/data/generated/tld/hbo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.hbo.com", + "rdap_server": "https://rdap.nic.hbo/", + "tld_created": "2016-07-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hbo", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.hbo.com", - "rdap_server": "https://rdap.nic.hbo/", - "tld_created": "2016-07-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hdfc.json b/data/generated/tld/hdfc.json index 51da09cd..d9ad0c0e 100644 --- a/data/generated/tld/hdfc.json +++ b/data/generated/tld/hdfc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://nic.hdfc", + "whois_server": "whois.nic.hdfc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2023-08-23" + ], + "annotations": { + "iana_sponsor_alias": "HDFC", + "iana_sponsor_slug": "hdfc", + "iana_admin_alias": "HDFC", + "iana_admin_slug": "hdfc", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hdfc", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "http://nic.hdfc", - "whois_server": "whois.nic.hdfc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2023-08-23" - ], - "annotations": { - "iana_sponsor_alias": "HDFC", - "iana_sponsor_slug": "hdfc", - "iana_admin_alias": "HDFC", - "iana_admin_slug": "hdfc", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/hdfcbank.json b/data/generated/tld/hdfcbank.json index 87bc268b..67cc3884 100644 --- a/data/generated/tld/hdfcbank.json +++ b/data/generated/tld/hdfcbank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "whois_server": "whois.nic.hdfcbank", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2023-08-23" + ], + "annotations": { + "iana_sponsor_alias": "HDFC", + "iana_sponsor_slug": "hdfc", + "iana_admin_alias": "HDFC", + "iana_admin_slug": "hdfc", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hdfcbank", @@ -105,32 +131,6 @@ } ] } - ], - "whois_server": "whois.nic.hdfcbank", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2023-08-23" - ], - "annotations": { - "iana_sponsor_alias": "HDFC", - "iana_sponsor_slug": "hdfc", - "iana_admin_alias": "HDFC", - "iana_admin_slug": "hdfc", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/health.json b/data/generated/tld/health.json index bb3b0884..e6c70d8b 100644 --- a/data/generated/tld/health.json +++ b/data/generated/tld/health.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.dothealth.co", + "rdap_server": "https://rdap.nic.health/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.health", @@ -53,7 +80,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "http://www.dothealth.co", - "rdap_server": "https://rdap.nic.health/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/healthcare.json b/data/generated/tld/healthcare.json index 3b2488b6..9c6dc48b 100644 --- a/data/generated/tld/healthcare.json +++ b/data/generated/tld/healthcare.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.healthcare", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/help.json b/data/generated/tld/help.json index 49aca19d..f584594d 100644 --- a/data/generated/tld/help.json +++ b/data/generated/tld/help.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://nic.help", + "whois_server": "whois.nic.help", + "rdap_server": "https://rdap.centralnic.com/help/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2024-01-04" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.help", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://nic.help", - "whois_server": "whois.nic.help", - "rdap_server": "https://rdap.centralnic.com/help/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2024-01-04" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/helsinki.json b/data/generated/tld/helsinki.json index 792dee30..44445ad4 100644 --- a/data/generated/tld/helsinki.json +++ b/data/generated/tld/helsinki.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.hel.fi", + "whois_server": "whois.nic.helsinki", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.helsinki", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.hel.fi", - "whois_server": "whois.nic.helsinki", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/here.json b/data/generated/tld/here.json index 0c564f28..d302778a 100644 --- a/data/generated/tld/here.json +++ b/data/generated/tld/here.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/hermes.json b/data/generated/tld/hermes.json index f6b6584c..2c20d30c 100644 --- a/data/generated/tld/hermes.json +++ b/data/generated/tld/hermes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://hermes.com", + "whois_server": "whois.nic.hermes", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2023-08-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hermes", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://hermes.com", - "whois_server": "whois.nic.hermes", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2023-08-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/hiphop.json b/data/generated/tld/hiphop.json index 58f2c05b..d447d620 100644 --- a/data/generated/tld/hiphop.json +++ b/data/generated/tld/hiphop.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://get.hiphop", + "whois_server": "whois.nic.hiphop", + "rdap_server": "https://rdap.registry.hiphop/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://get.hiphop", - "whois_server": "whois.nic.hiphop", - "rdap_server": "https://rdap.registry.hiphop/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/hisamitsu.json b/data/generated/tld/hisamitsu.json index 018c79f3..7948003e 100644 --- a/data/generated/tld/hisamitsu.json +++ b/data/generated/tld/hisamitsu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-05-13", + "tld_updated": [ + "2023-06-12" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-05-13", - "tld_updated": [ - "2023-06-12" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hitachi.json b/data/generated/tld/hitachi.json index f47b71f1..3ab20996 100644 --- a/data/generated/tld/hitachi.json +++ b/data/generated/tld/hitachi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hiv.json b/data/generated/tld/hiv.json index 7fb76ec8..dd5f5d73 100644 --- a/data/generated/tld/hiv.json +++ b/data/generated/tld/hiv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/hk.json b/data/generated/tld/hk.json index d4063f66..5960fca0 100644 --- a/data/generated/tld/hk.json +++ b/data/generated/tld/hk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Hong Kong Internet Registration Corporation Ltd." } }, + "registry_url": "http://www.hkirc.hk", + "whois_server": "whois.hkirc.hk", + "tld_created": "1990-01-03", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "country_name_iso": "Hong Kong", + "as_org_aliases": [ + "CNNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cnnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.hkirc.net.hk", @@ -61,7 +79,7 @@ "ipv4": [ { "ip": "125.208.49.10", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -190,24 +208,6 @@ ] } ], - "registry_url": "http://www.hkirc.hk", - "whois_server": "whois.hkirc.hk", - "tld_created": "1990-01-03", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "country_name_iso": "Hong Kong", - "as_org_aliases": [ - "CNNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cnnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--j6w193g" ] diff --git a/data/generated/tld/hkt.json b/data/generated/tld/hkt.json index d7247ae6..1baea4b6 100644 --- a/data/generated/tld/hkt.json +++ b/data/generated/tld/hkt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.hkt", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hkt", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.hkt", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/hm.json b/data/generated/tld/hm.json index c11050af..8075c7b2 100644 --- a/data/generated/tld/hm.json +++ b/data/generated/tld/hm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "HM Domain Registry" } }, + "registry_url": "http://www.registry.hm", + "whois_server": "whois.registry.hm", + "tld_created": "1997-07-24", + "tld_updated": [ + "2023-12-14" + ], + "annotations": { + "country_name_iso": "Heard Island and McDonald Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.registry.hm", @@ -54,16 +64,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.registry.hm", - "whois_server": "whois.registry.hm", - "tld_created": "1997-07-24", - "tld_updated": [ - "2023-12-14" - ], - "annotations": { - "country_name_iso": "Heard Island and McDonald Islands", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hn.json b/data/generated/tld/hn.json index fb901870..b0f8d985 100644 --- a/data/generated/tld/hn.json +++ b/data/generated/tld/hn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Red de Desarrollo Sostenible Honduras" } }, + "registry_url": "https://www.nic.hn", + "whois_server": "whois.nic.hn", + "rdap_server": "https://rdap.nic.hn/", + "tld_created": "1993-04-16", + "tld_updated": [ + "2024-07-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Honduras", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -87,26 +107,6 @@ } ] } - ], - "registry_url": "https://www.nic.hn", - "whois_server": "whois.nic.hn", - "rdap_server": "https://rdap.nic.hn/", - "tld_created": "1993-04-16", - "tld_updated": [ - "2024-07-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Honduras", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hockey.json b/data/generated/tld/hockey.json index a607fd8b..c9a4c07f 100644 --- a/data/generated/tld/hockey.json +++ b/data/generated/tld/hockey.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.hockey", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/holdings.json b/data/generated/tld/holdings.json index 57ef4218..37e7ea50 100644 --- a/data/generated/tld/holdings.json +++ b/data/generated/tld/holdings.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.holdings", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/holiday.json b/data/generated/tld/holiday.json index 7c7ad69f..e80b88c0 100644 --- a/data/generated/tld/holiday.json +++ b/data/generated/tld/holiday.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.holiday", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/homedepot.json b/data/generated/tld/homedepot.json index 2b0951d8..0826becf 100644 --- a/data/generated/tld/homedepot.json +++ b/data/generated/tld/homedepot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.homedepot.com", + "whois_server": "whois.nic.homedepot", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.homedepot", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.homedepot.com", - "whois_server": "whois.nic.homedepot", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/homegoods.json b/data/generated/tld/homegoods.json index e1545619..80647846 100644 --- a/data/generated/tld/homegoods.json +++ b/data/generated/tld/homegoods.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.homegoods/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.homegoods", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.homegoods/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/homes.json b/data/generated/tld/homes.json index e3acf397..8c4c7875 100644 --- a/data/generated/tld/homes.json +++ b/data/generated/tld/homes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.homes/", + "whois_server": "whois.nic.homes", + "rdap_server": "https://rdap.centralnic.com/homes/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.homes", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.homes/", - "whois_server": "whois.nic.homes", - "rdap_server": "https://rdap.centralnic.com/homes/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/homesense.json b/data/generated/tld/homesense.json index 4fc6e553..21de78a8 100644 --- a/data/generated/tld/homesense.json +++ b/data/generated/tld/homesense.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.homesense/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.homesense", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.homesense/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/honda.json b/data/generated/tld/honda.json index fbbba5e8..26ed72b9 100644 --- a/data/generated/tld/honda.json +++ b/data/generated/tld/honda.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://honda.com", + "whois_server": "whois.nic.honda", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://honda.com", - "whois_server": "whois.nic.honda", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/horse.json b/data/generated/tld/horse.json index b6e8b5ea..924af667 100644 --- a/data/generated/tld/horse.json +++ b/data/generated/tld/horse.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.horse/", + "whois_server": "whois.nic.horse", + "rdap_server": "https://rdap.nic.horse/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.horse", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.horse/", - "whois_server": "whois.nic.horse", - "rdap_server": "https://rdap.nic.horse/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hospital.json b/data/generated/tld/hospital.json index bd501742..e4a8cc32 100644 --- a/data/generated/tld/hospital.json +++ b/data/generated/tld/hospital.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-12-02", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.hospital", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-12-02", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/host.json b/data/generated/tld/host.json index b6119ef0..fb87a797 100644 --- a/data/generated/tld/host.json +++ b/data/generated/tld/host.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.host", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.host", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/hosting.json b/data/generated/tld/hosting.json index 53ae5473..f469cd87 100644 --- a/data/generated/tld/hosting.json +++ b/data/generated/tld/hosting.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.hosting", + "whois_server": "whois.nic.hosting", + "rdap_server": "https://rdap.centralnic.com/hosting/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.hosting", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.hosting", - "whois_server": "whois.nic.hosting", - "rdap_server": "https://rdap.centralnic.com/hosting/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/hot.json b/data/generated/tld/hot.json index f6e01572..4b6d5af6 100644 --- a/data/generated/tld/hot.json +++ b/data/generated/tld/hot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hot", + "rdap_server": "https://rdap.nominet.uk/hot/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.hot", "ipv4": [ { "ip": "213.248.218.69", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.69", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.hot", - "rdap_server": "https://rdap.nominet.uk/hot/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hotels.json b/data/generated/tld/hotels.json index ef2ee46e..77ad9a87 100644 --- a/data/generated/tld/hotels.json +++ b/data/generated/tld/hotels.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.booking.com", + "whois_server": "whois.nic.hotels", + "rdap_server": "https://rdap.nic.hotels/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hotels", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.booking.com", - "whois_server": "whois.nic.hotels", - "rdap_server": "https://rdap.nic.hotels/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hotmail.json b/data/generated/tld/hotmail.json index b39e68be..79d99e82 100644 --- a/data/generated/tld/hotmail.json +++ b/data/generated/tld/hotmail.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/hotmail/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.hotmail", "ipv4": [ { "ip": "213.248.219.131", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.131", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/hotmail/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/house.json b/data/generated/tld/house.json index 8e1192cd..8da74bb9 100644 --- a/data/generated/tld/house.json +++ b/data/generated/tld/house.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.house", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/how.json b/data/generated/tld/how.json index 282fd10b..3f533354 100644 --- a/data/generated/tld/how.json +++ b/data/generated/tld/how.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/hr.json b/data/generated/tld/hr.json index 181303b7..244dd290 100644 --- a/data/generated/tld/hr.json +++ b/data/generated/tld/hr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "CARNet - Croatian Academic and Research Network" } }, + "registry_url": "http://www.dns.hr", + "whois_server": "whois.dns.hr", + "tld_created": "1993-02-27", + "tld_updated": [ + "2023-10-11" + ], + "annotations": { + "country_name_iso": "Croatia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "hr-ns-1.carnet.hr", @@ -75,22 +91,6 @@ } ] } - ], - "registry_url": "http://www.dns.hr", - "whois_server": "whois.dns.hr", - "tld_created": "1993-02-27", - "tld_updated": [ - "2023-10-11" - ], - "annotations": { - "country_name_iso": "Croatia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hsbc.json b/data/generated/tld/hsbc.json index 297eed1a..37e714b5 100644 --- a/data/generated/tld/hsbc.json +++ b/data/generated/tld/hsbc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hsbc", + "rdap_server": "https://rdap.nic.hsbc/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hsbc", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.nic.hsbc", - "rdap_server": "https://rdap.nic.hsbc/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ht.json b/data/generated/tld/ht.json index 27694b8a..cb92b5f2 100644 --- a/data/generated/tld/ht.json +++ b/data/generated/tld/ht.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Faculté des Sciences de l'Université d'Etat d'Haïti/ FRDDH" } }, + "registry_url": "http://www.nic.ht", + "whois_server": "whois.nic.ht", + "rdap_server": "https://rdap.nic.ht/", + "tld_created": "1997-03-06", + "tld_updated": [ + "2025-03-05" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Haiti", + "as_org_aliases": [ + "AFNIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -75,28 +97,6 @@ } ] } - ], - "registry_url": "http://www.nic.ht", - "whois_server": "whois.nic.ht", - "rdap_server": "https://rdap.nic.ht/", - "tld_created": "1997-03-06", - "tld_updated": [ - "2025-03-05" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Haiti", - "as_org_aliases": [ - "AFNIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hu.json b/data/generated/tld/hu.json index e63dd35f..5c2b2dfc 100644 --- a/data/generated/tld/hu.json +++ b/data/generated/tld/hu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Council of Hungarian Internet Providers (CHIP)" } }, + "registry_url": "https://www.domain.hu", + "whois_server": "whois.nic.hu", + "tld_created": "1990-11-07", + "tld_updated": [ + "2025-09-12" + ], + "annotations": { + "country_name_iso": "Hungary", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.hu", @@ -151,26 +171,6 @@ } ] } - ], - "registry_url": "https://www.domain.hu", - "whois_server": "whois.nic.hu", - "tld_created": "1990-11-07", - "tld_updated": [ - "2025-09-12" - ], - "annotations": { - "country_name_iso": "Hungary", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/hughes.json b/data/generated/tld/hughes.json index b4dc1748..e55fe7aa 100644 --- a/data/generated/tld/hughes.json +++ b/data/generated/tld/hughes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.hughes.com/", + "whois_server": "whois.nic.hughes", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hughes", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.hughes.com/", - "whois_server": "whois.nic.hughes", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/hyatt.json b/data/generated/tld/hyatt.json index af918da9..0c85c2d1 100644 --- a/data/generated/tld/hyatt.json +++ b/data/generated/tld/hyatt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.hyatt.com", + "rdap_server": "https://rdap.nic.hyatt/", + "tld_created": "2016-07-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hyatt", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.hyatt.com", - "rdap_server": "https://rdap.nic.hyatt/", - "tld_created": "2016-07-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/hyundai.json b/data/generated/tld/hyundai.json index 20fc8bd5..26d40888 100644 --- a/data/generated/tld/hyundai.json +++ b/data/generated/tld/hyundai.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.hyundai.com", + "whois_server": "whois.nic.hyundai", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.hyundai.com", - "whois_server": "whois.nic.hyundai", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ibm.json b/data/generated/tld/ibm.json index ec49920d..51a5b3a6 100644 --- a/data/generated/tld/ibm.json +++ b/data/generated/tld/ibm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.ibm.com", + "whois_server": "whois.nic.ibm", + "rdap_server": "https://rdap.nic.ibm/", + "tld_created": "2014-09-25", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "iana_sponsor_alias": "IBM", + "iana_sponsor_slug": "ibm", + "iana_admin_alias": "IBM", + "iana_admin_slug": "ibm", + "iana_tech_alias": "IBM", + "iana_tech_slug": "ibm", + "icann_registry_operator_alias": "IBM", + "icann_registry_operator_slug": "ibm", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ibm", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.ibm.com", - "whois_server": "whois.nic.ibm", - "rdap_server": "https://rdap.nic.ibm/", - "tld_created": "2014-09-25", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "iana_sponsor_alias": "IBM", - "iana_sponsor_slug": "ibm", - "iana_admin_alias": "IBM", - "iana_admin_slug": "ibm", - "iana_tech_alias": "IBM", - "iana_tech_slug": "ibm", - "icann_registry_operator_alias": "IBM", - "icann_registry_operator_slug": "ibm", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/icbc.json b/data/generated/tld/icbc.json index f12aa1db..0e375493 100644 --- a/data/generated/tld/icbc.json +++ b/data/generated/tld/icbc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.icbc.com.cn/ICBC/%E5%9F%9F%E5%90%8D%E6%B3%A8%E5%86%8C%E5%B1%80/default.htm", + "whois_server": "whois.nic.icbc", + "rdap_server": "https://rdap.zdnsgtld.com/icbc/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,29 +148,6 @@ } ] } - ], - "registry_url": "http://www.icbc.com.cn/ICBC/%E5%9F%9F%E5%90%8D%E6%B3%A8%E5%86%8C%E5%B1%80/default.htm", - "whois_server": "whois.nic.icbc", - "rdap_server": "https://rdap.zdnsgtld.com/icbc/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/ice.json b/data/generated/tld/ice.json index ae9363ee..c05fc633 100644 --- a/data/generated/tld/ice.json +++ b/data/generated/tld/ice.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ice", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2023-09-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ice", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.ice", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2023-09-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/icu.json b/data/generated/tld/icu.json index c9f9c8cc..b8031563 100644 --- a/data/generated/tld/icu.json +++ b/data/generated/tld/icu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.icu/", + "whois_server": "whois.nic.icu", + "rdap_server": "https://rdap.centralnic.com/icu", + "tld_created": "2015-03-06", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.icu", @@ -105,32 +131,6 @@ } ] } - ], - "registry_url": "http://nic.icu/", - "whois_server": "whois.nic.icu", - "rdap_server": "https://rdap.centralnic.com/icu", - "tld_created": "2015-03-06", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/id.json b/data/generated/tld/id.json index a52d24f4..b2b37605 100644 --- a/data/generated/tld/id.json +++ b/data/generated/tld/id.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,18 @@ "tech": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)" } }, + "registry_url": "https://pandi.id", + "whois_server": "whois.id", + "rdap_server": "https://rdap.pandi.id/rdap/", + "tld_created": "1993-02-27", + "tld_updated": [ + "2023-11-22" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Indonesia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.id", @@ -113,18 +125,6 @@ } ] } - ], - "registry_url": "https://pandi.id", - "whois_server": "whois.id", - "rdap_server": "https://rdap.pandi.id/rdap/", - "tld_created": "1993-02-27", - "tld_updated": [ - "2023-11-22" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Indonesia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ie.json b/data/generated/tld/ie.json index 2c7732ca..e5f2e357 100644 --- a/data/generated/tld/ie.json +++ b/data/generated/tld/ie.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "IE Domain Registry Limited" } }, + "registry_url": "http://www.weare.ie", + "whois_server": "whois.weare.ie", + "tld_created": "1988-01-27", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Ireland", + "as_org_aliases": [ + "AFNIC", + "CIRA", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "cira", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.ie", @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "http://www.weare.ie", - "whois_server": "whois.weare.ie", - "tld_created": "1988-01-27", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Ireland", - "as_org_aliases": [ - "AFNIC", - "CIRA", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "cira", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ieee.json b/data/generated/tld/ieee.json index 1dba33fc..4a29364b 100644 --- a/data/generated/tld/ieee.json +++ b/data/generated/tld/ieee.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "http://www.ieee.org", + "rdap_server": "https://rdap.nominet.uk/ieee/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.ieee", "ipv4": [ { "ip": "213.248.219.125", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.83.125", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "http://www.ieee.org", - "rdap_server": "https://rdap.nominet.uk/ieee/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ifm.json b/data/generated/tld/ifm.json index 2800afd3..c3935c2d 100644 --- a/data/generated/tld/ifm.json +++ b/data/generated/tld/ifm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ifm.com", + "whois_server": "whois.nic.ifm", + "rdap_server": "https://rdap.nic.ifm", + "tld_created": "2015-01-15", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ifm.com", - "whois_server": "whois.nic.ifm", - "rdap_server": "https://rdap.nic.ifm", - "tld_created": "2015-01-15", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/ikano.json b/data/generated/tld/ikano.json index 581035c2..e45c49eb 100644 --- a/data/generated/tld/ikano.json +++ b/data/generated/tld/ikano.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.ikano.lu", + "whois_server": "whois.nic.ikano", + "rdap_server": "https://rdap.nic.ikano/v1/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.ikano", @@ -86,28 +108,6 @@ } ] } - ], - "registry_url": "http://www.ikano.lu", - "whois_server": "whois.nic.ikano", - "rdap_server": "https://rdap.nic.ikano/v1/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/il.json b/data/generated/tld/il.json index fa948881..0862947c 100644 --- a/data/generated/tld/il.json +++ b/data/generated/tld/il.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "The Israel Internet Association (RA)" } }, + "registry_url": "http://www.isoc.org.il/domains", + "whois_server": "whois.isoc.org.il", + "tld_created": "1985-10-24", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Israel", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ilns.ilan.net.il", @@ -157,24 +175,6 @@ "ipv6": [] } ], - "registry_url": "http://www.isoc.org.il/domains", - "whois_server": "whois.isoc.org.il", - "tld_created": "1985-10-24", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Israel", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--4dbrk0ce" ] diff --git a/data/generated/tld/im.json b/data/generated/tld/im.json index 8c5e93d5..16d2c207 100644 --- a/data/generated/tld/im.json +++ b/data/generated/tld/im.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Domicilium (IoM) Ltd" } }, + "registry_url": "http://www.nic.im", + "whois_server": "whois.nic.im", + "tld_created": "1996-09-11", + "tld_updated": [ + "2018-11-24" + ], + "annotations": { + "country_name_iso": "Isle of Man", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "barney.advsys.co.uk", @@ -73,16 +83,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.im", - "whois_server": "whois.nic.im", - "tld_created": "1996-09-11", - "tld_updated": [ - "2018-11-24" - ], - "annotations": { - "country_name_iso": "Isle of Man", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/imamat.json b/data/generated/tld/imamat.json index 912b4efa..361d4efd 100644 --- a/data/generated/tld/imamat.json +++ b/data/generated/tld/imamat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org", + "whois_server": "whois.nic.imamat", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.imamat", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.akdn.org", - "whois_server": "whois.nic.imamat", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/imdb.json b/data/generated/tld/imdb.json index 34dbe4b1..09e6840f 100644 --- a/data/generated/tld/imdb.json +++ b/data/generated/tld/imdb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.imdb", + "rdap_server": "https://rdap.nominet.uk/imdb/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.imdb", "ipv4": [ { "ip": "213.248.218.50", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.50", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.imdb", - "rdap_server": "https://rdap.nominet.uk/imdb/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/immo.json b/data/generated/tld/immo.json index 62fbaf5c..60b4782b 100644 --- a/data/generated/tld/immo.json +++ b/data/generated/tld/immo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.immo", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/immobilien.json b/data/generated/tld/immobilien.json index 16cf5f0c..ae341523 100644 --- a/data/generated/tld/immobilien.json +++ b/data/generated/tld/immobilien.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.immobilien", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/in.json b/data/generated/tld/in.json index 2d11e44e..445364b4 100644 --- a/data/generated/tld/in.json +++ b/data/generated/tld/in.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "rdap_server": "https://rdap.nixiregistry.in/rdap/", + "tld_created": "1989-05-08", + "tld_updated": [ + "2026-04-15" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "rdap_source": "IANA", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -95,32 +121,6 @@ ] } ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "rdap_server": "https://rdap.nixiregistry.in/rdap/", - "tld_created": "1989-05-08", - "tld_updated": [ - "2026-04-15" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "rdap_source": "IANA", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--2scrj9c", "xn--3hcrj9c", diff --git a/data/generated/tld/inc.json b/data/generated/tld/inc.json index 6f78b64c..fd1388e1 100644 --- a/data/generated/tld/inc.json +++ b/data/generated/tld/inc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://get.inc", + "whois_server": "whois.nic.inc", + "rdap_server": "https://rdap.centralnic.com/inc/", + "tld_created": "2018-07-03", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.inc", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://get.inc", - "whois_server": "whois.nic.inc", - "rdap_server": "https://rdap.centralnic.com/inc/", - "tld_created": "2018-07-03", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/industries.json b/data/generated/tld/industries.json index 418a4887..731749bd 100644 --- a/data/generated/tld/industries.json +++ b/data/generated/tld/industries.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.industries", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/infiniti.json b/data/generated/tld/infiniti.json index e2b41cb4..9dc56e58 100644 --- a/data/generated/tld/infiniti.json +++ b/data/generated/tld/infiniti.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/info.json b/data/generated/tld/info.json index 044a985d..4144bb63 100644 --- a/data/generated/tld/info.json +++ b/data/generated/tld/info.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2001-06-26", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.info.afilias-nst.info", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2001-06-26", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ing.json b/data/generated/tld/ing.json index df64d950..4e6788fd 100644 --- a/data/generated/tld/ing.json +++ b/data/generated/tld/ing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/ink.json b/data/generated/tld/ink.json index f4ee4e97..472775c1 100644 --- a/data/generated/tld/ink.json +++ b/data/generated/tld/ink.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.ink/", + "whois_server": "whois.nic.ink", + "rdap_server": "https://rdap.nic.ink/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ink", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.ink/", - "whois_server": "whois.nic.ink", - "rdap_server": "https://rdap.nic.ink/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/institute.json b/data/generated/tld/institute.json index 82fe18ca..e9315c8a 100644 --- a/data/generated/tld/institute.json +++ b/data/generated/tld/institute.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.institute", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/insurance.json b/data/generated/tld/insurance.json index fb2b3d62..7361c335 100644 --- a/data/generated/tld/insurance.json +++ b/data/generated/tld/insurance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "https://www.ftld.com/", + "whois_server": "whois.nic.insurance", + "rdap_server": "https://rdap.nic.insurance/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_sponsor_alias": "fTLD Registry", + "iana_sponsor_slug": "ftld-registry", + "iana_admin_alias": "fTLD Registry", + "iana_admin_slug": "ftld-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "fTLD Registry", + "icann_registry_operator_slug": "ftld-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "d.nic.insurance", @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,35 +172,6 @@ } ] } - ], - "registry_url": "https://www.ftld.com/", - "whois_server": "whois.nic.insurance", - "rdap_server": "https://rdap.nic.insurance/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_sponsor_alias": "fTLD Registry", - "iana_sponsor_slug": "ftld-registry", - "iana_admin_alias": "fTLD Registry", - "iana_admin_slug": "ftld-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "fTLD Registry", - "icann_registry_operator_slug": "ftld-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/insure.json b/data/generated/tld/insure.json index 26cdebf6..f093c6da 100644 --- a/data/generated/tld/insure.json +++ b/data/generated/tld/insure.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.insure", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/int.json b/data/generated/tld/int.json index c4df5283..f354b5ed 100644 --- a/data/generated/tld/int.json +++ b/data/generated/tld/int.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "ICANN" } }, + "registry_url": "https://www.iana.org/domains/int", + "whois_server": "whois.iana.org", + "rdap_server": "https://rdap.iana.org/", + "tld_created": "1988-11-03", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "rdap_source": "IANA", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "ns.uu.net", @@ -137,22 +153,6 @@ } ] } - ], - "registry_url": "https://www.iana.org/domains/int", - "whois_server": "whois.iana.org", - "rdap_server": "https://rdap.iana.org/", - "tld_created": "1988-11-03", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "rdap_source": "IANA", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/international.json b/data/generated/tld/international.json index ad2f8bc8..55360af6 100644 --- a/data/generated/tld/international.json +++ b/data/generated/tld/international.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.international", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/intuit.json b/data/generated/tld/intuit.json index 96c059c0..e2c776ed 100644 --- a/data/generated/tld/intuit.json +++ b/data/generated/tld/intuit.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.intuit.com/", + "rdap_server": "https://rdap.nic.intuit/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.intuit", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::52", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::52", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::52", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.intuit.com/", - "rdap_server": "https://rdap.nic.intuit/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/investments.json b/data/generated/tld/investments.json index 10e7b9ed..6284bbf5 100644 --- a/data/generated/tld/investments.json +++ b/data/generated/tld/investments.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.investments", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/io.json b/data/generated/tld/io.json index ec0f2474..194b9554 100644 --- a/data/generated/tld/io.json +++ b/data/generated/tld/io.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "Internet Computer Bureau Ltd" } }, + "registry_url": "http://www.nic.io/", + "whois_server": "whois.nic.io", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-09-16", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "British Indian Ocean Territory", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.io", @@ -94,30 +118,6 @@ } ] } - ], - "registry_url": "http://www.nic.io/", - "whois_server": "whois.nic.io", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-09-16", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "British Indian Ocean Territory", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ipiranga.json b/data/generated/tld/ipiranga.json index 54bb57f4..5305a607 100644 --- a/data/generated/tld/ipiranga.json +++ b/data/generated/tld/ipiranga.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://ipiranga.com.br", + "rdap_server": "https://rdap.nic.ipiranga/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ipiranga", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://ipiranga.com.br", - "rdap_server": "https://rdap.nic.ipiranga/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/iq.json b/data/generated/tld/iq.json index 87db6faf..eb5e630d 100644 --- a/data/generated/tld/iq.json +++ b/data/generated/tld/iq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Communications and Media Commission (CMC)" } }, + "registry_url": "https://registrar.cmc.iq", + "whois_server": "whois.cmc.iq", + "tld_created": "1997-05-09", + "tld_updated": [ + "2023-12-18" + ], + "annotations": { + "country_name_iso": "Iraq", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.cmc.iq", @@ -88,24 +106,6 @@ ] } ], - "registry_url": "https://registrar.cmc.iq", - "whois_server": "whois.cmc.iq", - "tld_created": "1997-05-09", - "tld_updated": [ - "2023-12-18" - ], - "annotations": { - "country_name_iso": "Iraq", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbtx2b" ] diff --git a/data/generated/tld/ir.json b/data/generated/tld/ir.json index f5a01d28..3c1bf381 100644 --- a/data/generated/tld/ir.json +++ b/data/generated/tld/ir.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Institute for Research in Fundamental Sciences (IPM)" } }, + "registry_url": "http://www.nic.ir", + "whois_server": "whois.nic.ir", + "tld_created": "1994-04-06", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Iran, Islamic Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ir", @@ -31,9 +41,9 @@ "ipv6": [ { "ip": "2001:678:b0:0:193:189:123:2", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 39200, + "as_org": "IRNICANYCAST-AS", + "as_country": "IR" } ] }, @@ -50,9 +60,9 @@ "ipv6": [ { "ip": "2001:678:b1:0:193:189:122:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 35285, + "as_org": "IRNIC-AS", + "as_country": "IR" } ] }, @@ -88,23 +98,13 @@ "ipv6": [ { "ip": "2001:14e8:c:0:194:225:70:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 6736, + "as_org": "IRANET-IPM Institute for Research in Fundamental Sciences IPM", + "as_country": "IR" } ] } ], - "registry_url": "http://www.nic.ir", - "whois_server": "whois.nic.ir", - "tld_created": "1994-04-06", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Iran, Islamic Republic of", - "geographic_scope": "country" - }, "idn": [ "xn--mgba3a4f16a" ] diff --git a/data/generated/tld/irish.json b/data/generated/tld/irish.json index 25a7b615..920e8cf8 100644 --- a/data/generated/tld/irish.json +++ b/data/generated/tld/irish.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.irish", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/is.json b/data/generated/tld/is.json index 34e520b1..5fc9ec29 100644 --- a/data/generated/tld/is.json +++ b/data/generated/tld/is.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "ISNIC - Internet á Íslandi hf." } }, + "registry_url": "https://www.isnic.is/", + "whois_server": "whois.isnic.is", + "rdap_server": "https://rdap.isnic.is/rdap/", + "tld_created": "1987-11-18", + "tld_updated": [ + "2026-02-18" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Iceland", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.is", @@ -113,26 +133,6 @@ } ] } - ], - "registry_url": "https://www.isnic.is/", - "whois_server": "whois.isnic.is", - "rdap_server": "https://rdap.isnic.is/rdap/", - "tld_created": "1987-11-18", - "tld_updated": [ - "2026-02-18" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Iceland", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ismaili.json b/data/generated/tld/ismaili.json index 8415bd0d..497bb180 100644 --- a/data/generated/tld/ismaili.json +++ b/data/generated/tld/ismaili.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.ismaili", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ismaili", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.ismaili", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ist.json b/data/generated/tld/ist.json index 679456dc..5a9b3aa2 100644 --- a/data/generated/tld/ist.json +++ b/data/generated/tld/ist.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.istanbul", + "whois_server": "whois.nic.ist", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.ist", @@ -105,28 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.istanbul", - "whois_server": "whois.nic.ist", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/istanbul.json b/data/generated/tld/istanbul.json index cb31b137..054ed9fe 100644 --- a/data/generated/tld/istanbul.json +++ b/data/generated/tld/istanbul.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.istanbul", + "whois_server": "whois.nic.istanbul", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.istanbul", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.istanbul", - "whois_server": "whois.nic.istanbul", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/it.json b/data/generated/tld/it.json index de154d74..c2a1fdae 100644 --- a/data/generated/tld/it.json +++ b/data/generated/tld/it.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "IIT - CNR" } }, + "registry_url": "https://www.nic.it/", + "whois_server": "whois.nic.it", + "tld_created": "1987-12-23", + "tld_updated": [ + "2025-12-17" + ], + "annotations": { + "country_name_iso": "Italy", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.it", @@ -132,22 +148,6 @@ } ] } - ], - "registry_url": "https://www.nic.it/", - "whois_server": "whois.nic.it", - "tld_created": "1987-12-23", - "tld_updated": [ - "2025-12-17" - ], - "annotations": { - "country_name_iso": "Italy", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/itau.json b/data/generated/tld/itau.json index 47eb4d8a..9738cb88 100644 --- a/data/generated/tld/itau.json +++ b/data/generated/tld/itau.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.itau.com", + "rdap_server": "https://rdap.nic.itau/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.itau", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.itau.com", - "rdap_server": "https://rdap.nic.itau/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/itv.json b/data/generated/tld/itv.json index 31a22356..00b33256 100644 --- a/data/generated/tld/itv.json +++ b/data/generated/tld/itv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.itv.com", + "whois_server": "whois.nic.itv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.itv", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.itv.com", - "whois_server": "whois.nic.itv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jaguar.json b/data/generated/tld/jaguar.json index 6bf16640..68c6a2fa 100644 --- a/data/generated/tld/jaguar.json +++ b/data/generated/tld/jaguar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.jaguar", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jaguar", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.jaguar", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/java.json b/data/generated/tld/java.json index adca3e53..f0989bd4 100644 --- a/data/generated/tld/java.json +++ b/data/generated/tld/java.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.java", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-02-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.java", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.java", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-02-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jcb.json b/data/generated/tld/jcb.json index 0dada65e..b144ecb2 100644 --- a/data/generated/tld/jcb.json +++ b/data/generated/tld/jcb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.jcb", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.jcb", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/je.json b/data/generated/tld/je.json index eed6a21f..eb40f70e 100644 --- a/data/generated/tld/je.json +++ b/data/generated/tld/je.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Island Networks Limited" } }, + "registry_url": "http://www.nic.je", + "whois_server": "whois.je", + "tld_created": "1996-08-08", + "tld_updated": [ + "2024-02-12" + ], + "annotations": { + "country_name_iso": "Jersey", + "as_org_aliases": [ + "Nominet", + "Packet Clearing House" + ], + "as_org_slugs": [ + "nominet", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.ci-servers.org", @@ -42,8 +60,8 @@ "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -61,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.nic.je", - "whois_server": "whois.je", - "tld_created": "1996-08-08", - "tld_updated": [ - "2024-02-12" - ], - "annotations": { - "country_name_iso": "Jersey", - "as_org_aliases": [ - "Nominet", - "Packet Clearing House" - ], - "as_org_slugs": [ - "nominet", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/jeep.json b/data/generated/tld/jeep.json index bb82d50f..13dae570 100644 --- a/data/generated/tld/jeep.json +++ b/data/generated/tld/jeep.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.fcausllc.com/", + "whois_server": "whois.nic.jeep", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-07", + "tld_updated": [ + "2026-05-20" + ], + "annotations": { + "iana_sponsor_alias": "Stellantis", + "iana_sponsor_slug": "stellantis", + "iana_admin_alias": "Stellantis", + "iana_admin_slug": "stellantis", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Stellantis", + "icann_registry_operator_slug": "stellantis", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a2.nic.jeep", @@ -124,35 +153,6 @@ } ] } - ], - "registry_url": "http://www.fcausllc.com/", - "whois_server": "whois.nic.jeep", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-07", - "tld_updated": [ - "2026-05-20" - ], - "annotations": { - "iana_sponsor_alias": "Stellantis", - "iana_sponsor_slug": "stellantis", - "iana_admin_alias": "Stellantis", - "iana_admin_slug": "stellantis", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Stellantis", - "icann_registry_operator_slug": "stellantis", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jetzt.json b/data/generated/tld/jetzt.json index bb103fab..d2ac5b8b 100644 --- a/data/generated/tld/jetzt.json +++ b/data/generated/tld/jetzt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.jetzt", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jewelry.json b/data/generated/tld/jewelry.json index a231da07..57cce75e 100644 --- a/data/generated/tld/jewelry.json +++ b/data/generated/tld/jewelry.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.jewelry", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jio.json b/data/generated/tld/jio.json index 57ea32dc..56200d19 100644 --- a/data/generated/tld/jio.json +++ b/data/generated/tld/jio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.jio", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2024-04-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jio", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.jio", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2024-04-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jll.json b/data/generated/tld/jll.json index ed0e7867..d8c58807 100644 --- a/data/generated/tld/jll.json +++ b/data/generated/tld/jll.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.jll.com", + "whois_server": "whois.nic.jll", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jll", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.jll.com", - "whois_server": "whois.nic.jll", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/jm.json b/data/generated/tld/jm.json index f1504908..987ba7c1 100644 --- a/data/generated/tld/jm.json +++ b/data/generated/tld/jm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,14 @@ "tech": "Mona Information Technology Services\nUniversity of the West Indies" } }, + "tld_created": "1991-09-24", + "tld_updated": [ + "2025-07-10" + ], + "annotations": { + "country_name_iso": "Jamaica", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "jm.cctld.authdns.ripe.net", @@ -80,14 +88,6 @@ } ] } - ], - "tld_created": "1991-09-24", - "tld_updated": [ - "2025-07-10" - ], - "annotations": { - "country_name_iso": "Jamaica", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/jmp.json b/data/generated/tld/jmp.json index afca135d..bc12e7fd 100644 --- a/data/generated/tld/jmp.json +++ b/data/generated/tld/jmp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.jmp.com", + "rdap_server": "https://rdap.nic.jmp/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.jmp", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.jmp.com", - "rdap_server": "https://rdap.nic.jmp/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/jnj.json b/data/generated/tld/jnj.json index 7452c613..c3a5daf9 100644 --- a/data/generated/tld/jnj.json +++ b/data/generated/tld/jnj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.jnj.com/", + "rdap_server": "https://rdap.centralnicregistry.com/jnj", + "tld_created": "2016-01-14", + "tld_updated": [ + "2025-04-09" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "w.nic.jnj", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.jnj.com/", - "rdap_server": "https://rdap.centralnicregistry.com/jnj", - "tld_created": "2016-01-14", - "tld_updated": [ - "2025-04-09" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/jo.json b/data/generated/tld/jo.json index 62dc33a3..96a8300e 100644 --- a/data/generated/tld/jo.json +++ b/data/generated/tld/jo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Ministry of Digital Economy and Entrepreneurship (MoDEE)" } }, + "registry_url": "https://www.dns.jo", + "tld_created": "1994-11-23", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Jordan", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.cctld-servers.net.jo", @@ -133,21 +148,6 @@ ] } ], - "registry_url": "https://www.dns.jo", - "tld_created": "1994-11-23", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Jordan", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbayh7gpa" ] diff --git a/data/generated/tld/jobs.json b/data/generated/tld/jobs.json index f5ecf39f..cf32fe53 100644 --- a/data/generated/tld/jobs.json +++ b/data/generated/tld/jobs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.goto.jobs", + "rdap_server": "https://rdap.nominet.uk/jobs/", + "tld_created": "2005-09-08", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.jobs", "ipv4": [ { "ip": "213.248.219.120", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.120", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.goto.jobs", - "rdap_server": "https://rdap.nominet.uk/jobs/", - "tld_created": "2005-09-08", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/joburg.json b/data/generated/tld/joburg.json index 2a7b6443..9065fabf 100644 --- a/data/generated/tld/joburg.json +++ b/data/generated/tld/joburg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.registry.net.za", + "whois_server": "whois.nic.joburg", + "rdap_server": "https://rdap.nic.joburg/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -86,33 +113,6 @@ } ] } - ], - "registry_url": "http://www.registry.net.za", - "whois_server": "whois.nic.joburg", - "rdap_server": "https://rdap.nic.joburg/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/jot.json b/data/generated/tld/jot.json index b6467c5f..04e93e29 100644 --- a/data/generated/tld/jot.json +++ b/data/generated/tld/jot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.jot", + "rdap_server": "https://rdap.nominet.uk/jot/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-05-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.jot", "ipv4": [ { "ip": "213.248.218.70", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.82.70", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "http://www.nic.jot", - "rdap_server": "https://rdap.nominet.uk/jot/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-05-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/joy.json b/data/generated/tld/joy.json index 6e9f68d5..116c7cbf 100644 --- a/data/generated/tld/joy.json +++ b/data/generated/tld/joy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.joy", + "rdap_server": "https://rdap.nominet.uk/joy/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.joy", "ipv4": [ { "ip": "213.248.218.71", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.71", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.joy", - "rdap_server": "https://rdap.nominet.uk/joy/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/jp.json b/data/generated/tld/jp.json index 18ba5562..27240e60 100644 --- a/data/generated/tld/jp.json +++ b/data/generated/tld/jp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Japan Registry Services Co., Ltd." } }, + "registry_url": "https://jprs.jp/", + "whois_server": "whois.jprs.jp", + "tld_created": "1986-08-05", + "tld_updated": [ + "2025-11-06" + ], + "annotations": { + "country_name_iso": "Japan", + "as_org_aliases": [ + "Identity Digital", + "UltraDNS" + ], + "as_org_slugs": [ + "identity-digital", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.jp", @@ -163,24 +181,6 @@ } ] } - ], - "registry_url": "https://jprs.jp/", - "whois_server": "whois.jprs.jp", - "tld_created": "1986-08-05", - "tld_updated": [ - "2025-11-06" - ], - "annotations": { - "country_name_iso": "Japan", - "as_org_aliases": [ - "Identity Digital", - "UltraDNS" - ], - "as_org_slugs": [ - "identity-digital", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/jpmorgan.json b/data/generated/tld/jpmorgan.json index 695400f9..b99416e8 100644 --- a/data/generated/tld/jpmorgan.json +++ b/data/generated/tld/jpmorgan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.jpmorganchase.com", + "rdap_server": "https://rdap.nic.jpmorgan/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.jpmorgan", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::5c", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::5c", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::5c", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.jpmorganchase.com", - "rdap_server": "https://rdap.nic.jpmorgan/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/jprs.json b/data/generated/tld/jprs.json index bcaf33a7..bc89932f 100644 --- a/data/generated/tld/jprs.json +++ b/data/generated/tld/jprs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "https://nic.jprs/", + "whois_server": "whois.nic.jprs", + "rdap_server": "https://rdap.nic.jprs/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-09-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.jprs", @@ -124,26 +144,6 @@ } ] } - ], - "registry_url": "https://nic.jprs/", - "whois_server": "whois.nic.jprs", - "rdap_server": "https://rdap.nic.jprs/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-09-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/juegos.json b/data/generated/tld/juegos.json index 906187d2..9717658f 100644 --- a/data/generated/tld/juegos.json +++ b/data/generated/tld/juegos.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-09-25" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.juegos", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-09-25" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/juniper.json b/data/generated/tld/juniper.json index 07ff840d..548d9b0f 100644 --- a/data/generated/tld/juniper.json +++ b/data/generated/tld/juniper.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://juniper.net", + "whois_server": "whois.nic.juniper", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.juniper", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://juniper.net", - "whois_server": "whois.nic.juniper", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kaufen.json b/data/generated/tld/kaufen.json index 92cc09e1..ec90af70 100644 --- a/data/generated/tld/kaufen.json +++ b/data/generated/tld/kaufen.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.kaufen", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kddi.json b/data/generated/tld/kddi.json index fa1cdc2e..378a0127 100644 --- a/data/generated/tld/kddi.json +++ b/data/generated/tld/kddi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.kddi", + "whois_server": "whois.nic.kddi", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.kddi", - "whois_server": "whois.nic.kddi", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ke.json b/data/generated/tld/ke.json index b7a6f70d..25e621e0 100644 --- a/data/generated/tld/ke.json +++ b/data/generated/tld/ke.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Kenya Network Information Center (KeNIC)" } }, + "registry_url": "http://www.kenic.or.ke", + "whois_server": "whois.kenic.or.ke", + "rdap_server": "https://rdap.kenic.or.ke", + "tld_created": "1993-04-29", + "tld_updated": [ + "2025-10-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Kenya", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "kenic.anycastdns.cz", @@ -41,9 +59,9 @@ "ipv4": [ { "ip": "196.13.202.53", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 36948, + "as_org": "KENIC", + "as_country": "KE" }, { "ip": "196.1.4.130", @@ -105,24 +123,6 @@ } ] } - ], - "registry_url": "http://www.kenic.or.ke", - "whois_server": "whois.kenic.or.ke", - "rdap_server": "https://rdap.kenic.or.ke", - "tld_created": "1993-04-29", - "tld_updated": [ - "2025-10-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Kenya", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kerryhotels.json b/data/generated/tld/kerryhotels.json index adff59ec..816c0dc7 100644 --- a/data/generated/tld/kerryhotels.json +++ b/data/generated/tld/kerryhotels.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kerryhotels", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kerryhotels", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kerryhotels", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kerryproperties.json b/data/generated/tld/kerryproperties.json index 1f8b66fe..b7f79c94 100644 --- a/data/generated/tld/kerryproperties.json +++ b/data/generated/tld/kerryproperties.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kerryproperties", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kerryproperties", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kerryproperties", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kfh.json b/data/generated/tld/kfh.json index 315d8c9f..bb1f5447 100644 --- a/data/generated/tld/kfh.json +++ b/data/generated/tld/kfh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://kfh.com", + "whois_server": "whois.nic.kfh", + "rdap_server": "https://rdap.registry.kfh/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2026-04-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://kfh.com", - "whois_server": "whois.nic.kfh", - "rdap_server": "https://rdap.registry.kfh/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2026-04-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/kg.json b/data/generated/tld/kg.json index 7a6b2e73..7314dd81 100644 --- a/data/generated/tld/kg.json +++ b/data/generated/tld/kg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,18 @@ "tech": "AsiaInfo Telecommunication Enterprise" } }, + "registry_url": "https://www.cctld.kg/", + "whois_server": "whois.kg", + "rdap_server": "http://rdap.cctld.kg/", + "tld_created": "1995-07-12", + "tld_updated": [ + "2025-07-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Kyrgyzstan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "kg.cctld.authdns.ripe.net", @@ -75,18 +87,6 @@ } ] } - ], - "registry_url": "https://www.cctld.kg/", - "whois_server": "whois.kg", - "rdap_server": "http://rdap.cctld.kg/", - "tld_created": "1995-07-12", - "tld_updated": [ - "2025-07-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Kyrgyzstan", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kh.json b/data/generated/tld/kh.json index 19e5b243..fca9bef9 100644 --- a/data/generated/tld/kh.json +++ b/data/generated/tld/kh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "TRC" } }, + "registry_url": "http://www.trc.gov.kh", + "tld_created": "1996-02-20", + "tld_updated": [ + "2026-02-26" + ], + "annotations": { + "country_name_iso": "Cambodia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.online.com.kh", @@ -73,15 +82,6 @@ } ] } - ], - "registry_url": "http://www.trc.gov.kh", - "tld_created": "1996-02-20", - "tld_updated": [ - "2026-02-26" - ], - "annotations": { - "country_name_iso": "Cambodia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ki.json b/data/generated/tld/ki.json index 4b19370c..06e54f73 100644 --- a/data/generated/tld/ki.json +++ b/data/generated/tld/ki.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Communications Commission of Kiribati" } }, + "registry_url": "http://www.nic.ki", + "whois_server": "whois.nic.ki", + "tld_created": "1995-04-19", + "tld_updated": [ + "2024-02-06" + ], + "annotations": { + "country_name_iso": "Kiribati", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycastdns1.nic.ki", @@ -68,22 +84,6 @@ } ] } - ], - "registry_url": "http://www.nic.ki", - "whois_server": "whois.nic.ki", - "tld_created": "1995-04-19", - "tld_updated": [ - "2024-02-06" - ], - "annotations": { - "country_name_iso": "Kiribati", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kia.json b/data/generated/tld/kia.json index 91f8ba5d..fa13e8f7 100644 --- a/data/generated/tld/kia.json +++ b/data/generated/tld/kia.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.kia.com", + "whois_server": "whois.nic.kia", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.kia.com", - "whois_server": "whois.nic.kia", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/kids.json b/data/generated/tld/kids.json index 4aab48dd..d3a95475 100644 --- a/data/generated/tld/kids.json +++ b/data/generated/tld/kids.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.dotkids.asia", + "whois_server": "whois.nic.kids", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2022-03-05", + "tld_updated": [ + "2025-09-02" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kids", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.dotkids.asia", - "whois_server": "whois.nic.kids", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2022-03-05", - "tld_updated": [ - "2025-09-02" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kim.json b/data/generated/tld/kim.json index 2c6c5ecb..954070b7 100644 --- a/data/generated/tld/kim.json +++ b/data/generated/tld/kim.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kim", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kindle.json b/data/generated/tld/kindle.json index 1ba262f6..2be420b4 100644 --- a/data/generated/tld/kindle.json +++ b/data/generated/tld/kindle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,42 @@ "date_removed": null } }, + "registry_url": "http://www.nic.kindle", + "rdap_server": "https://rdap.nominet.uk/kindle/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.kindle", "ipv4": [ { "ip": "213.248.218.58", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +81,8 @@ "ipv4": [ { "ip": "103.49.82.58", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,34 +209,6 @@ } ] } - ], - "registry_url": "http://www.nic.kindle", - "rdap_server": "https://rdap.nominet.uk/kindle/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/kitchen.json b/data/generated/tld/kitchen.json index 9ee90171..625e801f 100644 --- a/data/generated/tld/kitchen.json +++ b/data/generated/tld/kitchen.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.kitchen", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kiwi.json b/data/generated/tld/kiwi.json index 2412d44f..20b8df12 100644 --- a/data/generated/tld/kiwi.json +++ b/data/generated/tld/kiwi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://hello.kiwi", + "whois_server": "whois.nic.kiwi", + "rdap_server": "https://rdap.kiwi.fury.ca/rdap/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "cultural_affiliation": "kiwi" + }, "nameservers": [ { "hostname": "a.ns.nic.kiwi", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "http://hello.kiwi", - "whois_server": "whois.nic.kiwi", - "rdap_server": "https://rdap.kiwi.fury.ca/rdap/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "cultural_affiliation": "kiwi" - } + ] } } diff --git a/data/generated/tld/km.json b/data/generated/tld/km.json index 49824251..4e335dad 100644 --- a/data/generated/tld/km.json +++ b/data/generated/tld/km.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Comores Telecom" } }, + "registry_url": "http://www.domaine.km/", + "tld_created": "1998-06-08", + "tld_updated": [ + "2020-06-01" + ], + "annotations": { + "country_name_iso": "Comoros", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.km", @@ -61,15 +70,6 @@ } ] } - ], - "registry_url": "http://www.domaine.km/", - "tld_created": "1998-06-08", - "tld_updated": [ - "2020-06-01" - ], - "annotations": { - "country_name_iso": "Comoros", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kn.json b/data/generated/tld/kn.json index f4a1fc2e..43465e6d 100644 --- a/data/generated/tld/kn.json +++ b/data/generated/tld/kn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "whois_server": "whois.nic.kn", + "tld_created": "1991-09-03", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Saint Kitts and Nevis", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -68,21 +83,6 @@ } ] } - ], - "whois_server": "whois.nic.kn", - "tld_created": "1991-09-03", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Saint Kitts and Nevis", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/koeln.json b/data/generated/tld/koeln.json index 9bb8994f..fed50b0e 100644 --- a/data/generated/tld/koeln.json +++ b/data/generated/tld/koeln.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.koeln", + "whois_server": "whois.ryce-rsp.com", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -86,29 +109,6 @@ } ] } - ], - "registry_url": "https://www.nic.koeln", - "whois_server": "whois.ryce-rsp.com", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/komatsu.json b/data/generated/tld/komatsu.json index 27eb5897..3eb96553 100644 --- a/data/generated/tld/komatsu.json +++ b/data/generated/tld/komatsu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.komatsu.com/", + "whois_server": "whois.nic.komatsu", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.komatsu.com/", - "whois_server": "whois.nic.komatsu", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/kosher.json b/data/generated/tld/kosher.json index 938ec770..4c0733e0 100644 --- a/data/generated/tld/kosher.json +++ b/data/generated/tld/kosher.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.ok.org/", + "whois_server": "whois.nic.kosher", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2023-08-07" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kosher", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.ok.org/", - "whois_server": "whois.nic.kosher", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2023-08-07" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kp.json b/data/generated/tld/kp.json index e73479da..ff1ee82c 100644 --- a/data/generated/tld/kp.json +++ b/data/generated/tld/kp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Star Joint Venture Company" } }, + "registry_url": "http://www.star.co.kp", + "tld_created": "2007-09-24", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Korea, Democratic People's Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.kptc.kp", @@ -42,15 +51,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.star.co.kp", - "tld_created": "2007-09-24", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Korea, Democratic People's Republic of", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kpmg.json b/data/generated/tld/kpmg.json index 45afe64b..f3c381a7 100644 --- a/data/generated/tld/kpmg.json +++ b/data/generated/tld/kpmg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://home.kpmg.com", + "rdap_server": "https://rdap.nic.kpmg/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.kpmg", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://home.kpmg.com", - "rdap_server": "https://rdap.nic.kpmg/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/kpn.json b/data/generated/tld/kpn.json index 7cad6430..5696cef8 100644 --- a/data/generated/tld/kpn.json +++ b/data/generated/tld/kpn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.centralnic.com/kpn", + "tld_created": "2015-12-04", + "tld_updated": [ + "2024-06-04" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.kpn", @@ -105,27 +126,6 @@ } ] } - ], - "rdap_server": "https://rdap.centralnic.com/kpn", - "tld_created": "2015-12-04", - "tld_updated": [ - "2024-06-04" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/kr.json b/data/generated/tld/kr.json index b2b81dc5..8a97084b 100644 --- a/data/generated/tld/kr.json +++ b/data/generated/tld/kr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "Korea Internet & Security Agency (KISA)" } }, + "registry_url": "http://www.nic.or.kr/", + "whois_server": "whois.kr", + "tld_created": "1986-09-29", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "iana_sponsor_alias": "KISA", + "iana_sponsor_slug": "kisa", + "iana_tech_alias": "KISA", + "iana_tech_slug": "kisa", + "country_name_iso": "Korea, Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.kr", @@ -119,20 +133,6 @@ ] } ], - "registry_url": "http://www.nic.or.kr/", - "whois_server": "whois.kr", - "tld_created": "1986-09-29", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "iana_sponsor_alias": "KISA", - "iana_sponsor_slug": "kisa", - "iana_tech_alias": "KISA", - "iana_tech_slug": "kisa", - "country_name_iso": "Korea, Republic of", - "geographic_scope": "country" - }, "idn": [ "xn--3e0b707e" ] diff --git a/data/generated/tld/krd.json b/data/generated/tld/krd.json index 72c6a827..c987dda3 100644 --- a/data/generated/tld/krd.json +++ b/data/generated/tld/krd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://dot.krd", + "whois_server": "whois.nic.krd", + "rdap_server": "https://rdap.nic.krd", + "tld_created": "2014-07-10", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "kurdish" + }, "nameservers": [ { "hostname": "a.nic.krd", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://dot.krd", - "whois_server": "whois.nic.krd", - "rdap_server": "https://rdap.nic.krd", - "tld_created": "2014-07-10", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "cultural_affiliation": "kurdish" - } + ] } } diff --git a/data/generated/tld/kred.json b/data/generated/tld/kred.json index 1a373b5f..8907ce6b 100644 --- a/data/generated/tld/kred.json +++ b/data/generated/tld/kred.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.peoplebrowsr.com", + "rdap_server": "https://rdap.centralnic.com/kred/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.kred", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://www.peoplebrowsr.com", - "rdap_server": "https://rdap.centralnic.com/kred/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/kuokgroup.json b/data/generated/tld/kuokgroup.json index 8bf738f1..9112819f 100644 --- a/data/generated/tld/kuokgroup.json +++ b/data/generated/tld/kuokgroup.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kuokgroup", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kuokgroup", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kuokgroup", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/kw.json b/data/generated/tld/kw.json index 29c19ed4..8d78253a 100644 --- a/data/generated/tld/kw.json +++ b/data/generated/tld/kw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "Kuwaitnet General Trading & Contracting Co" } }, + "registry_url": "http://www.nic.kw", + "tld_created": "1992-10-26", + "tld_updated": [ + "2024-10-30" + ], + "annotations": { + "country_name_iso": "Kuwait", + "as_org_aliases": [ + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.kw", @@ -99,23 +116,6 @@ } ] } - ], - "registry_url": "http://www.nic.kw", - "tld_created": "1992-10-26", - "tld_updated": [ - "2024-10-30" - ], - "annotations": { - "country_name_iso": "Kuwait", - "as_org_aliases": [ - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ky.json b/data/generated/tld/ky.json index 91b2cbf8..c1575c90 100644 --- a/data/generated/tld/ky.json +++ b/data/generated/tld/ky.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Tucows.com, Co." } }, + "registry_url": "http://uniregistry.com", + "whois_server": "whois.kyregistry.ky", + "rdap_server": "https://whois.kyregistry.ky/rdap/", + "tld_created": "1995-05-03", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "country_name_iso": "Cayman Islands", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -94,28 +116,6 @@ } ] } - ], - "registry_url": "http://uniregistry.com", - "whois_server": "whois.kyregistry.ky", - "rdap_server": "https://whois.kyregistry.ky/rdap/", - "tld_created": "1995-05-03", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "country_name_iso": "Cayman Islands", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/kyoto.json b/data/generated/tld/kyoto.json index 3ca68f58..dedf5fe7 100644 --- a/data/generated/tld/kyoto.json +++ b/data/generated/tld/kyoto.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.kyoto", + "whois_server": "whois.nic.kyoto", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.kyoto", - "whois_server": "whois.nic.kyoto", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/kz.json b/data/generated/tld/kz.json index e264cf2b..7684a77c 100644 --- a/data/generated/tld/kz.json +++ b/data/generated/tld/kz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "KazNIC Organization" } }, + "registry_url": "http://www.nic.kz", + "whois_server": "whois.nic.kz", + "tld_created": "1994-09-19", + "tld_updated": [ + "2023-01-24" + ], + "annotations": { + "country_name_iso": "Kazakhstan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.nic.kz", @@ -76,22 +92,6 @@ ] } ], - "registry_url": "http://www.nic.kz", - "whois_server": "whois.nic.kz", - "tld_created": "1994-09-19", - "tld_updated": [ - "2023-01-24" - ], - "annotations": { - "country_name_iso": "Kazakhstan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--80ao21a" ] diff --git a/data/generated/tld/la.json b/data/generated/tld/la.json index 76eb9990..912f7485 100644 --- a/data/generated/tld/la.json +++ b/data/generated/tld/la.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Lao National Internet Center (LANIC)" } }, + "registry_url": "http://www.la", + "whois_server": "whois.nic.la", + "tld_created": "1996-05-14", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Lao People's Democratic Republic", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.la", @@ -95,22 +111,6 @@ ] } ], - "registry_url": "http://www.la", - "whois_server": "whois.nic.la", - "tld_created": "1996-05-14", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Lao People's Democratic Republic", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--q7ce6a" ] diff --git a/data/generated/tld/lacaixa.json b/data/generated/tld/lacaixa.json index ced55374..1f6685bf 100644 --- a/data/generated/tld/lacaixa.json +++ b/data/generated/tld/lacaixa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.lacaixa.com", + "whois_server": "whois.nic.lacaixa", + "rdap_server": "https://rdap.nic.lacaixa/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,26 +125,6 @@ } ] } - ], - "registry_url": "http://www.lacaixa.com", - "whois_server": "whois.nic.lacaixa", - "rdap_server": "https://rdap.nic.lacaixa/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/lamborghini.json b/data/generated/tld/lamborghini.json index 7ed2d3fe..70ca4f0b 100644 --- a/data/generated/tld/lamborghini.json +++ b/data/generated/tld/lamborghini.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.lamborghini.com", + "whois_server": "whois.nic.lamborghini", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Audi", + "iana_sponsor_slug": "audi", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Audi", + "icann_registry_operator_slug": "audi", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lamborghini", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.lamborghini.com", - "whois_server": "whois.nic.lamborghini", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Audi", - "iana_sponsor_slug": "audi", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Audi", - "icann_registry_operator_slug": "audi", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lamer.json b/data/generated/tld/lamer.json index 2fe84382..87c1a444 100644 --- a/data/generated/tld/lamer.json +++ b/data/generated/tld/lamer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.lamer", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lamer", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.lamer", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/land.json b/data/generated/tld/land.json index 10214a9e..74e8f276 100644 --- a/data/generated/tld/land.json +++ b/data/generated/tld/land.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.land", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/landrover.json b/data/generated/tld/landrover.json index 29e8f3e7..08ff2d52 100644 --- a/data/generated/tld/landrover.json +++ b/data/generated/tld/landrover.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.landrover", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.landrover", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.landrover", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lanxess.json b/data/generated/tld/lanxess.json index 40cb2c26..5be3f152 100644 --- a/data/generated/tld/lanxess.json +++ b/data/generated/tld/lanxess.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.lanxess.com", + "rdap_server": "https://rdap.nic.lanxess/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lanxess", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.lanxess.com", - "rdap_server": "https://rdap.nic.lanxess/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lasalle.json b/data/generated/tld/lasalle.json index 9f973afb..f5f23622 100644 --- a/data/generated/tld/lasalle.json +++ b/data/generated/tld/lasalle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.jll.com", + "whois_server": "whois.nic.lasalle", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lasalle", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.jll.com", - "whois_server": "whois.nic.lasalle", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lat.json b/data/generated/tld/lat.json index b0bc064b..e3b3622f 100644 --- a/data/generated/tld/lat.json +++ b/data/generated/tld/lat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "https://nic.lat", + "whois_server": "whois.nic.lat", + "rdap_server": "https://rdap.centralnic.com/lat/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "a.nic.lat", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "https://nic.lat", - "whois_server": "whois.nic.lat", - "rdap_server": "https://rdap.centralnic.com/lat/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "supranational" - } + ] } } diff --git a/data/generated/tld/latino.json b/data/generated/tld/latino.json index 79aac237..fe347a09 100644 --- a/data/generated/tld/latino.json +++ b/data/generated/tld/latino.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.latino", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.latino", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/latrobe.json b/data/generated/tld/latrobe.json index 43a79b8d..306ee30d 100644 --- a/data/generated/tld/latrobe.json +++ b/data/generated/tld/latrobe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.latrobe", + "whois_server": "whois.nic.latrobe", + "rdap_server": "https://rdap.nic.latrobe/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.latrobe", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.latrobe", - "whois_server": "whois.nic.latrobe", - "rdap_server": "https://rdap.nic.latrobe/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/law.json b/data/generated/tld/law.json index 77c48939..ce7bc4d2 100644 --- a/data/generated/tld/law.json +++ b/data/generated/tld/law.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.law/", + "whois_server": "whois.nic.law", + "rdap_server": "https://rdap.nic.law/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.law", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.law/", - "whois_server": "whois.nic.law", - "rdap_server": "https://rdap.nic.law/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lawyer.json b/data/generated/tld/lawyer.json index 206a3429..8db4eb5e 100644 --- a/data/generated/tld/lawyer.json +++ b/data/generated/tld/lawyer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lawyer", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lb.json b/data/generated/tld/lb.json index a89e1e3e..98106313 100644 --- a/data/generated/tld/lb.json +++ b/data/generated/tld/lb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,18 @@ "tech": "5147 Crystal Springs Drive NE" } }, + "registry_url": "https://www.lbdr.org.lb", + "whois_server": "whois.lbdr.org.lb", + "rdap_server": "https://rdap.lbdr.org.lb", + "tld_created": "1993-08-25", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Lebanon", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.ns.lb", @@ -189,18 +201,6 @@ } ] } - ], - "registry_url": "https://www.lbdr.org.lb", - "whois_server": "whois.lbdr.org.lb", - "rdap_server": "https://rdap.lbdr.org.lb", - "tld_created": "1993-08-25", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Lebanon", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/lc.json b/data/generated/tld/lc.json index ea4981d7..ebbf0234 100644 --- a/data/generated/tld/lc.json +++ b/data/generated/tld/lc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "NIC LC" } }, + "registry_url": "http://www.nic.lc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Saint Lucia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -132,23 +149,6 @@ } ] } - ], - "registry_url": "http://www.nic.lc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Saint Lucia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/lds.json b/data/generated/tld/lds.json index 63cd360c..68f23de3 100644 --- a/data/generated/tld/lds.json +++ b/data/generated/tld/lds.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.lds.org", + "whois_server": "whois.nic.lds", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2023-08-15" + ], + "annotations": { + "iana_sponsor_alias": "LDS", + "iana_sponsor_slug": "lds", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "LDS", + "icann_registry_operator_slug": "lds", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lds", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.lds.org", - "whois_server": "whois.nic.lds", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2023-08-15" - ], - "annotations": { - "iana_sponsor_alias": "LDS", - "iana_sponsor_slug": "lds", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "LDS", - "icann_registry_operator_slug": "lds", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lease.json b/data/generated/tld/lease.json index 2bffe544..d93a4534 100644 --- a/data/generated/tld/lease.json +++ b/data/generated/tld/lease.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lease", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/leclerc.json b/data/generated/tld/leclerc.json index a2b9cb40..4ff549be 100644 --- a/data/generated/tld/leclerc.json +++ b/data/generated/tld/leclerc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.mouvement-leclerc.com", + "whois_server": "whois.nic.leclerc", + "rdap_server": "https://rdap.nic.leclerc", + "tld_created": "2015-01-29", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,32 +112,6 @@ } ] } - ], - "registry_url": "http://www.mouvement-leclerc.com", - "whois_server": "whois.nic.leclerc", - "rdap_server": "https://rdap.nic.leclerc", - "tld_created": "2015-01-29", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/lefrak.json b/data/generated/tld/lefrak.json index 7cf6edf0..4e3b4a81 100644 --- a/data/generated/tld/lefrak.json +++ b/data/generated/tld/lefrak.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://lefrak.com", + "whois_server": "whois.nic.lefrak", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lefrak", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://lefrak.com", - "whois_server": "whois.nic.lefrak", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/legal.json b/data/generated/tld/legal.json index af193c7f..06eba1d8 100644 --- a/data/generated/tld/legal.json +++ b/data/generated/tld/legal.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.legal", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lego.json b/data/generated/tld/lego.json index 369ca5a0..3de93efc 100644 --- a/data/generated/tld/lego.json +++ b/data/generated/tld/lego.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lego", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lego", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.lego", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lexus.json b/data/generated/tld/lexus.json index 52c92671..a0e6f7e3 100644 --- a/data/generated/tld/lexus.json +++ b/data/generated/tld/lexus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://lexus.jp/", + "whois_server": "whois.nic.lexus", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://lexus.jp/", - "whois_server": "whois.nic.lexus", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lgbt.json b/data/generated/tld/lgbt.json index ef15ae34..405e8d31 100644 --- a/data/generated/tld/lgbt.json +++ b/data/generated/tld/lgbt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lgbt", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/li.json b/data/generated/tld/li.json index c0c84c32..6ae9f92a 100644 --- a/data/generated/tld/li.json +++ b/data/generated/tld/li.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "SWITCH The Swiss Education & Research Network" } }, + "registry_url": "https://www.nic.li", + "whois_server": "whois.nic.li", + "rdap_server": "https://rdap.nic.li/", + "tld_created": "1993-02-26", + "tld_updated": [ + "2025-11-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Liechtenstein", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.li", @@ -113,26 +133,6 @@ } ] } - ], - "registry_url": "https://www.nic.li", - "whois_server": "whois.nic.li", - "rdap_server": "https://rdap.nic.li/", - "tld_created": "1993-02-26", - "tld_updated": [ - "2025-11-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Liechtenstein", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/lidl.json b/data/generated/tld/lidl.json index e0b56b34..6439cd00 100644 --- a/data/generated/tld/lidl.json +++ b/data/generated/tld/lidl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.lidl", + "whois_server": "whois.nic.lidl", + "rdap_server": "https://rdap.centralnic.com/lidl", + "tld_created": "2014-12-04", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lidl", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.nic.lidl", - "whois_server": "whois.nic.lidl", - "rdap_server": "https://rdap.centralnic.com/lidl", - "tld_created": "2014-12-04", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/life.json b/data/generated/tld/life.json index 4539ffde..3a9cbfe2 100644 --- a/data/generated/tld/life.json +++ b/data/generated/tld/life.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.life", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lifeinsurance.json b/data/generated/tld/lifeinsurance.json index 5fbee231..bfc74d81 100644 --- a/data/generated/tld/lifeinsurance.json +++ b/data/generated/tld/lifeinsurance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://acli.com", + "whois_server": "whois.nic.lifeinsurance", + "rdap_server": "https://rdap.nic.lifeinsurance/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lifeinsurance", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://acli.com", - "whois_server": "whois.nic.lifeinsurance", - "rdap_server": "https://rdap.nic.lifeinsurance/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lifestyle.json b/data/generated/tld/lifestyle.json index 4dd26f03..7c401627 100644 --- a/data/generated/tld/lifestyle.json +++ b/data/generated/tld/lifestyle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/lighting.json b/data/generated/tld/lighting.json index 1e90903b..e55d92b5 100644 --- a/data/generated/tld/lighting.json +++ b/data/generated/tld/lighting.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lighting", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/like.json b/data/generated/tld/like.json index d439408b..564b9b57 100644 --- a/data/generated/tld/like.json +++ b/data/generated/tld/like.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.like", + "rdap_server": "https://rdap.nominet.uk/like/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.like", "ipv4": [ { "ip": "213.248.218.72", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.72", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.like", - "rdap_server": "https://rdap.nominet.uk/like/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lilly.json b/data/generated/tld/lilly.json index b5feb5fc..a89d5d13 100644 --- a/data/generated/tld/lilly.json +++ b/data/generated/tld/lilly.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.lilly.com", + "rdap_server": "https://rdap.nic.lilly/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lilly", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.lilly.com", - "rdap_server": "https://rdap.nic.lilly/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/limited.json b/data/generated/tld/limited.json index f2c8c54a..659f604e 100644 --- a/data/generated/tld/limited.json +++ b/data/generated/tld/limited.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.limited", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/limo.json b/data/generated/tld/limo.json index 17dfc814..41439c6e 100644 --- a/data/generated/tld/limo.json +++ b/data/generated/tld/limo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.limo", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lincoln.json b/data/generated/tld/lincoln.json index fd109374..6e281c88 100644 --- a/data/generated/tld/lincoln.json +++ b/data/generated/tld/lincoln.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.lincoln.com", + "rdap_server": "https://rdap.nic.lincoln/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lincoln", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.lincoln.com", - "rdap_server": "https://rdap.nic.lincoln/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/link.json b/data/generated/tld/link.json index c6be793f..27312b91 100644 --- a/data/generated/tld/link.json +++ b/data/generated/tld/link.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://uniregistry.link", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://uniregistry.link", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/live.json b/data/generated/tld/live.json index 49046658..bd0cff92 100644 --- a/data/generated/tld/live.json +++ b/data/generated/tld/live.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.live", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/living.json b/data/generated/tld/living.json index 4b55c6e3..d4cb9d1a 100644 --- a/data/generated/tld/living.json +++ b/data/generated/tld/living.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/lk.json b/data/generated/tld/lk.json index 7e741854..0329ec4c 100644 --- a/data/generated/tld/lk.json +++ b/data/generated/tld/lk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk/", + "tld_created": "1990-06-15", + "tld_updated": [ + "2025-08-04" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.lk", @@ -164,21 +179,6 @@ ] } ], - "registry_url": "http://www.domains.lk/", - "tld_created": "1990-06-15", - "tld_updated": [ - "2025-08-04" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--fzc2c9e2c", "xn--xkc2al3hye2a" diff --git a/data/generated/tld/llc.json b/data/generated/tld/llc.json index 4fd5050e..a8fb145d 100644 --- a/data/generated/tld/llc.json +++ b/data/generated/tld/llc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2018-02-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.llc", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2018-02-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/llp.json b/data/generated/tld/llp.json index 341837bd..dc63404a 100644 --- a/data/generated/tld/llp.json +++ b/data/generated/tld/llp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://intercap.inc", + "whois_server": "whois.nic.llp", + "rdap_server": "https://rdap.centralnic.com/llp/", + "tld_created": "2019-11-20", + "tld_updated": [ + "2024-01-31" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.llp", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://intercap.inc", - "whois_server": "whois.nic.llp", - "rdap_server": "https://rdap.centralnic.com/llp/", - "tld_created": "2019-11-20", - "tld_updated": [ - "2024-01-31" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/loan.json b/data/generated/tld/loan.json index a58bc529..36aed672 100644 --- a/data/generated/tld/loan.json +++ b/data/generated/tld/loan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.loan", + "whois_server": "whois.nic.loan", + "rdap_server": "https://rdap.nic.loan/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.loan", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.loan", - "whois_server": "whois.nic.loan", - "rdap_server": "https://rdap.nic.loan/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/loans.json b/data/generated/tld/loans.json index 05efe955..95006c46 100644 --- a/data/generated/tld/loans.json +++ b/data/generated/tld/loans.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.loans", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/locker.json b/data/generated/tld/locker.json index b9bca939..1b422aad 100644 --- a/data/generated/tld/locker.json +++ b/data/generated/tld/locker.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.locker", + "rdap_server": "https://rdap.nic.locker/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.locker", - "rdap_server": "https://rdap.nic.locker/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/locus.json b/data/generated/tld/locus.json index c3e24500..a7181404 100644 --- a/data/generated/tld/locus.json +++ b/data/generated/tld/locus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://nic.locus", + "rdap_server": "https://rdap.nominet.uk/locus/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.locus", "ipv4": [ { "ip": "213.248.219.11", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.11", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://nic.locus", - "rdap_server": "https://rdap.nominet.uk/locus/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lol.json b/data/generated/tld/lol.json index 45332a9a..bc9cbd42 100644 --- a/data/generated/tld/lol.json +++ b/data/generated/tld/lol.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.lol", + "whois_server": "whois.nic.lol", + "rdap_server": "https://rdap.centralnic.com/lol/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lol", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.lol", - "whois_server": "whois.nic.lol", - "rdap_server": "https://rdap.centralnic.com/lol/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/london.json b/data/generated/tld/london.json index 8a400e28..ef536a0c 100644 --- a/data/generated/tld/london.json +++ b/data/generated/tld/london.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://dotlondondomains.london/", + "whois_server": "whois.nic.london", + "rdap_server": "https://rdap.centralnic.com/london/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.london", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://dotlondondomains.london/", - "whois_server": "whois.nic.london", - "rdap_server": "https://rdap.centralnic.com/london/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/lotte.json b/data/generated/tld/lotte.json index 26cfe1e5..97a3caaa 100644 --- a/data/generated/tld/lotte.json +++ b/data/generated/tld/lotte.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.lotte", + "whois_server": "whois.nic.lotte", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.lotte", - "whois_server": "whois.nic.lotte", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/lotto.json b/data/generated/tld/lotto.json index 2ef251b6..d66edebb 100644 --- a/data/generated/tld/lotto.json +++ b/data/generated/tld/lotto.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lotto", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/love.json b/data/generated/tld/love.json index 0aa735c7..bb3491f7 100644 --- a/data/generated/tld/love.json +++ b/data/generated/tld/love.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://get.love", + "whois_server": "whois.nic.love", + "rdap_server": "https://rdap.registry.love/rdap/", + "tld_created": "2015-03-25", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://get.love", - "whois_server": "whois.nic.love", - "rdap_server": "https://rdap.registry.love/rdap/", - "tld_created": "2015-03-25", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/lpl.json b/data/generated/tld/lpl.json index 40109fc4..a05843b0 100644 --- a/data/generated/tld/lpl.json +++ b/data/generated/tld/lpl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lpl", + "rdap_server": "https://rdap.centralnic.com/lpl", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lpl", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.lpl", - "rdap_server": "https://rdap.centralnic.com/lpl", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/lplfinancial.json b/data/generated/tld/lplfinancial.json index ef75bc1e..834223e2 100644 --- a/data/generated/tld/lplfinancial.json +++ b/data/generated/tld/lplfinancial.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lplfinancial", + "rdap_server": "https://rdap.centralnic.com/lplfinancial", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lplfinancial", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.lplfinancial", - "rdap_server": "https://rdap.centralnic.com/lplfinancial", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/lr.json b/data/generated/tld/lr.json index 74a14899..2e83095d 100644 --- a/data/generated/tld/lr.json +++ b/data/generated/tld/lr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "5147 Crystal Springs Drive NE" } }, + "registry_url": "http://psg.com/dns/lr", + "tld_created": "1997-04-09", + "tld_updated": [ + "2026-01-10" + ], + "annotations": { + "country_name_iso": "Liberia", + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -94,21 +109,6 @@ } ] } - ], - "registry_url": "http://psg.com/dns/lr", - "tld_created": "1997-04-09", - "tld_updated": [ - "2026-01-10" - ], - "annotations": { - "country_name_iso": "Liberia", - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ls.json b/data/generated/tld/ls.json index 146f53e6..f6af1a4c 100644 --- a/data/generated/tld/ls.json +++ b/data/generated/tld/ls.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Lesotho Communications Authority" } }, + "registry_url": "http://www.nic.ls", + "whois_server": "whois.nic.ls", + "tld_created": "1993-01-13", + "tld_updated": [ + "2024-06-17" + ], + "annotations": { + "country_name_iso": "Lesotho", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ls-ns.anycast.pch.net", @@ -80,22 +96,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ls", - "whois_server": "whois.nic.ls", - "tld_created": "1993-01-13", - "tld_updated": [ - "2024-06-17" - ], - "annotations": { - "country_name_iso": "Lesotho", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/lt.json b/data/generated/tld/lt.json index c536106b..58da2684 100644 --- a/data/generated/tld/lt.json +++ b/data/generated/tld/lt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Kaunas University of Technology" } }, + "registry_url": "http://www.domreg.lt", + "whois_server": "whois.domreg.lt", + "tld_created": "1992-06-03", + "tld_updated": [ + "2026-05-01" + ], + "annotations": { + "country_name_iso": "Lithuania", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tld.lt", @@ -118,22 +134,6 @@ } ] } - ], - "registry_url": "http://www.domreg.lt", - "whois_server": "whois.domreg.lt", - "tld_created": "1992-06-03", - "tld_updated": [ - "2026-05-01" - ], - "annotations": { - "country_name_iso": "Lithuania", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ltd.json b/data/generated/tld/ltd.json index 6c160b4c..5fb0da93 100644 --- a/data/generated/tld/ltd.json +++ b/data/generated/tld/ltd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ltd", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ltda.json b/data/generated/tld/ltda.json index d90bd38b..09f56823 100644 --- a/data/generated/tld/ltda.json +++ b/data/generated/tld/ltda.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.internetx.info", + "whois_server": "whois.nic.ltda", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ltda", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.internetx.info", - "whois_server": "whois.nic.ltda", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/lu.json b/data/generated/tld/lu.json index ce073e8c..a41e7a37 100644 --- a/data/generated/tld/lu.json +++ b/data/generated/tld/lu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Fondation RESTENA" } }, + "registry_url": "http://www.dns.lu", + "whois_server": "whois.dns.lu", + "tld_created": "1995-01-27", + "tld_updated": [ + "2023-07-28" + ], + "annotations": { + "country_name_iso": "Luxembourg", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "g.dns.lu", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.dns.lu", - "whois_server": "whois.dns.lu", - "tld_created": "1995-01-27", - "tld_updated": [ - "2023-07-28" - ], - "annotations": { - "country_name_iso": "Luxembourg", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/lundbeck.json b/data/generated/tld/lundbeck.json index 7cba4186..4803c61d 100644 --- a/data/generated/tld/lundbeck.json +++ b/data/generated/tld/lundbeck.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lundbeck", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lundbeck", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.lundbeck", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/luxe.json b/data/generated/tld/luxe.json index f2a429f9..ba8be59e 100644 --- a/data/generated/tld/luxe.json +++ b/data/generated/tld/luxe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.luxe/", + "whois_server": "whois.nic.luxe", + "rdap_server": "https://rdap.nic.luxe/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.luxe", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.luxe/", - "whois_server": "whois.nic.luxe", - "rdap_server": "https://rdap.nic.luxe/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/luxury.json b/data/generated/tld/luxury.json index afd43c4b..755fb09d 100644 --- a/data/generated/tld/luxury.json +++ b/data/generated/tld/luxury.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://join.luxury/", + "whois_server": "whois.nic.luxury", + "rdap_server": "https://rdap.centralnic.com/luxury/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.luxury", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://join.luxury/", - "whois_server": "whois.nic.luxury", - "rdap_server": "https://rdap.centralnic.com/luxury/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/lv.json b/data/generated/tld/lv.json index 7823660b..765a2f92 100644 --- a/data/generated/tld/lv.json +++ b/data/generated/tld/lv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Institute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)" } }, + "registry_url": "http://www.nic.lv/", + "whois_server": "whois.nic.lv", + "tld_created": "1993-04-29", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Latvia", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.lv", @@ -144,22 +160,6 @@ } ] } - ], - "registry_url": "http://www.nic.lv/", - "whois_server": "whois.nic.lv", - "tld_created": "1993-04-29", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Latvia", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ly.json b/data/generated/tld/ly.json index 3fad8233..babc2209 100644 --- a/data/generated/tld/ly.json +++ b/data/generated/tld/ly.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Libya Telecom and Technology" } }, + "registry_url": "https://wsm.ltt.ly/", + "whois_server": "whois.nic.ly", + "rdap_server": "https://rdap.nic.ly", + "tld_created": "1997-04-23", + "tld_updated": [ + "2025-11-01" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Libya", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.lttnet.net", @@ -99,24 +117,6 @@ } ] } - ], - "registry_url": "https://wsm.ltt.ly/", - "whois_server": "whois.nic.ly", - "rdap_server": "https://rdap.nic.ly", - "tld_created": "1997-04-23", - "tld_updated": [ - "2025-11-01" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Libya", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ma.json b/data/generated/tld/ma.json index 004f0c55..578458f8 100644 --- a/data/generated/tld/ma.json +++ b/data/generated/tld/ma.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Agence Nationale de Réglementation des Télécommunications (ANRT)" } }, + "registry_url": "http://www.registre.ma", + "whois_server": "whois.registre.ma", + "tld_created": "1993-11-26", + "tld_updated": [ + "2025-06-08" + ], + "annotations": { + "country_name_iso": "Morocco", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tld.ma", @@ -181,22 +197,6 @@ ] } ], - "registry_url": "http://www.registre.ma", - "whois_server": "whois.registre.ma", - "tld_created": "1993-11-26", - "tld_updated": [ - "2025-06-08" - ], - "annotations": { - "country_name_iso": "Morocco", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbc0a9azcg" ] diff --git a/data/generated/tld/madrid.json b/data/generated/tld/madrid.json index e2a2d8f7..9b9f06db 100644 --- a/data/generated/tld/madrid.json +++ b/data/generated/tld/madrid.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://dominios.madrid.org", + "whois_server": "whois.nic.madrid", + "rdap_server": "https://rdap.nic.madrid/", + "tld_created": "2014-10-02", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://dominios.madrid.org", - "whois_server": "whois.nic.madrid", - "rdap_server": "https://rdap.nic.madrid/", - "tld_created": "2014-10-02", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/maif.json b/data/generated/tld/maif.json index 79383fa8..289a84b5 100644 --- a/data/generated/tld/maif.json +++ b/data/generated/tld/maif.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.maif.fr", + "whois_server": "whois.nic.maif", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.maif", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.maif.fr", - "whois_server": "whois.nic.maif", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/maison.json b/data/generated/tld/maison.json index 11e196fd..5a41252e 100644 --- a/data/generated/tld/maison.json +++ b/data/generated/tld/maison.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.maison", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/makeup.json b/data/generated/tld/makeup.json index faf8e2a6..965a27ad 100644 --- a/data/generated/tld/makeup.json +++ b/data/generated/tld/makeup.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.makeup/", + "whois_server": "whois.nic.makeup", + "rdap_server": "https://rdap.centralnic.com/makeup/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.makeup", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.makeup/", - "whois_server": "whois.nic.makeup", - "rdap_server": "https://rdap.centralnic.com/makeup/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/man.json b/data/generated/tld/man.json index 5dbec601..703f62a1 100644 --- a/data/generated/tld/man.json +++ b/data/generated/tld/man.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.man.eu", + "whois_server": "whois.nic.man", + "rdap_server": "https://rdap.nic.man/", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-12-18" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.man.eu", - "whois_server": "whois.nic.man", - "rdap_server": "https://rdap.nic.man/", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-12-18" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/management.json b/data/generated/tld/management.json index b128b294..17898e03 100644 --- a/data/generated/tld/management.json +++ b/data/generated/tld/management.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.management", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mango.json b/data/generated/tld/mango.json index 5c4fa2f1..5aa304d7 100644 --- a/data/generated/tld/mango.json +++ b/data/generated/tld/mango.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.mango.com", + "whois_server": "whois.nic.mango", + "rdap_server": "https://rdap.nic.mango/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,26 +125,6 @@ } ] } - ], - "registry_url": "http://www.mango.com", - "whois_server": "whois.nic.mango", - "rdap_server": "https://rdap.nic.mango/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/map.json b/data/generated/tld/map.json index 7978d04f..c7962aea 100644 --- a/data/generated/tld/map.json +++ b/data/generated/tld/map.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/market.json b/data/generated/tld/market.json index a426768e..d42903ef 100644 --- a/data/generated/tld/market.json +++ b/data/generated/tld/market.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.market", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/marketing.json b/data/generated/tld/marketing.json index b1fc604b..872e0e54 100644 --- a/data/generated/tld/marketing.json +++ b/data/generated/tld/marketing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.marketing", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/markets.json b/data/generated/tld/markets.json index 7e7f2a44..58f50df6 100644 --- a/data/generated/tld/markets.json +++ b/data/generated/tld/markets.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.markets", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/marriott.json b/data/generated/tld/marriott.json index ff3eaf94..d72757a2 100644 --- a/data/generated/tld/marriott.json +++ b/data/generated/tld/marriott.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.marriott.com", + "whois_server": "whois.nic.marriott", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-05-02" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.marriott", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.marriott.com", - "whois_server": "whois.nic.marriott", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-05-02" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/marshalls.json b/data/generated/tld/marshalls.json index 61fc970c..117abd1e 100644 --- a/data/generated/tld/marshalls.json +++ b/data/generated/tld/marshalls.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.marshalls/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.marshalls", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.marshalls/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mattel.json b/data/generated/tld/mattel.json index 11c1aed6..83aa52da 100644 --- a/data/generated/tld/mattel.json +++ b/data/generated/tld/mattel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.mattel.com", + "rdap_server": "https://rdap.nic.mattel/", + "tld_created": "2016-01-22", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mattel", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.mattel.com", - "rdap_server": "https://rdap.nic.mattel/", - "tld_created": "2016-01-22", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mba.json b/data/generated/tld/mba.json index 89291d93..547ab819 100644 --- a/data/generated/tld/mba.json +++ b/data/generated/tld/mba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.mba", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mc.json b/data/generated/tld/mc.json index feaad018..110f3ac8 100644 --- a/data/generated/tld/mc.json +++ b/data/generated/tld/mc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Direction des Plateformes et des Ressources Numériques" } }, + "registry_url": "https://www.nic.mc/", + "whois_server": "whois.nic.mc", + "tld_created": "1995-01-20", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "country_name_iso": "Monaco", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "mc.cctld.authdns.ripe.net", @@ -73,22 +89,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.nic.mc/", - "whois_server": "whois.nic.mc", - "tld_created": "1995-01-20", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "country_name_iso": "Monaco", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mckinsey.json b/data/generated/tld/mckinsey.json index 2991d482..260daf11 100644 --- a/data/generated/tld/mckinsey.json +++ b/data/generated/tld/mckinsey.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.mckinsey.com/", + "whois_server": "whois.nic.mckinsey", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mckinsey", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.mckinsey.com/", - "whois_server": "whois.nic.mckinsey", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/md.json b/data/generated/tld/md.json index d64efa09..cedf8136 100644 --- a/data/generated/tld/md.json +++ b/data/generated/tld/md.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "IP Serviciul Tehnologia Informatiei si Securitate Cibernetica" } }, + "registry_url": "http://www.nic.md", + "whois_server": "whois.nic.md", + "tld_created": "1994-03-24", + "tld_updated": [ + "2026-03-09" + ], + "annotations": { + "country_name_iso": "Moldova, Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nsa.tld.md", @@ -99,16 +109,6 @@ } ] } - ], - "registry_url": "http://www.nic.md", - "whois_server": "whois.nic.md", - "tld_created": "1994-03-24", - "tld_updated": [ - "2026-03-09" - ], - "annotations": { - "country_name_iso": "Moldova, Republic of", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/me.json b/data/generated/tld/me.json index aa74ebed..0814db30 100644 --- a/data/generated/tld/me.json +++ b/data/generated/tld/me.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Center of Information System (CIS)\nUniversity of Montenegro" } }, + "registry_url": "http://www.domain.me", + "whois_server": "whois.nic.me", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2007-09-24", + "tld_updated": [ + "2020-10-19" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Montenegro", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.me", @@ -113,24 +131,6 @@ } ] } - ], - "registry_url": "http://www.domain.me", - "whois_server": "whois.nic.me", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2007-09-24", - "tld_updated": [ - "2020-10-19" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Montenegro", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/med.json b/data/generated/tld/med.json index 5dbcbb63..7f6f9199 100644 --- a/data/generated/tld/med.json +++ b/data/generated/tld/med.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/med/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.med", "ipv4": [ { "ip": "213.248.219.124", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.124", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/med/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/media.json b/data/generated/tld/media.json index e1c78b11..3c00fe1a 100644 --- a/data/generated/tld/media.json +++ b/data/generated/tld/media.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.media", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/meet.json b/data/generated/tld/meet.json index 2cf1af2a..8c0097c6 100644 --- a/data/generated/tld/meet.json +++ b/data/generated/tld/meet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/melbourne.json b/data/generated/tld/melbourne.json index 29177cc6..dad5f06b 100644 --- a/data/generated/tld/melbourne.json +++ b/data/generated/tld/melbourne.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://www.live.melbourne/", + "whois_server": "whois.nic.melbourne", + "rdap_server": "https://rdap.nic.melbourne/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.melbourne", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +116,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +124,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +135,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +143,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +154,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,37 +162,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.live.melbourne/", - "whois_server": "whois.nic.melbourne", - "rdap_server": "https://rdap.nic.melbourne/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/meme.json b/data/generated/tld/meme.json index b781392e..2cadea2b 100644 --- a/data/generated/tld/meme.json +++ b/data/generated/tld/meme.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/memorial.json b/data/generated/tld/memorial.json index 53b2e306..082d5a58 100644 --- a/data/generated/tld/memorial.json +++ b/data/generated/tld/memorial.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.memorial", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/men.json b/data/generated/tld/men.json index 437ed71e..7ad3dc7e 100644 --- a/data/generated/tld/men.json +++ b/data/generated/tld/men.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.men", + "whois_server": "whois.nic.men", + "rdap_server": "https://rdap.nic.men/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.men", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +117,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +136,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +155,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,38 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.men", - "whois_server": "whois.nic.men", - "rdap_server": "https://rdap.nic.men/", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/menu.json b/data/generated/tld/menu.json index 65cfca66..8c2753ed 100644 --- a/data/generated/tld/menu.json +++ b/data/generated/tld/menu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.menu", + "whois_server": "whois.nic.menu", + "rdap_server": "https://rdap.nic.menu/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2024-07-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.menu", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nic.menu", - "whois_server": "whois.nic.menu", - "rdap_server": "https://rdap.nic.menu/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2024-07-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/merck.json b/data/generated/tld/merck.json index 5ff6d53b..8d7681c2 100644 --- a/data/generated/tld/merck.json +++ b/data/generated/tld/merck.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,25 @@ "date_removed": null } }, + "registry_url": "https://nic.merck", + "whois_server": "whois.nic.merck", + "rdap_server": "https://rdap-merck.dns.business/rdap/", + "tld_updated": [ + "2026-04-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ] + }, "nameservers": [ { "hostname": "ns1.dns.business", @@ -86,25 +105,6 @@ } ] } - ], - "registry_url": "https://nic.merck", - "whois_server": "whois.nic.merck", - "rdap_server": "https://rdap-merck.dns.business/rdap/", - "tld_updated": [ - "2026-04-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ] - } + ] } } diff --git a/data/generated/tld/merckmsd.json b/data/generated/tld/merckmsd.json index fbbb617f..8c526343 100644 --- a/data/generated/tld/merckmsd.json +++ b/data/generated/tld/merckmsd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "whois_server": "whois.nic.merckmsd", + "rdap_server": "https://rdap.nic.merckmsd", + "tld_created": "2017-06-15", + "tld_updated": [ + "2025-01-24" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.merckmsd", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.merckmsd", - "rdap_server": "https://rdap.nic.merckmsd", - "tld_created": "2017-06-15", - "tld_updated": [ - "2025-01-24" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mg.json b/data/generated/tld/mg.json index 60b56b1c..f5142018 100644 --- a/data/generated/tld/mg.json +++ b/data/generated/tld/mg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "NIC-MG (Network Information Center Madagascar)" } }, + "registry_url": "http://www.nic.mg", + "whois_server": "whois.nic.mg", + "rdap_server": "http://rdap.nic.mg", + "tld_created": "1995-07-25", + "tld_updated": [ + "2025-10-02" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Madagascar", + "as_org_aliases": [ + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-tld.ird.fr", @@ -92,26 +112,6 @@ } ] } - ], - "registry_url": "http://www.nic.mg", - "whois_server": "whois.nic.mg", - "rdap_server": "http://rdap.nic.mg", - "tld_created": "1995-07-25", - "tld_updated": [ - "2025-10-02" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Madagascar", - "as_org_aliases": [ - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mh.json b/data/generated/tld/mh.json index 90f561ff..c977187b 100644 --- a/data/generated/tld/mh.json +++ b/data/generated/tld/mh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "National Telecommunications Authority" } }, + "registry_url": "http://www.nic.net.mh/", + "tld_created": "1996-08-16", + "tld_updated": [ + "2013-08-03" + ], + "annotations": { + "country_name_iso": "Marshall Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.amarshallinc.com", @@ -42,15 +51,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.net.mh/", - "tld_created": "1996-08-16", - "tld_updated": [ - "2013-08-03" - ], - "annotations": { - "country_name_iso": "Marshall Islands", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/miami.json b/data/generated/tld/miami.json index 7377d09c..5efe9e78 100644 --- a/data/generated/tld/miami.json +++ b/data/generated/tld/miami.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.miami", + "whois_server": "whois.nic.miami", + "rdap_server": "https://rdap.nic.miami/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.miami", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.miami", - "whois_server": "whois.nic.miami", - "rdap_server": "https://rdap.nic.miami/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/microsoft.json b/data/generated/tld/microsoft.json index 9c57bde5..0a26071c 100644 --- a/data/generated/tld/microsoft.json +++ b/data/generated/tld/microsoft.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/microsoft/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.microsoft", "ipv4": [ { "ip": "213.248.219.132", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.132", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/microsoft/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mil.json b/data/generated/tld/mil.json index 0ef98774..c18599d1 100644 --- a/data/generated/tld/mil.json +++ b/data/generated/tld/mil.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,10 @@ "tech": "DoD Network Information Center" } }, + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], "nameservers": [ { "hostname": "con1.nipr.mil", @@ -132,10 +136,6 @@ } ] } - ], - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" ] } } diff --git a/data/generated/tld/mini.json b/data/generated/tld/mini.json index a09942ce..a3ee9013 100644 --- a/data/generated/tld/mini.json +++ b/data/generated/tld/mini.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.mini.com", + "whois_server": "whois.nic.mini", + "rdap_server": "https://rdap.centralnic.com/mini", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_sponsor_alias": "BMW", + "iana_sponsor_slug": "bmw", + "iana_admin_alias": "BMW", + "iana_admin_slug": "bmw", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "BMW", + "icann_registry_operator_slug": "bmw", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.mini", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://nic.mini.com", - "whois_server": "whois.nic.mini", - "rdap_server": "https://rdap.centralnic.com/mini", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_sponsor_alias": "BMW", - "iana_sponsor_slug": "bmw", - "iana_admin_alias": "BMW", - "iana_admin_slug": "bmw", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "BMW", - "icann_registry_operator_slug": "bmw", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/mint.json b/data/generated/tld/mint.json index ddea4579..0520a6f2 100644 --- a/data/generated/tld/mint.json +++ b/data/generated/tld/mint.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.intuit.com/", + "rdap_server": "https://rdap.nic.mint/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mint", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.intuit.com/", - "rdap_server": "https://rdap.nic.mint/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mit.json b/data/generated/tld/mit.json index 3560750c..d9a3955c 100644 --- a/data/generated/tld/mit.json +++ b/data/generated/tld/mit.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.mit.edu", + "whois_server": "whois.nic.mit", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-08-04" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mit", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.mit.edu", - "whois_server": "whois.nic.mit", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-08-04" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mitsubishi.json b/data/generated/tld/mitsubishi.json index 34150404..234395c2 100644 --- a/data/generated/tld/mitsubishi.json +++ b/data/generated/tld/mitsubishi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mk.json b/data/generated/tld/mk.json index 21399ea3..1985ebfe 100644 --- a/data/generated/tld/mk.json +++ b/data/generated/tld/mk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Faculty of Computer Science and Engineering" } }, + "registry_url": "http://marnet.mk/", + "whois_server": "whois.marnet.mk", + "tld_created": "1993-09-23", + "tld_updated": [ + "2024-02-15" + ], + "annotations": { + "country_name_iso": "North Macedonia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -88,22 +104,6 @@ "ipv6": [] } ], - "registry_url": "http://marnet.mk/", - "whois_server": "whois.marnet.mk", - "tld_created": "1993-09-23", - "tld_updated": [ - "2024-02-15" - ], - "annotations": { - "country_name_iso": "North Macedonia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--d1alf" ] diff --git a/data/generated/tld/ml.json b/data/generated/tld/ml.json index 568034df..305d4ae1 100644 --- a/data/generated/tld/ml.json +++ b/data/generated/tld/ml.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Agence des Technologies de l'Information et de la Communication" } }, + "registry_url": "http://www.nic.ml", + "whois_server": "whois.nic.ml", + "rdap_server": "https://rdap.nic.ml", + "tld_created": "1993-09-29", + "tld_updated": [ + "2025-12-03" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Mali", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ml", @@ -87,24 +105,6 @@ } ] } - ], - "registry_url": "http://www.nic.ml", - "whois_server": "whois.nic.ml", - "rdap_server": "https://rdap.nic.ml", - "tld_created": "1993-09-29", - "tld_updated": [ - "2025-12-03" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Mali", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mlb.json b/data/generated/tld/mlb.json index 5de93980..772c2782 100644 --- a/data/generated/tld/mlb.json +++ b/data/generated/tld/mlb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.mlb.com", + "rdap_server": "https://rdap.nic.mlb/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mlb", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.mlb.com", - "rdap_server": "https://rdap.nic.mlb/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mls.json b/data/generated/tld/mls.json index 7b850f0a..0167e561 100644 --- a/data/generated/tld/mls.json +++ b/data/generated/tld/mls.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.mls", + "rdap_server": "https://rdap.mls.fury.ca/rdap/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.mls", @@ -105,29 +128,6 @@ } ] } - ], - "whois_server": "whois.nic.mls", - "rdap_server": "https://rdap.mls.fury.ca/rdap/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] } } diff --git a/data/generated/tld/mm.json b/data/generated/tld/mm.json index e32b77b3..696e1ccc 100644 --- a/data/generated/tld/mm.json +++ b/data/generated/tld/mm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Posts and Telecommunications Department" } }, + "registry_url": "http://www.ptd.gov.mm/", + "whois_server": "whois.registry.gov.mm", + "tld_created": "1997-02-04", + "tld_updated": [ + "2025-07-28" + ], + "annotations": { + "country_name_iso": "Myanmar", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.net.mm", @@ -35,7 +51,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -66,22 +82,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.ptd.gov.mm/", - "whois_server": "whois.registry.gov.mm", - "tld_created": "1997-02-04", - "tld_updated": [ - "2025-07-28" - ], - "annotations": { - "country_name_iso": "Myanmar", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mma.json b/data/generated/tld/mma.json index 001ee9f6..a9d4e159 100644 --- a/data/generated/tld/mma.json +++ b/data/generated/tld/mma.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.mma.fr", + "whois_server": "whois.nic.mma", + "rdap_server": "https://rdap.nic.mma", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-07-23" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,33 +113,6 @@ } ] } - ], - "registry_url": "https://www.mma.fr", - "whois_server": "whois.nic.mma", - "rdap_server": "https://rdap.nic.mma", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-07-23" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/mn.json b/data/generated/tld/mn.json index 62bd7c72..e27afd47 100644 --- a/data/generated/tld/mn.json +++ b/data/generated/tld/mn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "Datacom Co. Ltd." } }, + "registry_url": "http://www.nic.mn", + "whois_server": "whois.nic.mn", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-03-02", + "tld_updated": [ + "2022-06-15" + ], + "annotations": { + "iana_sponsor_alias": "Datacom Mongolia", + "iana_sponsor_slug": "datacom-mongolia", + "iana_admin_alias": "Datacom Mongolia", + "iana_admin_slug": "datacom-mongolia", + "iana_tech_alias": "Datacom Mongolia", + "iana_tech_slug": "datacom-mongolia", + "rdap_source": "supplemental", + "country_name_iso": "Mongolia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -181,30 +205,6 @@ "ipv6": [] } ], - "registry_url": "http://www.nic.mn", - "whois_server": "whois.nic.mn", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-03-02", - "tld_updated": [ - "2022-06-15" - ], - "annotations": { - "iana_sponsor_alias": "Datacom Mongolia", - "iana_sponsor_slug": "datacom-mongolia", - "iana_admin_alias": "Datacom Mongolia", - "iana_admin_slug": "datacom-mongolia", - "iana_tech_alias": "Datacom Mongolia", - "iana_tech_slug": "datacom-mongolia", - "rdap_source": "supplemental", - "country_name_iso": "Mongolia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - }, "idn": [ "xn--l1acc" ] diff --git a/data/generated/tld/mo.json b/data/generated/tld/mo.json index 71608b84..6aa6ad81 100644 --- a/data/generated/tld/mo.json +++ b/data/generated/tld/mo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Macao Network Information Centre (MONIC) - HNET Asia" } }, + "registry_url": "https://www.monic.mo", + "whois_server": "whois.monic.mo", + "tld_created": "1992-09-17", + "tld_updated": [ + "2022-06-08" + ], + "annotations": { + "country_name_iso": "Macao", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.monic.mo", @@ -152,22 +168,6 @@ ] } ], - "registry_url": "https://www.monic.mo", - "whois_server": "whois.monic.mo", - "tld_created": "1992-09-17", - "tld_updated": [ - "2022-06-08" - ], - "annotations": { - "country_name_iso": "Macao", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mix891f" ] diff --git a/data/generated/tld/mobi.json b/data/generated/tld/mobi.json index 09717222..4c88c6dd 100644 --- a/data/generated/tld/mobi.json +++ b/data/generated/tld/mobi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2005-10-17", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.mobi.afilias-nst.info", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2005-10-17", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mobile.json b/data/generated/tld/mobile.json index 5c67db98..7b2baf3b 100644 --- a/data/generated/tld/mobile.json +++ b/data/generated/tld/mobile.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.mobile", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.mobile", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/moda.json b/data/generated/tld/moda.json index 5bffcd65..d86955b6 100644 --- a/data/generated/tld/moda.json +++ b/data/generated/tld/moda.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.moda", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/moe.json b/data/generated/tld/moe.json index adda209f..e67b977d 100644 --- a/data/generated/tld/moe.json +++ b/data/generated/tld/moe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://get.moe/", + "whois_server": "whois.nic.moe", + "rdap_server": "https://rdap.nic.moe/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.moe", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://get.moe/", - "whois_server": "whois.nic.moe", - "rdap_server": "https://rdap.nic.moe/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/moi.json b/data/generated/tld/moi.json index 7d4a474a..afed2f38 100644 --- a/data/generated/tld/moi.json +++ b/data/generated/tld/moi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.moi", + "rdap_server": "https://rdap.nominet.uk/moi/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.moi", "ipv4": [ { "ip": "213.248.218.54", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.54", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.moi", - "rdap_server": "https://rdap.nominet.uk/moi/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mom.json b/data/generated/tld/mom.json index b3eb5b90..fd76c450 100644 --- a/data/generated/tld/mom.json +++ b/data/generated/tld/mom.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.mom", + "whois_server": "whois.nic.mom", + "rdap_server": "https://rdap.centralnic.com/mom/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.mom", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.mom", - "whois_server": "whois.nic.mom", - "rdap_server": "https://rdap.centralnic.com/mom/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/monash.json b/data/generated/tld/monash.json index a7a10b13..4e710fb5 100644 --- a/data/generated/tld/monash.json +++ b/data/generated/tld/monash.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.monash", + "whois_server": "whois.nic.monash", + "rdap_server": "https://rdap.nic.monash/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2024-03-13" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.monash", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.monash", - "whois_server": "whois.nic.monash", - "rdap_server": "https://rdap.nic.monash/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2024-03-13" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/money.json b/data/generated/tld/money.json index aa23f06e..3d9f8c03 100644 --- a/data/generated/tld/money.json +++ b/data/generated/tld/money.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.money", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/monster.json b/data/generated/tld/monster.json index cbd8f12d..b572e5ab 100644 --- a/data/generated/tld/monster.json +++ b/data/generated/tld/monster.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.monster/", + "whois_server": "whois.nic.monster", + "rdap_server": "https://rdap.centralnic.com/monster", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.monster", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.monster/", - "whois_server": "whois.nic.monster", - "rdap_server": "https://rdap.centralnic.com/monster", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/mormon.json b/data/generated/tld/mormon.json index 7a3ed765..0f2071f2 100644 --- a/data/generated/tld/mormon.json +++ b/data/generated/tld/mormon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.mormon.org", + "whois_server": "whois.nic.mormon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2023-08-15" + ], + "annotations": { + "iana_sponsor_alias": "LDS", + "iana_sponsor_slug": "lds", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "LDS", + "icann_registry_operator_slug": "lds", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mormon", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "http://www.mormon.org", - "whois_server": "whois.nic.mormon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2023-08-15" - ], - "annotations": { - "iana_sponsor_alias": "LDS", - "iana_sponsor_slug": "lds", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "LDS", - "icann_registry_operator_slug": "lds", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mortgage.json b/data/generated/tld/mortgage.json index 66d158d0..b6e107de 100644 --- a/data/generated/tld/mortgage.json +++ b/data/generated/tld/mortgage.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.mortgage", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/moscow.json b/data/generated/tld/moscow.json index a990054f..c66fd2e5 100644 --- a/data/generated/tld/moscow.json +++ b/data/generated/tld/moscow.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.faitid.org", + "whois_server": "whois.nic.moscow", + "rdap_server": "https://rdap.flexireg.net", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.flexireg.ru", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://www.faitid.org", - "whois_server": "whois.nic.moscow", - "rdap_server": "https://rdap.flexireg.net", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/moto.json b/data/generated/tld/moto.json index b3b2d122..e868abc1 100644 --- a/data/generated/tld/moto.json +++ b/data/generated/tld/moto.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.motorola.com", + "whois_server": "whois.nic.moto", + "rdap_server": "https://rdap.nic.moto/", + "tld_created": "2016-09-30", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.moto", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.motorola.com", - "whois_server": "whois.nic.moto", - "rdap_server": "https://rdap.nic.moto/", - "tld_created": "2016-09-30", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/motorcycles.json b/data/generated/tld/motorcycles.json index bcd21063..30b47e84 100644 --- a/data/generated/tld/motorcycles.json +++ b/data/generated/tld/motorcycles.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.motorcycles", + "whois_server": "whois.nic.motorcycles", + "rdap_server": "https://rdap.centralnic.com/motorcycles/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.motorcycles", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://nic.motorcycles", - "whois_server": "whois.nic.motorcycles", - "rdap_server": "https://rdap.centralnic.com/motorcycles/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/mov.json b/data/generated/tld/mov.json index 9ea2bb3c..956a42b1 100644 --- a/data/generated/tld/mov.json +++ b/data/generated/tld/mov.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/movie.json b/data/generated/tld/movie.json index 9c900f5a..d179bd6c 100644 --- a/data/generated/tld/movie.json +++ b/data/generated/tld/movie.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.movie", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/mp.json b/data/generated/tld/mp.json index 0797b31d..4b518ba7 100644 --- a/data/generated/tld/mp.json +++ b/data/generated/tld/mp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Saipan Datacom, Inc." } }, + "registry_url": "https://get.mp/", + "tld_created": "1996-10-22", + "tld_updated": [ + "2022-05-06" + ], + "annotations": { + "country_name_iso": "Northern Mariana Islands", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.mp", @@ -66,21 +81,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://get.mp/", - "tld_created": "1996-10-22", - "tld_updated": [ - "2022-05-06" - ], - "annotations": { - "country_name_iso": "Northern Mariana Islands", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mq.json b/data/generated/tld/mq.json index a6355668..2661fcb5 100644 --- a/data/generated/tld/mq.json +++ b/data/generated/tld/mq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "CANAL+ TELECOM" } }, + "registry_url": "https://www.dom-enic.com", + "whois_server": "whois.mediaserv.net", + "tld_created": "1997-03-28", + "tld_updated": [ + "2021-10-18" + ], + "annotations": { + "country_name_iso": "Martinique", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1-fr.mediaserv.net", @@ -54,16 +64,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.dom-enic.com", - "whois_server": "whois.mediaserv.net", - "tld_created": "1997-03-28", - "tld_updated": [ - "2021-10-18" - ], - "annotations": { - "country_name_iso": "Martinique", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mr.json b/data/generated/tld/mr.json index 50901bfb..025e2cfb 100644 --- a/data/generated/tld/mr.json +++ b/data/generated/tld/mr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Faculte de Sciences et Techniques, UNA" } }, + "registry_url": "http://www.nic.mr", + "whois_server": "whois.nic.mr", + "tld_created": "1996-04-24", + "tld_updated": [ + "2021-06-04" + ], + "annotations": { + "country_name_iso": "Mauritania", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-mr.afrinic.net", @@ -100,24 +118,6 @@ ] } ], - "registry_url": "http://www.nic.mr", - "whois_server": "whois.nic.mr", - "tld_created": "1996-04-24", - "tld_updated": [ - "2021-06-04" - ], - "annotations": { - "country_name_iso": "Mauritania", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbah1a3hjkrd" ] diff --git a/data/generated/tld/ms.json b/data/generated/tld/ms.json index 680db0a2..bbf9b939 100644 --- a/data/generated/tld/ms.json +++ b/data/generated/tld/ms.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "MNI Networks Ltd." } }, + "registry_url": "http://www.nic.ms", + "whois_server": "whois.nic.ms", + "rdap_server": "https://rdap.nic.ms", + "tld_created": "1997-03-06", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Montserrat", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -87,26 +107,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ms", - "whois_server": "whois.nic.ms", - "rdap_server": "https://rdap.nic.ms", - "tld_created": "1997-03-06", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Montserrat", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/msd.json b/data/generated/tld/msd.json index 651f9e54..2ed15b1d 100644 --- a/data/generated/tld/msd.json +++ b/data/generated/tld/msd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.msd", + "rdap_server": "https://rdap.nic.msd", + "tld_created": "2016-06-24", + "tld_updated": [ + "2025-01-24" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.msd", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.msd", - "rdap_server": "https://rdap.nic.msd", - "tld_created": "2016-06-24", - "tld_updated": [ - "2025-01-24" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mt.json b/data/generated/tld/mt.json index e1955f96..a951e637 100644 --- a/data/generated/tld/mt.json +++ b/data/generated/tld/mt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "NIC (Malta)" } }, + "registry_url": "https://www.nic.org.mt/", + "tld_created": "1992-12-02", + "tld_updated": [ + "2020-01-23" + ], + "annotations": { + "country_name_iso": "Malta", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.mt", @@ -80,23 +97,6 @@ } ] } - ], - "registry_url": "https://www.nic.org.mt/", - "tld_created": "1992-12-02", - "tld_updated": [ - "2020-01-23" - ], - "annotations": { - "country_name_iso": "Malta", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mtn.json b/data/generated/tld/mtn.json index ce93de62..fbcdf88e 100644 --- a/data/generated/tld/mtn.json +++ b/data/generated/tld/mtn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "http://www.mtn.com", + "rdap_server": "https://rdap.nominet.uk/mtn/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.mtn", "ipv4": [ { "ip": "213.248.219.42", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.42", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "http://www.mtn.com", - "rdap_server": "https://rdap.nominet.uk/mtn/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/mtr.json b/data/generated/tld/mtr.json index 4a9e4728..a81b4160 100644 --- a/data/generated/tld/mtr.json +++ b/data/generated/tld/mtr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,21 @@ "date_removed": null } }, + "registry_url": "http://nic.mtr", + "whois_server": "whois.nic.mtr", + "rdap_server": "https://whois.nic.mtr/rdap/", + "tld_created": "2015-07-31", + "tld_updated": [ + "2025-12-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "ns1.nic.mtr", @@ -105,21 +120,6 @@ } ] } - ], - "registry_url": "http://nic.mtr", - "whois_server": "whois.nic.mtr", - "rdap_server": "https://whois.nic.mtr/rdap/", - "tld_created": "2015-07-31", - "tld_updated": [ - "2025-12-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/mu.json b/data/generated/tld/mu.json index 87093514..ff4f271b 100644 --- a/data/generated/tld/mu.json +++ b/data/generated/tld/mu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Internet Direct Ltd" } }, + "registry_url": "http://www.nic.mu/", + "whois_server": "whois.tld.mu", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-10-06", + "tld_updated": [ + "2025-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Mauritius", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "v0n0.tld.mu", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.nic.mu/", - "whois_server": "whois.tld.mu", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-10-06", - "tld_updated": [ - "2025-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Mauritius", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/museum.json b/data/generated/tld/museum.json index fbdb6e7c..ca342ecf 100644 --- a/data/generated/tld/museum.json +++ b/data/generated/tld/museum.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "https://about.museum", + "whois_server": "whois.nic.museum", + "rdap_server": "https://rdap.nic.museum", + "tld_created": "2001-10-20", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,32 +112,6 @@ } ] } - ], - "registry_url": "https://about.museum", - "whois_server": "whois.nic.museum", - "rdap_server": "https://rdap.nic.museum", - "tld_created": "2001-10-20", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/music.json b/data/generated/tld/music.json index 73841edd..cdeb8dc4 100644 --- a/data/generated/tld/music.json +++ b/data/generated/tld/music.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://nic.music/", + "whois_server": "whois.registryservices.music", + "rdap_server": "https://rdap.registryservices.music/rdap/", + "tld_created": "2021-10-14", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "https://nic.music/", - "whois_server": "whois.registryservices.music", - "rdap_server": "https://rdap.registryservices.music/rdap/", - "tld_created": "2021-10-14", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/mv.json b/data/generated/tld/mv.json index 2ac20560..271f5134 100644 --- a/data/generated/tld/mv.json +++ b/data/generated/tld/mv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "Dhivehi Raajjeyge Gulhun PLC" } }, + "tld_created": "1996-09-25", + "tld_updated": [ + "2026-02-05" + ], + "annotations": { + "country_name_iso": "Maldives", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "baraveli.ns.mv", @@ -130,20 +144,6 @@ } ] } - ], - "tld_created": "1996-09-25", - "tld_updated": [ - "2026-02-05" - ], - "annotations": { - "country_name_iso": "Maldives", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mw.json b/data/generated/tld/mw.json index ce538fbb..7394ae1d 100644 --- a/data/generated/tld/mw.json +++ b/data/generated/tld/mw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Malawi SDNP" } }, + "registry_url": "http://www.registrar.mw", + "whois_server": "whois.nic.mw", + "tld_created": "1997-01-03", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Malawi", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "chambo.sdnp.org.mw", @@ -149,24 +167,6 @@ } ] } - ], - "registry_url": "http://www.registrar.mw", - "whois_server": "whois.nic.mw", - "tld_created": "1997-01-03", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Malawi", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/mx.json b/data/generated/tld/mx.json index bcdf87f4..41eb0fb3 100644 --- a/data/generated/tld/mx.json +++ b/data/generated/tld/mx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "NIC-Mexico, ITESM - Campus Monterrey" } }, + "registry_url": "http://www.registry.mx/", + "whois_server": "whois.mx", + "tld_created": "1989-02-01", + "tld_updated": [ + "2026-02-28" + ], + "annotations": { + "country_name_iso": "Mexico", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.mx-ns.mx", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.registry.mx/", - "whois_server": "whois.mx", - "tld_created": "1989-02-01", - "tld_updated": [ - "2026-02-28" - ], - "annotations": { - "country_name_iso": "Mexico", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/my.json b/data/generated/tld/my.json index 51d5a922..1bab7939 100644 --- a/data/generated/tld/my.json +++ b/data/generated/tld/my.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "MYNIC Berhad" } }, + "registry_url": "http://www.mynic.my", + "whois_server": "whois.mynic.my", + "rdap_server": "https://rdap.mynic.my/rdap/", + "tld_created": "1987-06-08", + "tld_updated": [ + "2026-04-18" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Malaysia", + "as_org_aliases": [ + "CentralNic", + "Tucows" + ], + "as_org_slugs": [ + "centralnic", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.mynic.centralnic-dns.com", @@ -152,26 +172,6 @@ ] } ], - "registry_url": "http://www.mynic.my", - "whois_server": "whois.mynic.my", - "rdap_server": "https://rdap.mynic.my/rdap/", - "tld_created": "1987-06-08", - "tld_updated": [ - "2026-04-18" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Malaysia", - "as_org_aliases": [ - "CentralNic", - "Tucows" - ], - "as_org_slugs": [ - "centralnic", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbx4cd0ab" ] diff --git a/data/generated/tld/mz.json b/data/generated/tld/mz.json index e66aa160..8b41abc7 100644 --- a/data/generated/tld/mz.json +++ b/data/generated/tld/mz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Centro de Informatica da Universidade Eduardo Mondlane" } }, + "whois_server": "whois.nic.mz", + "tld_created": "1992-09-04", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Mozambique", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.uem.mz", @@ -104,21 +119,6 @@ ], "ipv6": [] } - ], - "whois_server": "whois.nic.mz", - "tld_created": "1992-09-04", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Mozambique", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/na.json b/data/generated/tld/na.json index aaadedf5..9674f57d 100644 --- a/data/generated/tld/na.json +++ b/data/generated/tld/na.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "Namibian Network Information Center" } }, + "registry_url": "http://www.na-nic.com.na/", + "rdap_server": "https://keetmans.omadhina.co.na", + "tld_created": "1991-05-08", + "tld_updated": [ + "2024-10-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Namibia", + "as_org_aliases": [ + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyc2.irondns.net", @@ -93,25 +112,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.na-nic.com.na/", - "rdap_server": "https://keetmans.omadhina.co.na", - "tld_created": "1991-05-08", - "tld_updated": [ - "2024-10-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Namibia", - "as_org_aliases": [ - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "knipp-medien", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nab.json b/data/generated/tld/nab.json index da594b36..a6f99ee9 100644 --- a/data/generated/tld/nab.json +++ b/data/generated/tld/nab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nab.com.au", + "whois_server": "whois.nic.nab", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-01" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nab", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nab.com.au", - "whois_server": "whois.nic.nab", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-01" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nagoya.json b/data/generated/tld/nagoya.json index 6a9922ce..df3ab4b9 100644 --- a/data/generated/tld/nagoya.json +++ b/data/generated/tld/nagoya.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.nagoya", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,35 +127,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.nagoya", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/name.json b/data/generated/tld/name.json index 87356c36..1ff62c2b 100644 --- a/data/generated/tld/name.json +++ b/data/generated/tld/name.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,22 +28,49 @@ "date_removed": null } }, + "registry_url": "http://www.nic.name", + "whois_server": "whois.nic.name", + "rdap_server": "https://tld-rdap.verisign.com/name/v1/", + "tld_created": "2001-08-17", + "tld_updated": [ + "2026-03-23" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -72,16 +99,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "http://www.nic.name", - "whois_server": "whois.nic.name", - "rdap_server": "https://tld-rdap.verisign.com/name/v1/", - "tld_created": "2001-08-17", - "tld_updated": [ - "2026-03-23" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/navy.json b/data/generated/tld/navy.json index 7498268b..af8622c5 100644 --- a/data/generated/tld/navy.json +++ b/data/generated/tld/navy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.navy", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nba.json b/data/generated/tld/nba.json index 5dd37618..9d7474a3 100644 --- a/data/generated/tld/nba.json +++ b/data/generated/tld/nba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nba.com", + "rdap_server": "https://rdap.nic.nba/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nba", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.nba.com", - "rdap_server": "https://rdap.nic.nba/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nc.json b/data/generated/tld/nc.json index e97f579c..22117de2 100644 --- a/data/generated/tld/nc.json +++ b/data/generated/tld/nc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Office des Postes et Telecommunications" } }, + "registry_url": "http://www.domaine.nc", + "whois_server": "whois.nc", + "tld_created": "1993-10-13", + "tld_updated": [ + "2025-07-23" + ], + "annotations": { + "country_name_iso": "New Caledonia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any-ns1.nc", @@ -94,22 +110,6 @@ } ] } - ], - "registry_url": "http://www.domaine.nc", - "whois_server": "whois.nc", - "tld_created": "1993-10-13", - "tld_updated": [ - "2025-07-23" - ], - "annotations": { - "country_name_iso": "New Caledonia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ne.json b/data/generated/tld/ne.json index ccac4a38..4471f259 100644 --- a/data/generated/tld/ne.json +++ b/data/generated/tld/ne.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "SONITEL" } }, + "registry_url": "http://www.intnet.ne", + "tld_created": "1996-04-24", + "tld_updated": [ + "2023-11-09" + ], + "annotations": { + "country_name_iso": "Niger", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bow.rain.fr", @@ -43,9 +52,9 @@ "ipv6": [ { "ip": "2001:67c:e0::101", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] }, @@ -80,15 +89,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.intnet.ne", - "tld_created": "1996-04-24", - "tld_updated": [ - "2023-11-09" - ], - "annotations": { - "country_name_iso": "Niger", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nec.json b/data/generated/tld/nec.json index 8901caa4..de3bc7d2 100644 --- a/data/generated/tld/nec.json +++ b/data/generated/tld/nec.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nec.com/", + "whois_server": "whois.nic.nec", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.nec.com/", - "whois_server": "whois.nic.nec", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/net.json b/data/generated/tld/net.json index 6578a1d2..0215544b 100644 --- a/data/generated/tld/net.json +++ b/data/generated/tld/net.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.verisign-grs.com", + "rdap_server": "https://rdap.verisign.com/net/v1/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.gtld-servers.net", @@ -53,7 +80,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -61,7 +88,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -72,7 +99,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -80,7 +107,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -91,7 +118,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -99,7 +126,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -110,7 +137,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118,7 +145,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -213,8 +240,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -232,8 +259,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -251,8 +278,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -270,39 +297,12 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.verisign-grs.com", - "rdap_server": "https://rdap.verisign.com/net/v1/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/netbank.json b/data/generated/tld/netbank.json index cb2a4969..a004cc3a 100644 --- a/data/generated/tld/netbank.json +++ b/data/generated/tld/netbank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.netbank", + "rdap_server": "https://rdap.nic.netbank/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.netbank", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.netbank", - "rdap_server": "https://rdap.nic.netbank/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/netflix.json b/data/generated/tld/netflix.json index 974abaf7..786d6e8b 100644 --- a/data/generated/tld/netflix.json +++ b/data/generated/tld/netflix.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.netflix.com", + "rdap_server": "https://rdap.nic.netflix/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.netflix", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.netflix.com", - "rdap_server": "https://rdap.nic.netflix/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/network.json b/data/generated/tld/network.json index 41dba279..2e6c9782 100644 --- a/data/generated/tld/network.json +++ b/data/generated/tld/network.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.network", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/neustar.json b/data/generated/tld/neustar.json index 8f467ce2..d8798762 100644 --- a/data/generated/tld/neustar.json +++ b/data/generated/tld/neustar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.neustar.biz", + "rdap_server": "https://rdap.nic.neustar/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.neustar", @@ -53,7 +77,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,30 +167,6 @@ } ] } - ], - "registry_url": "http://www.neustar.biz", - "rdap_server": "https://rdap.nic.neustar/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/new.json b/data/generated/tld/new.json index 064fe3f1..14daa190 100644 --- a/data/generated/tld/new.json +++ b/data/generated/tld/new.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/news.json b/data/generated/tld/news.json index 3dac1b7a..004b05dd 100644 --- a/data/generated/tld/news.json +++ b/data/generated/tld/news.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.news", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/next.json b/data/generated/tld/next.json index 90283e65..5c2308a9 100644 --- a/data/generated/tld/next.json +++ b/data/generated/tld/next.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.next", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.next", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.next", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nextdirect.json b/data/generated/tld/nextdirect.json index 00bbb87c..4ebe6c6c 100644 --- a/data/generated/tld/nextdirect.json +++ b/data/generated/tld/nextdirect.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.nextdirect", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nextdirect", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.nextdirect", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nexus.json b/data/generated/tld/nexus.json index 5389b8d0..39e181ef 100644 --- a/data/generated/tld/nexus.json +++ b/data/generated/tld/nexus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/nf.json b/data/generated/tld/nf.json index a1761171..265774c5 100644 --- a/data/generated/tld/nf.json +++ b/data/generated/tld/nf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Norfolk Island Data Services" } }, + "registry_url": "http://nic.nf", + "whois_server": "whois.nic.nf", + "rdap_server": "https://rdap.nic.nf", + "tld_created": "1996-03-18", + "tld_updated": [ + "2024-02-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Norfolk Island", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.nf", @@ -68,24 +86,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://nic.nf", - "whois_server": "whois.nic.nf", - "rdap_server": "https://rdap.nic.nf", - "tld_created": "1996-03-18", - "tld_updated": [ - "2024-02-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Norfolk Island", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nfl.json b/data/generated/tld/nfl.json index c851e503..3828e1cb 100644 --- a/data/generated/tld/nfl.json +++ b/data/generated/tld/nfl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nfl.com/", + "rdap_server": "https://rdap.nic.nfl/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nfl", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nfl.com/", - "rdap_server": "https://rdap.nic.nfl/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ng.json b/data/generated/tld/ng.json index aa41d9c1..a60b3d88 100644 --- a/data/generated/tld/ng.json +++ b/data/generated/tld/ng.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Nigeria Internet Registration Association" } }, + "registry_url": "http://www.nira.org.ng/", + "whois_server": "whois.nic.net.ng", + "rdap_server": "http://rdap.nic.net.ng", + "tld_created": "1995-03-15", + "tld_updated": [ + "2026-02-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Nigeria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns2.nic.net.ng", @@ -106,24 +124,6 @@ } ] } - ], - "registry_url": "http://www.nira.org.ng/", - "whois_server": "whois.nic.net.ng", - "rdap_server": "http://rdap.nic.net.ng", - "tld_created": "1995-03-15", - "tld_updated": [ - "2026-02-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Nigeria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ngo.json b/data/generated/tld/ngo.json index 83ea6af1..438d325c 100644 --- a/data/generated/tld/ngo.json +++ b/data/generated/tld/ngo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.ngo", + "whois_server": "whois.nic.ngo", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ngo", @@ -143,35 +172,6 @@ } ] } - ], - "registry_url": "http://nic.ngo", - "whois_server": "whois.nic.ngo", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nhk.json b/data/generated/tld/nhk.json index c6d3dac7..6e554da5 100644 --- a/data/generated/tld/nhk.json +++ b/data/generated/tld/nhk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.nhk", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.nhk", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ni.json b/data/generated/tld/ni.json index f12cc184..51bc67e5 100644 --- a/data/generated/tld/ni.json +++ b/data/generated/tld/ni.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Universidad Nacional del Ingernieria" } }, + "registry_url": "http://www.nic.ni", + "tld_created": "1989-10-13", + "tld_updated": [ + "2026-03-23" + ], + "annotations": { + "country_name_iso": "Nicaragua", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-ext.nic.cr", @@ -92,21 +107,6 @@ } ] } - ], - "registry_url": "http://www.nic.ni", - "tld_created": "1989-10-13", - "tld_updated": [ - "2026-03-23" - ], - "annotations": { - "country_name_iso": "Nicaragua", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nico.json b/data/generated/tld/nico.json index cacfc287..9c902684 100644 --- a/data/generated/tld/nico.json +++ b/data/generated/tld/nico.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.nico", + "whois_server": "whois.nic.nico", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.nico", - "whois_server": "whois.nic.nico", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nike.json b/data/generated/tld/nike.json index e01d49c7..44f27b02 100644 --- a/data/generated/tld/nike.json +++ b/data/generated/tld/nike.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nike.com", + "rdap_server": "https://rdap.nic.nike/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nike", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.nike.com", - "rdap_server": "https://rdap.nic.nike/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nikon.json b/data/generated/tld/nikon.json index e6eaacb6..6cb79774 100644 --- a/data/generated/tld/nikon.json +++ b/data/generated/tld/nikon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nikon.com", + "whois_server": "whois.nic.nikon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nikon", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nikon.com", - "whois_server": "whois.nic.nikon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ninja.json b/data/generated/tld/ninja.json index 259af14b..8905ceab 100644 --- a/data/generated/tld/ninja.json +++ b/data/generated/tld/ninja.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ninja", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nissan.json b/data/generated/tld/nissan.json index 9656f078..d71c0be1 100644 --- a/data/generated/tld/nissan.json +++ b/data/generated/tld/nissan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nissay.json b/data/generated/tld/nissay.json index 09a958fe..1f471b32 100644 --- a/data/generated/tld/nissay.json +++ b/data/generated/tld/nissay.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nissay.co.jp/english/", + "whois_server": "whois.nic.nissay", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.nissay", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.nissay.co.jp/english/", - "whois_server": "whois.nic.nissay", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nl.json b/data/generated/tld/nl.json index f90be859..8f2c4157 100644 --- a/data/generated/tld/nl.json +++ b/data/generated/tld/nl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "SIDN (Stichting Internet Domeinregistratie Nederland)" } }, + "registry_url": "https://www.sidn.nl/", + "whois_server": "whois.domain-registry.nl", + "rdap_server": "https://rdap.sidn.nl/", + "tld_created": "1986-04-25", + "tld_updated": [ + "2024-06-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Netherlands", + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.dns.nl", @@ -75,28 +97,6 @@ } ] } - ], - "registry_url": "https://www.sidn.nl/", - "whois_server": "whois.domain-registry.nl", - "rdap_server": "https://rdap.sidn.nl/", - "tld_created": "1986-04-25", - "tld_updated": [ - "2024-06-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Netherlands", - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/no.json b/data/generated/tld/no.json index 28c308b8..418b822f 100644 --- a/data/generated/tld/no.json +++ b/data/generated/tld/no.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Norid A/S" } }, + "registry_url": "http://www.norid.no", + "whois_server": "whois.norid.no", + "rdap_server": "https://rdap.norid.no/", + "tld_created": "1987-03-17", + "tld_updated": [ + "2022-01-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Norway", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "i.nic.no", @@ -125,24 +143,6 @@ } ] } - ], - "registry_url": "http://www.norid.no", - "whois_server": "whois.norid.no", - "rdap_server": "https://rdap.norid.no/", - "tld_created": "1987-03-17", - "tld_updated": [ - "2022-01-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Norway", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nokia.json b/data/generated/tld/nokia.json index 5c709cf5..13d037cd 100644 --- a/data/generated/tld/nokia.json +++ b/data/generated/tld/nokia.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.nokia/", + "whois_server": "whois.nic.nokia", + "rdap_server": "https://rdap.centralnic.com/nokia/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-06-26" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.nokia", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://nic.nokia/", - "whois_server": "whois.nic.nokia", - "rdap_server": "https://rdap.centralnic.com/nokia/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-06-26" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/norton.json b/data/generated/tld/norton.json index 6633b76e..c633d03c 100644 --- a/data/generated/tld/norton.json +++ b/data/generated/tld/norton.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.symantec.com", + "whois_server": "whois.nic.norton", + "rdap_server": "https://rdap.nic.norton", + "tld_created": "2015-09-24", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.norton", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,35 +160,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.symantec.com", - "whois_server": "whois.nic.norton", - "rdap_server": "https://rdap.nic.norton", - "tld_created": "2015-09-24", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/now.json b/data/generated/tld/now.json index 0c989214..203f54c5 100644 --- a/data/generated/tld/now.json +++ b/data/generated/tld/now.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.now", + "rdap_server": "https://rdap.nominet.uk/now/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.now", "ipv4": [ { "ip": "213.248.218.73", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.73", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.now", - "rdap_server": "https://rdap.nominet.uk/now/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nowruz.json b/data/generated/tld/nowruz.json index 614f0f32..cc0572f4 100644 --- a/data/generated/tld/nowruz.json +++ b/data/generated/tld/nowruz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/nowruz/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/nowruz/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/nowtv.json b/data/generated/tld/nowtv.json index 72dfc0e0..d4e62ef3 100644 --- a/data/generated/tld/nowtv.json +++ b/data/generated/tld/nowtv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.nowtv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nowtv", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.nowtv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/np.json b/data/generated/tld/np.json index f3692dc9..342f793a 100644 --- a/data/generated/tld/np.json +++ b/data/generated/tld/np.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,15 +17,30 @@ "tech": "Mercantile Communications Pvt. Ltd." } }, + "registry_url": "http://www.mos.com.np", + "tld_created": "1995-01-25", + "tld_updated": [ + "2025-07-14" + ], + "annotations": { + "country_name_iso": "Nepal", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "np-ns.npix.net.np", "ipv4": [ { "ip": "198.32.126.50", - "asn": 62, - "as_org": "CONE", - "as_country": "US" + "asn": 24474, + "as_org": "ASNPANYCAST Nepal Internet Exchange NP Anycast", + "as_country": "NP" } ], "ipv6": [] @@ -99,21 +114,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.mos.com.np", - "tld_created": "1995-01-25", - "tld_updated": [ - "2025-07-14" - ], - "annotations": { - "country_name_iso": "Nepal", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nr.json b/data/generated/tld/nr.json index fcc8115e..0156614d 100644 --- a/data/generated/tld/nr.json +++ b/data/generated/tld/nr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Government of the Republic of Nauru" } }, + "registry_url": "http://www.cenpac.net.nr", + "tld_created": "1998-03-30", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Nauru", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns0.cenpac.net.nr", @@ -80,15 +89,6 @@ } ] } - ], - "registry_url": "http://www.cenpac.net.nr", - "tld_created": "1998-03-30", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Nauru", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nra.json b/data/generated/tld/nra.json index ad43edfc..c446e794 100644 --- a/data/generated/tld/nra.json +++ b/data/generated/tld/nra.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://contact.nra.org/contact-us.aspx", + "whois_server": "whois.nic.nra", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-12-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nra", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://contact.nra.org/contact-us.aspx", - "whois_server": "whois.nic.nra", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-12-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nrw.json b/data/generated/tld/nrw.json index f9a524ca..866a0e5a 100644 --- a/data/generated/tld/nrw.json +++ b/data/generated/tld/nrw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "http://mindsandmachines.com", + "whois_server": "whois.nic.nrw", + "rdap_server": "https://rdap.nic.nrw/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2023-06-13" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "UltraDNS" + ], + "as_org_slugs": [ + "knipp-medien", + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -129,7 +156,7 @@ "ipv4": [ { "ip": "37.209.194.2", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181,33 +208,6 @@ } ] } - ], - "registry_url": "http://mindsandmachines.com", - "whois_server": "whois.nic.nrw", - "rdap_server": "https://rdap.nic.nrw/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2023-06-13" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "UltraDNS" - ], - "as_org_slugs": [ - "knipp-medien", - "ultradns" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/ntt.json b/data/generated/tld/ntt.json index d4fbd8ca..fa25172c 100644 --- a/data/generated/tld/ntt.json +++ b/data/generated/tld/ntt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://group.ntt/en/dotntt/", + "whois_server": "whois.nic.ntt", + "rdap_server": "https://rdap.nic.ntt/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.ntt", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "https://group.ntt/en/dotntt/", - "whois_server": "whois.nic.ntt", - "rdap_server": "https://rdap.nic.ntt/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/nu.json b/data/generated/tld/nu.json index acf5ad63..0d8089d6 100644 --- a/data/generated/tld/nu.json +++ b/data/generated/tld/nu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "The Internet Infrastructure Foundation" } }, + "registry_url": "https://www.internetstiftelsen.se", + "whois_server": "whois.iis.nu", + "tld_created": "1997-06-20", + "tld_updated": [ + "2025-07-03" + ], + "annotations": { + "country_name_iso": "Niue", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.nu", @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "https://www.internetstiftelsen.se", - "whois_server": "whois.iis.nu", - "tld_created": "1997-06-20", - "tld_updated": [ - "2025-07-03" - ], - "annotations": { - "country_name_iso": "Niue", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/nyc.json b/data/generated/tld/nyc.json index 8812906b..cbe286d8 100644 --- a/data/generated/tld/nyc.json +++ b/data/generated/tld/nyc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.mydotnyc.com", + "whois_server": "whois.nic.nyc", + "rdap_server": "https://rdap.nic.nyc/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.nyc", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,31 +168,6 @@ } ] } - ], - "registry_url": "http://www.mydotnyc.com", - "whois_server": "whois.nic.nyc", - "rdap_server": "https://rdap.nic.nyc/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/nz.json b/data/generated/tld/nz.json index c7c6cf4b..1d150abc 100644 --- a/data/generated/tld/nz.json +++ b/data/generated/tld/nz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "InternetNZ" } }, + "registry_url": "http://www.dnc.org.nz/", + "whois_server": "whois.irs.net.nz", + "tld_created": "1987-01-19", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "country_name_iso": "New Zealand", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.dns.net.nz", @@ -151,22 +167,6 @@ } ] } - ], - "registry_url": "http://www.dnc.org.nz/", - "whois_server": "whois.irs.net.nz", - "tld_created": "1987-01-19", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "country_name_iso": "New Zealand", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/obi.json b/data/generated/tld/obi.json index 0d5151d5..b54047d2 100644 --- a/data/generated/tld/obi.json +++ b/data/generated/tld/obi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.obi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-03", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.obi", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.obi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-03", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/observer.json b/data/generated/tld/observer.json index b100b4e7..2bb73ca3 100644 --- a/data/generated/tld/observer.json +++ b/data/generated/tld/observer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.nic.observer", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2016-09-15", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.nic.observer", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2016-09-15", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/office.json b/data/generated/tld/office.json index 4f4b5fb7..bc9632a5 100644 --- a/data/generated/tld/office.json +++ b/data/generated/tld/office.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.office.com", + "rdap_server": "https://rdap.nominet.uk/office/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2026-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.office", "ipv4": [ { "ip": "213.248.219.136", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.83.136", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.office.com", - "rdap_server": "https://rdap.nominet.uk/office/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2026-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/okinawa.json b/data/generated/tld/okinawa.json index b92b5862..8d4e8d35 100644 --- a/data/generated/tld/okinawa.json +++ b/data/generated/tld/okinawa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.okinawa", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,30 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.okinawa", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/olayan.json b/data/generated/tld/olayan.json index 8cf749c0..0333cb49 100644 --- a/data/generated/tld/olayan.json +++ b/data/generated/tld/olayan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.olayan", + "rdap_server": "https://rdap.nic.olayan/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.olayan", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.olayan", - "rdap_server": "https://rdap.nic.olayan/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/olayangroup.json b/data/generated/tld/olayangroup.json index 98bdbb67..b1292d51 100644 --- a/data/generated/tld/olayangroup.json +++ b/data/generated/tld/olayangroup.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.olayangroup", + "rdap_server": "https://rdap.nic.olayangroup/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.olayangroup", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.olayangroup", - "rdap_server": "https://rdap.nic.olayangroup/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ollo.json b/data/generated/tld/ollo.json index 0e25d9b9..342981a5 100644 --- a/data/generated/tld/ollo.json +++ b/data/generated/tld/ollo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.ollo", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.ollo", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/om.json b/data/generated/tld/om.json index ae10874b..b1d9d1e7 100644 --- a/data/generated/tld/om.json +++ b/data/generated/tld/om.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Telecommunications Regulatory Authority (TRA)" } }, + "registry_url": "http://www.registry.om/om/en/?page_id=197", + "whois_server": "whois.registry.om", + "tld_created": "1996-04-11", + "tld_updated": [ + "2017-11-21" + ], + "annotations": { + "country_name_iso": "Oman", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cctld.alpha.aridns.net.au", @@ -42,7 +58,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -133,22 +149,6 @@ ] } ], - "registry_url": "http://www.registry.om/om/en/?page_id=197", - "whois_server": "whois.registry.om", - "tld_created": "1996-04-11", - "tld_updated": [ - "2017-11-21" - ], - "annotations": { - "country_name_iso": "Oman", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgb9awbf" ] diff --git a/data/generated/tld/omega.json b/data/generated/tld/omega.json index e02e398e..e6eb1b74 100644 --- a/data/generated/tld/omega.json +++ b/data/generated/tld/omega.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.swatchgroup.com/", + "rdap_server": "https://rdap.nominet.uk/omega/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.omega", "ipv4": [ { "ip": "213.248.219.140", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.140", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.swatchgroup.com/", - "rdap_server": "https://rdap.nominet.uk/omega/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/one.json b/data/generated/tld/one.json index 07967154..a15c0da6 100644 --- a/data/generated/tld/one.json +++ b/data/generated/tld/one.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "https://get.one/", + "whois_server": "whois.nic.one", + "rdap_server": "https://rdap.nic.one/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2026-05-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.one", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://get.one/", - "whois_server": "whois.nic.one", - "rdap_server": "https://rdap.nic.one/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2026-05-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ong.json b/data/generated/tld/ong.json index 0da5b90a..2f1c9bcd 100644 --- a/data/generated/tld/ong.json +++ b/data/generated/tld/ong.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://nic.ong", + "whois_server": "whois.nic.ong", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ong", @@ -143,35 +172,6 @@ } ] } - ], - "registry_url": "http://nic.ong", - "whois_server": "whois.nic.ong", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/onl.json b/data/generated/tld/onl.json index 87cda1f1..a41bdb19 100644 --- a/data/generated/tld/onl.json +++ b/data/generated/tld/onl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-03-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.onl", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-03-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/online.json b/data/generated/tld/online.json index ede19e07..8900930f 100644 --- a/data/generated/tld/online.json +++ b/data/generated/tld/online.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.online", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.online", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/ooo.json b/data/generated/tld/ooo.json index e1c12fcb..af80bc7d 100644 --- a/data/generated/tld/ooo.json +++ b/data/generated/tld/ooo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.infibeam.com", + "whois_server": "whois.nic.ooo", + "rdap_server": "https://rdap.centralnic.com/ooo", + "tld_created": "2014-07-31", + "tld_updated": [ + "2024-04-30" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.ooo", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.infibeam.com", - "whois_server": "whois.nic.ooo", - "rdap_server": "https://rdap.centralnic.com/ooo", - "tld_created": "2014-07-31", - "tld_updated": [ - "2024-04-30" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/open.json b/data/generated/tld/open.json index 54127c91..f8c44d83 100644 --- a/data/generated/tld/open.json +++ b/data/generated/tld/open.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "whois_server": "whois.nic.open", + "rdap_server": "https://rdap.nic.open/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.open", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "whois_server": "whois.nic.open", - "rdap_server": "https://rdap.nic.open/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/oracle.json b/data/generated/tld/oracle.json index 7fc9a082..a795ae37 100644 --- a/data/generated/tld/oracle.json +++ b/data/generated/tld/oracle.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.oracle", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-02-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.oracle", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.oracle", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-02-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/orange.json b/data/generated/tld/orange.json index 4ae5c3d7..79c09d06 100644 --- a/data/generated/tld/orange.json +++ b/data/generated/tld/orange.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.orange", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.orange", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.orange", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/org.json b/data/generated/tld/org.json index 7387dae2..952a28a9 100644 --- a/data/generated/tld/org.json +++ b/data/generated/tld/org.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://publicinterestregistry.org", + "whois_server": "whois.publicinterestregistry.org", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.org.afilias-nst.info", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://publicinterestregistry.org", - "whois_server": "whois.publicinterestregistry.org", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/organic.json b/data/generated/tld/organic.json index 56d3750b..fc33b53e 100644 --- a/data/generated/tld/organic.json +++ b/data/generated/tld/organic.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.organic", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/origins.json b/data/generated/tld/origins.json index 13f877ec..e9d7d9bd 100644 --- a/data/generated/tld/origins.json +++ b/data/generated/tld/origins.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.origins", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.origins", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.origins", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/osaka.json b/data/generated/tld/osaka.json index c0647e29..cf4280b9 100644 --- a/data/generated/tld/osaka.json +++ b/data/generated/tld/osaka.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://domain.osaka/", + "whois_server": "whois.nic.osaka", + "rdap_server": "https://rdap.nic.osaka/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.osaka", @@ -53,7 +77,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,30 +167,6 @@ } ] } - ], - "registry_url": "http://domain.osaka/", - "whois_server": "whois.nic.osaka", - "rdap_server": "https://rdap.nic.osaka/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/otsuka.json b/data/generated/tld/otsuka.json index 163760e0..66d97587 100644 --- a/data/generated/tld/otsuka.json +++ b/data/generated/tld/otsuka.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.otsuka", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.otsuka", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ott.json b/data/generated/tld/ott.json index 3bbbd7cc..09203eeb 100644 --- a/data/generated/tld/ott.json +++ b/data/generated/tld/ott.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.ott", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.ott", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/ovh.json b/data/generated/tld/ovh.json index 388f0ecf..bc56ba77 100644 --- a/data/generated/tld/ovh.json +++ b/data/generated/tld/ovh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://www.ovh.com", + "whois_server": "whois.nic.ovh", + "rdap_server": "https://rdap.nic.ovh", + "tld_created": "2014-05-01", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "https://www.ovh.com", - "whois_server": "whois.nic.ovh", - "rdap_server": "https://rdap.nic.ovh", - "tld_created": "2014-05-01", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/pa.json b/data/generated/tld/pa.json index 644e0571..94d6e640 100644 --- a/data/generated/tld/pa.json +++ b/data/generated/tld/pa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "Universidad Tecnologica de Panama" } }, + "registry_url": "http://www.nic.pa/", + "tld_created": "1994-05-25", + "tld_updated": [ + "2024-11-25" + ], + "annotations": { + "country_name_iso": "Panama", + "as_org_aliases": [ + "LACTLD" + ], + "as_org_slugs": [ + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -161,21 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.pa/", - "tld_created": "1994-05-25", - "tld_updated": [ - "2024-11-25" - ], - "annotations": { - "country_name_iso": "Panama", - "as_org_aliases": [ - "LACTLD" - ], - "as_org_slugs": [ - "lactld" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/page.json b/data/generated/tld/page.json index 2492ecd6..1714f21e 100644 --- a/data/generated/tld/page.json +++ b/data/generated/tld/page.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/panasonic.json b/data/generated/tld/panasonic.json index 91ffbe03..199052ed 100644 --- a/data/generated/tld/panasonic.json +++ b/data/generated/tld/panasonic.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/paris.json b/data/generated/tld/paris.json index f36a531c..46215275 100644 --- a/data/generated/tld/paris.json +++ b/data/generated/tld/paris.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://mondomaine.paris.fr/", + "whois_server": "whois.nic.paris", + "rdap_server": "https://rdap.nic.paris", + "tld_created": "2014-03-27", + "tld_updated": [ + "2025-04-29" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,34 +114,6 @@ } ] } - ], - "registry_url": "http://mondomaine.paris.fr/", - "whois_server": "whois.nic.paris", - "rdap_server": "https://rdap.nic.paris", - "tld_created": "2014-03-27", - "tld_updated": [ - "2025-04-29" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/pars.json b/data/generated/tld/pars.json index dce84b21..8eadb87a 100644 --- a/data/generated/tld/pars.json +++ b/data/generated/tld/pars.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/pars/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/pars/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/partners.json b/data/generated/tld/partners.json index 80dd340f..0f2e2397 100644 --- a/data/generated/tld/partners.json +++ b/data/generated/tld/partners.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.partners", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/parts.json b/data/generated/tld/parts.json index 679e7dc9..0a02c8bf 100644 --- a/data/generated/tld/parts.json +++ b/data/generated/tld/parts.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.parts", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/party.json b/data/generated/tld/party.json index 1795e086..48d1d7f9 100644 --- a/data/generated/tld/party.json +++ b/data/generated/tld/party.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.party", + "whois_server": "whois.nic.party", + "rdap_server": "https://rdap.nic.party/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.party", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.party", - "whois_server": "whois.nic.party", - "rdap_server": "https://rdap.nic.party/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pay.json b/data/generated/tld/pay.json index d01fa194..668d55be 100644 --- a/data/generated/tld/pay.json +++ b/data/generated/tld/pay.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pay", + "rdap_server": "https://rdap.nominet.uk/pay/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pay", "ipv4": [ { "ip": "213.248.218.74", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.74", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.pay", - "rdap_server": "https://rdap.nominet.uk/pay/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pccw.json b/data/generated/tld/pccw.json index cb8eb25f..56b21015 100644 --- a/data/generated/tld/pccw.json +++ b/data/generated/tld/pccw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.pccw", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pccw", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.pccw", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pe.json b/data/generated/tld/pe.json index ebb2aa16..5eaeb43c 100644 --- a/data/generated/tld/pe.json +++ b/data/generated/tld/pe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Red Cientifica Peruana" } }, + "registry_url": "http://www.nic.pe", + "whois_server": "kero.yachay.pe", + "tld_created": "1991-11-25", + "tld_updated": [ + "2026-03-25" + ], + "annotations": { + "country_name_iso": "Peru", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -87,24 +105,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.pe", - "whois_server": "kero.yachay.pe", - "tld_created": "1991-11-25", - "tld_updated": [ - "2026-03-25" - ], - "annotations": { - "country_name_iso": "Peru", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pet.json b/data/generated/tld/pet.json index 737d93b0..6b7347e7 100644 --- a/data/generated/tld/pet.json +++ b/data/generated/tld/pet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pet", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pf.json b/data/generated/tld/pf.json index fe92276e..665e1426 100644 --- a/data/generated/tld/pf.json +++ b/data/generated/tld/pf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "ONATI SA" } }, + "whois_server": "whois.registry.pf", + "tld_created": "1996-03-19", + "tld_updated": [ + "2025-10-03" + ], + "annotations": { + "country_name_iso": "French Polynesia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns03.pf", @@ -61,15 +70,6 @@ ], "ipv6": [] } - ], - "whois_server": "whois.registry.pf", - "tld_created": "1996-03-19", - "tld_updated": [ - "2025-10-03" - ], - "annotations": { - "country_name_iso": "French Polynesia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pfizer.json b/data/generated/tld/pfizer.json index 98e033aa..cbe8cbc6 100644 --- a/data/generated/tld/pfizer.json +++ b/data/generated/tld/pfizer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.pfizer.com", + "rdap_server": "https://rdap.nic.pfizer/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.pfizer", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.pfizer.com", - "rdap_server": "https://rdap.nic.pfizer/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pg.json b/data/generated/tld/pg.json index 8791cd91..73497c03 100644 --- a/data/generated/tld/pg.json +++ b/data/generated/tld/pg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "The Papua New Guinea University of Technology" } }, + "whois_server": "whois.nic.pg", + "rdap_server": "https://rdap.nic.pg", + "tld_created": "1991-09-26", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Papua New Guinea", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.pch.pg", @@ -80,23 +97,6 @@ ], "ipv6": [] } - ], - "whois_server": "whois.nic.pg", - "rdap_server": "https://rdap.nic.pg", - "tld_created": "1991-09-26", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Papua New Guinea", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ph.json b/data/generated/tld/ph.json index e4603043..c6a76c83 100644 --- a/data/generated/tld/ph.json +++ b/data/generated/tld/ph.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "DotPH" } }, + "registry_url": "http://dot.ph", + "tld_created": "1990-09-14", + "tld_updated": [ + "2024-01-30" + ], + "annotations": { + "country_name_iso": "Philippines", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "1.ns.ph", @@ -94,23 +111,6 @@ } ] } - ], - "registry_url": "http://dot.ph", - "tld_created": "1990-09-14", - "tld_updated": [ - "2024-01-30" - ], - "annotations": { - "country_name_iso": "Philippines", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pharmacy.json b/data/generated/tld/pharmacy.json index c7f4952a..097b267b 100644 --- a/data/generated/tld/pharmacy.json +++ b/data/generated/tld/pharmacy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "https://nabp.pharmacy/programs/accreditations-inspections/dotpharmacy/", + "rdap_server": "https://rdap.nominet.uk/pharmacy/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2025-05-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pharmacy", "ipv4": [ { "ip": "213.248.219.45", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.45", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "https://nabp.pharmacy/programs/accreditations-inspections/dotpharmacy/", - "rdap_server": "https://rdap.nominet.uk/pharmacy/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2025-05-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/phd.json b/data/generated/tld/phd.json index da84051a..8c457778 100644 --- a/data/generated/tld/phd.json +++ b/data/generated/tld/phd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-15", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-15", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/philips.json b/data/generated/tld/philips.json index ebda7fab..da67c771 100644 --- a/data/generated/tld/philips.json +++ b/data/generated/tld/philips.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.philips", + "whois_server": "whois.nic.philips", + "rdap_server": "https://rdap.nic.philips/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.philips", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.philips", - "whois_server": "whois.nic.philips", - "rdap_server": "https://rdap.nic.philips/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/phone.json b/data/generated/tld/phone.json index faeb8c33..cedf69ce 100644 --- a/data/generated/tld/phone.json +++ b/data/generated/tld/phone.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.phone", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.phone", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/photo.json b/data/generated/tld/photo.json index 12446e70..69c1f29c 100644 --- a/data/generated/tld/photo.json +++ b/data/generated/tld/photo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.photo/", + "whois_server": "whois.nic.photo", + "rdap_server": "https://rdap.nic.photo/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.photo", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.photo/", - "whois_server": "whois.nic.photo", - "rdap_server": "https://rdap.nic.photo/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/photography.json b/data/generated/tld/photography.json index 82210e05..e3a07981 100644 --- a/data/generated/tld/photography.json +++ b/data/generated/tld/photography.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.photography", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/photos.json b/data/generated/tld/photos.json index c15ecb6e..ff36f607 100644 --- a/data/generated/tld/photos.json +++ b/data/generated/tld/photos.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.photos", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/physio.json b/data/generated/tld/physio.json index f9baca5b..93678709 100644 --- a/data/generated/tld/physio.json +++ b/data/generated/tld/physio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.registry.physio", + "whois_server": "whois.nic.physio", + "rdap_server": "https://rdap.nic.physio/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.physio", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.registry.physio", - "whois_server": "whois.nic.physio", - "rdap_server": "https://rdap.nic.physio/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pics.json b/data/generated/tld/pics.json index 7fab960f..afcf6f12 100644 --- a/data/generated/tld/pics.json +++ b/data/generated/tld/pics.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.pics", + "whois_server": "whois.nic.pics", + "rdap_server": "https://rdap.centralnic.com/pics/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.pics", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.pics", - "whois_server": "whois.nic.pics", - "rdap_server": "https://rdap.centralnic.com/pics/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/pictet.json b/data/generated/tld/pictet.json index b7673c49..f885da01 100644 --- a/data/generated/tld/pictet.json +++ b/data/generated/tld/pictet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.pictet", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-29" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pictet", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.pictet", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-29" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pictures.json b/data/generated/tld/pictures.json index 936e5759..b8ea5a26 100644 --- a/data/generated/tld/pictures.json +++ b/data/generated/tld/pictures.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pictures", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pid.json b/data/generated/tld/pid.json index 634c75b8..e6c96288 100644 --- a/data/generated/tld/pid.json +++ b/data/generated/tld/pid.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.topspectrum.com/", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.topspectrum.com/", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/pin.json b/data/generated/tld/pin.json index 7dd60df2..156da39f 100644 --- a/data/generated/tld/pin.json +++ b/data/generated/tld/pin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pin", + "rdap_server": "https://rdap.nominet.uk/pin/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pin", "ipv4": [ { "ip": "213.248.218.75", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.75", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.pin", - "rdap_server": "https://rdap.nominet.uk/pin/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ping.json b/data/generated/tld/ping.json index fb5aae1c..62955f55 100644 --- a/data/generated/tld/ping.json +++ b/data/generated/tld/ping.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ping.com", + "whois_server": "whois.nic.ping", + "rdap_server": "https://rdap.nic.ping/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ping", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.ping.com", - "whois_server": "whois.nic.ping", - "rdap_server": "https://rdap.nic.ping/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pink.json b/data/generated/tld/pink.json index c10ba578..e424e1f0 100644 --- a/data/generated/tld/pink.json +++ b/data/generated/tld/pink.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pink", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pioneer.json b/data/generated/tld/pioneer.json index 3d29a7b6..9a2e9acf 100644 --- a/data/generated/tld/pioneer.json +++ b/data/generated/tld/pioneer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pioneer/", + "rdap_server": "https://rdap.nominet.uk/pioneer/", + "tld_created": "2016-05-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pioneer", "ipv4": [ { "ip": "213.248.219.126", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.126", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.nic.pioneer/", - "rdap_server": "https://rdap.nominet.uk/pioneer/", - "tld_created": "2016-05-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pizza.json b/data/generated/tld/pizza.json index 3594dc6f..87cbe44b 100644 --- a/data/generated/tld/pizza.json +++ b/data/generated/tld/pizza.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pizza", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pk.json b/data/generated/tld/pk.json index 554567eb..425154ad 100644 --- a/data/generated/tld/pk.json +++ b/data/generated/tld/pk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "PKNIC" } }, + "registry_url": "http://www.pknic.net.pk/", + "whois_server": "whois.pknic.net.pk", + "tld_created": "1992-06-03", + "tld_updated": [ + "2022-07-06" + ], + "annotations": { + "country_name_iso": "Pakistan", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "root-c1.pknic.pk", @@ -81,22 +97,6 @@ "ipv6": [] } ], - "registry_url": "http://www.pknic.net.pk/", - "whois_server": "whois.pknic.net.pk", - "tld_created": "1992-06-03", - "tld_updated": [ - "2022-07-06" - ], - "annotations": { - "country_name_iso": "Pakistan", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbai9azgqp6j" ] diff --git a/data/generated/tld/pl.json b/data/generated/tld/pl.json index 08855331..f7148bdb 100644 --- a/data/generated/tld/pl.json +++ b/data/generated/tld/pl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Research and Academic Computer Network" } }, + "registry_url": "https://www.dns.pl/en/", + "whois_server": "whois.dns.pl", + "rdap_server": "https://rdap.dns.pl", + "tld_created": "1990-07-30", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Poland", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a-dns.pl", @@ -132,28 +154,6 @@ } ] } - ], - "registry_url": "https://www.dns.pl/en/", - "whois_server": "whois.dns.pl", - "rdap_server": "https://rdap.dns.pl", - "tld_created": "1990-07-30", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Poland", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/place.json b/data/generated/tld/place.json index 8e57b93d..1db8836c 100644 --- a/data/generated/tld/place.json +++ b/data/generated/tld/place.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.place", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/play.json b/data/generated/tld/play.json index 9bed1161..20b432cf 100644 --- a/data/generated/tld/play.json +++ b/data/generated/tld/play.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/playstation.json b/data/generated/tld/playstation.json index 68939bce..f298c5fe 100644 --- a/data/generated/tld/playstation.json +++ b/data/generated/tld/playstation.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.playstation.com", + "whois_server": "whois.nic.playstation", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_sponsor_alias": "Sony", + "iana_sponsor_slug": "sony", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.playstation.com", - "whois_server": "whois.nic.playstation", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_sponsor_alias": "Sony", - "iana_sponsor_slug": "sony", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/plumbing.json b/data/generated/tld/plumbing.json index fb3f7936..f995fe73 100644 --- a/data/generated/tld/plumbing.json +++ b/data/generated/tld/plumbing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.plumbing", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/plus.json b/data/generated/tld/plus.json index 4743b988..e6bc78f6 100644 --- a/data/generated/tld/plus.json +++ b/data/generated/tld/plus.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.plus", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pm.json b/data/generated/tld/pm.json index 8173c18b..87cd7dae 100644 --- a/data/generated/tld/pm.json +++ b/data/generated/tld/pm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.pm", + "whois_server": "whois.nic.pm", + "rdap_server": "https://rdap.nic.pm/", + "tld_created": "1997-08-20", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Saint Pierre and Miquelon", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "http://www.nic.pm", - "whois_server": "whois.nic.pm", - "rdap_server": "https://rdap.nic.pm/", - "tld_created": "1997-08-20", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Saint Pierre and Miquelon", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pn.json b/data/generated/tld/pn.json index 3d3a85d5..85ad48fb 100644 --- a/data/generated/tld/pn.json +++ b/data/generated/tld/pn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,14 +17,37 @@ "tech": "Nominet" } }, + "registry_url": "https://nic.pn", + "rdap_server": "https://rdap.nominet.uk/pn/", + "tld_created": "1997-07-10", + "tld_updated": [ + "2024-02-15" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "country_name_iso": "Pitcairn", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.pn", "ipv4": [ { "ip": "213.248.219.128", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -42,8 +65,8 @@ "ipv4": [ { "ip": "103.49.83.128", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -170,29 +193,6 @@ } ] } - ], - "registry_url": "https://nic.pn", - "rdap_server": "https://rdap.nominet.uk/pn/", - "tld_created": "1997-07-10", - "tld_updated": [ - "2024-02-15" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "country_name_iso": "Pitcairn", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pnc.json b/data/generated/tld/pnc.json index 47a4526a..0789f8f6 100644 --- a/data/generated/tld/pnc.json +++ b/data/generated/tld/pnc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.pnc.com", + "whois_server": "whois.nic.pnc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pnc", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.pnc.com", - "whois_server": "whois.nic.pnc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pohl.json b/data/generated/tld/pohl.json index 52de8668..e06e1acb 100644 --- a/data/generated/tld/pohl.json +++ b/data/generated/tld/pohl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.pohl", + "rdap_server": "https://rdap.centralnic.com/pohl", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.pohl", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.pohl", - "rdap_server": "https://rdap.centralnic.com/pohl", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/poker.json b/data/generated/tld/poker.json index f371ed9c..11c1a74c 100644 --- a/data/generated/tld/poker.json +++ b/data/generated/tld/poker.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.poker", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/politie.json b/data/generated/tld/politie.json index 889b0164..463cbe9a 100644 --- a/data/generated/tld/politie.json +++ b/data/generated/tld/politie.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.politie", + "rdap_server": "https://rdap.nic.politie/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ] + }, "nameservers": [ { "hostname": "ns1.dns.politie", @@ -86,29 +109,6 @@ } ] } - ], - "whois_server": "whois.nic.politie", - "rdap_server": "https://rdap.nic.politie/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ] - } + ] } } diff --git a/data/generated/tld/porn.json b/data/generated/tld/porn.json index df4a9abe..310539c0 100644 --- a/data/generated/tld/porn.json +++ b/data/generated/tld/porn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.porn", + "whois_server": "whois.nic.porn", + "rdap_server": "https://rdap.nic.porn/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.porn", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://nic.porn", - "whois_server": "whois.nic.porn", - "rdap_server": "https://rdap.nic.porn/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/post.json b/data/generated/tld/post.json index baa7d9ed..0d1a50e2 100644 --- a/data/generated/tld/post.json +++ b/data/generated/tld/post.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.upu.int", + "whois_server": "whois.nic.post", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2012-08-07", + "tld_updated": [ + "2025-05-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.post", @@ -143,27 +164,6 @@ } ] } - ], - "registry_url": "http://www.upu.int", - "whois_server": "whois.nic.post", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2012-08-07", - "tld_updated": [ - "2025-05-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pr.json b/data/generated/tld/pr.json index 489a3350..db8ff406 100644 --- a/data/generated/tld/pr.json +++ b/data/generated/tld/pr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Gauss Research Laboratory Inc." } }, + "registry_url": "http://www.nic.pr", + "whois_server": "whois.afilias-srs.net", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1989-08-27", + "tld_updated": [ + "2022-07-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Puerto Rico", + "as_org_aliases": [ + "DENIC", + "Identity Digital", + "LACTLD" + ], + "as_org_slugs": [ + "denic", + "identity-digital", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -170,28 +192,6 @@ } ] } - ], - "registry_url": "http://www.nic.pr", - "whois_server": "whois.afilias-srs.net", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1989-08-27", - "tld_updated": [ - "2022-07-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Puerto Rico", - "as_org_aliases": [ - "DENIC", - "Identity Digital", - "LACTLD" - ], - "as_org_slugs": [ - "denic", - "identity-digital", - "lactld" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/praxi.json b/data/generated/tld/praxi.json index dbc886f7..ede22523 100644 --- a/data/generated/tld/praxi.json +++ b/data/generated/tld/praxi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.praxi.com", + "rdap_server": "https://rdap.nic.praxi/", + "tld_created": "2014-03-27", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.praxi", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.praxi.com", - "rdap_server": "https://rdap.nic.praxi/", - "tld_created": "2014-03-27", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/press.json b/data/generated/tld/press.json index 3042264d..e9651904 100644 --- a/data/generated/tld/press.json +++ b/data/generated/tld/press.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.press", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.press", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/prime.json b/data/generated/tld/prime.json index 891985ee..a48d9688 100644 --- a/data/generated/tld/prime.json +++ b/data/generated/tld/prime.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.prime", + "rdap_server": "https://rdap.nominet.uk/prime/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.prime", "ipv4": [ { "ip": "213.248.218.51", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.51", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.prime", - "rdap_server": "https://rdap.nominet.uk/prime/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/pro.json b/data/generated/tld/pro.json index 8596be1f..15cbe7be 100644 --- a/data/generated/tld/pro.json +++ b/data/generated/tld/pro.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2002-05-08", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.pro.afilias-nst.info", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2002-05-08", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/prod.json b/data/generated/tld/prod.json index 2fb6875e..a70bd31d 100644 --- a/data/generated/tld/prod.json +++ b/data/generated/tld/prod.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/productions.json b/data/generated/tld/productions.json index 7fda71c7..dca39cc8 100644 --- a/data/generated/tld/productions.json +++ b/data/generated/tld/productions.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.productions", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/prof.json b/data/generated/tld/prof.json index 11eebbf4..528c79bb 100644 --- a/data/generated/tld/prof.json +++ b/data/generated/tld/prof.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/progressive.json b/data/generated/tld/progressive.json index a8d1b2a4..10721aef 100644 --- a/data/generated/tld/progressive.json +++ b/data/generated/tld/progressive.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.progressive.com", + "whois_server": "whois.nic.progressive", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-19", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.progressive", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.progressive.com", - "whois_server": "whois.nic.progressive", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-19", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/promo.json b/data/generated/tld/promo.json index cd606dd5..4f55f12e 100644 --- a/data/generated/tld/promo.json +++ b/data/generated/tld/promo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-18", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.promo", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-18", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/properties.json b/data/generated/tld/properties.json index d4c4b453..d079e62a 100644 --- a/data/generated/tld/properties.json +++ b/data/generated/tld/properties.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.properties", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/property.json b/data/generated/tld/property.json index 705c86fd..4a2f5ede 100644 --- a/data/generated/tld/property.json +++ b/data/generated/tld/property.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/protection.json b/data/generated/tld/protection.json index 33e242c9..1f87a37b 100644 --- a/data/generated/tld/protection.json +++ b/data/generated/tld/protection.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.protection/", + "whois_server": "whois.nic.protection", + "rdap_server": "https://rdap.centralnic.com/protection", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.protection", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.protection/", - "whois_server": "whois.nic.protection", - "rdap_server": "https://rdap.centralnic.com/protection", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/pru.json b/data/generated/tld/pru.json index 364c18e8..5a279dbe 100644 --- a/data/generated/tld/pru.json +++ b/data/generated/tld/pru.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.prudential.com", + "rdap_server": "https://rdap.nic.pru/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.pru", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.prudential.com", - "rdap_server": "https://rdap.nic.pru/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/prudential.json b/data/generated/tld/prudential.json index 3d151dc6..67750df0 100644 --- a/data/generated/tld/prudential.json +++ b/data/generated/tld/prudential.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.prudential.com", + "rdap_server": "https://rdap.nic.prudential/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.prudential", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://www.prudential.com", - "rdap_server": "https://rdap.nic.prudential/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ps.json b/data/generated/tld/ps.json index 887bfa73..f43bbda3 100644 --- a/data/generated/tld/ps.json +++ b/data/generated/tld/ps.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "Palestinian National Internet Naming Authority PNINA" } }, + "registry_url": "http://www.nic.ps", + "tld_created": "2000-03-22", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Palestine, State of", + "as_org_aliases": [ + "Hetzner", + "Packet Clearing House" + ], + "as_org_slugs": [ + "hetzner", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bilal.pnina.ps", @@ -93,9 +110,9 @@ "ipv6": [ { "ip": "2001:67c:e0::105", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] }, @@ -119,23 +136,6 @@ ] } ], - "registry_url": "http://www.nic.ps", - "tld_created": "2000-03-22", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Palestine, State of", - "as_org_aliases": [ - "Hetzner", - "Packet Clearing House" - ], - "as_org_slugs": [ - "hetzner", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--ygbi2ammx" ] diff --git a/data/generated/tld/pt.json b/data/generated/tld/pt.json index 0b05e530..07746085 100644 --- a/data/generated/tld/pt.json +++ b/data/generated/tld/pt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Associação DNS.PT" } }, + "registry_url": "http://www.dns.pt/", + "whois_server": "whois.dns.pt", + "tld_created": "1988-06-30", + "tld_updated": [ + "2023-08-02" + ], + "annotations": { + "country_name_iso": "Portugal", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.pt", @@ -189,26 +209,6 @@ } ] } - ], - "registry_url": "http://www.dns.pt/", - "whois_server": "whois.dns.pt", - "tld_created": "1988-06-30", - "tld_updated": [ - "2023-08-02" - ], - "annotations": { - "country_name_iso": "Portugal", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pub.json b/data/generated/tld/pub.json index bb4101a8..d6bb92d2 100644 --- a/data/generated/tld/pub.json +++ b/data/generated/tld/pub.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pub", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/pw.json b/data/generated/tld/pw.json index 07465452..5b11b14c 100644 --- a/data/generated/tld/pw.json +++ b/data/generated/tld/pw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Radix Technologies Inc SEZC" } }, + "registry_url": "http://www.registry.pw", + "whois_server": "whois.nic.pw", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "1997-06-12", + "tld_updated": [ + "2026-03-31" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Palau", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://www.registry.pw", - "whois_server": "whois.nic.pw", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "1997-06-12", - "tld_updated": [ - "2026-03-31" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Palau", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/pwc.json b/data/generated/tld/pwc.json index be8209de..2966d324 100644 --- a/data/generated/tld/pwc.json +++ b/data/generated/tld/pwc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://pwc.com", + "whois_server": "whois.nic.pwc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pwc", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://pwc.com", - "whois_server": "whois.nic.pwc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/py.json b/data/generated/tld/py.json index 104c32c9..1bd6cce7 100644 --- a/data/generated/tld/py.json +++ b/data/generated/tld/py.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "Centro Nacional de Computación (CNC-UNA)" } }, + "registry_url": "http://www.nic.py", + "tld_created": "1991-09-09", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "country_name_iso": "Paraguay", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.py", @@ -106,23 +123,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.py", - "tld_created": "1991-09-09", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "country_name_iso": "Paraguay", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/qa.json b/data/generated/tld/qa.json index b8cae888..fce3f288 100644 --- a/data/generated/tld/qa.json +++ b/data/generated/tld/qa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Communications Regulatory Authority" } }, + "registry_url": "https://www.cra.gov.qa/", + "whois_server": "whois.registry.qa", + "tld_created": "1996-06-12", + "tld_updated": [ + "2022-02-07" + ], + "annotations": { + "country_name_iso": "Qatar", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registry.qa", @@ -102,7 +120,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -155,24 +173,6 @@ ] } ], - "registry_url": "https://www.cra.gov.qa/", - "whois_server": "whois.registry.qa", - "tld_created": "1996-06-12", - "tld_updated": [ - "2022-02-07" - ], - "annotations": { - "country_name_iso": "Qatar", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--wgbl6a" ] diff --git a/data/generated/tld/qpon.json b/data/generated/tld/qpon.json index 92ef4c3e..23d90d7f 100644 --- a/data/generated/tld/qpon.json +++ b/data/generated/tld/qpon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.qpon", + "whois_server": "whois.nic.qpon", + "rdap_server": "https://rdap.centralnic.com/qpon/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.qpon", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.nic.qpon", - "whois_server": "whois.nic.qpon", - "rdap_server": "https://rdap.centralnic.com/qpon/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/quebec.json b/data/generated/tld/quebec.json index e0fb62d3..e58ec261 100644 --- a/data/generated/tld/quebec.json +++ b/data/generated/tld/quebec.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.registre.quebec", + "whois_server": "whois.nic.quebec", + "rdap_server": "https://rdap.nic.quebec", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-09-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.registre.quebec", - "whois_server": "whois.nic.quebec", - "rdap_server": "https://rdap.nic.quebec", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-09-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/quest.json b/data/generated/tld/quest.json index 8ee809d0..f7c834a9 100644 --- a/data/generated/tld/quest.json +++ b/data/generated/tld/quest.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.quest/", + "whois_server": "whois.nic.quest", + "rdap_server": "https://rdap.centralnic.com/quest/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a-cnic.nic.quest", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.quest/", - "whois_server": "whois.nic.quest", - "rdap_server": "https://rdap.centralnic.com/quest/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/racing.json b/data/generated/tld/racing.json index 0383ce9e..fdb07cf2 100644 --- a/data/generated/tld/racing.json +++ b/data/generated/tld/racing.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.racing", + "whois_server": "whois.nic.racing", + "rdap_server": "https://rdap.nic.racing/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.racing", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.racing", - "whois_server": "whois.nic.racing", - "rdap_server": "https://rdap.nic.racing/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/radio.json b/data/generated/tld/radio.json index 98ae9a3d..60e56868 100644 --- a/data/generated/tld/radio.json +++ b/data/generated/tld/radio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://www.nic.radio/", + "whois_server": "whois.nic.radio", + "rdap_server": "https://rdap.nic.radio/", + "tld_created": "2016-09-22", + "tld_updated": [ + "2026-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "https://www.nic.radio/", - "whois_server": "whois.nic.radio", - "rdap_server": "https://rdap.nic.radio/", - "tld_created": "2016-09-22", - "tld_updated": [ - "2026-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/re.json b/data/generated/tld/re.json index e555f7f4..a4e36a1b 100644 --- a/data/generated/tld/re.json +++ b/data/generated/tld/re.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.re", + "whois_server": "whois.nic.re", + "rdap_server": "https://rdap.nic.re/", + "tld_created": "1997-04-07", + "tld_updated": [ + "2026-05-10" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Réunion", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "http://www.nic.re", - "whois_server": "whois.nic.re", - "rdap_server": "https://rdap.nic.re/", - "tld_created": "1997-04-07", - "tld_updated": [ - "2026-05-10" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Réunion", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/read.json b/data/generated/tld/read.json index 5069df85..0d152414 100644 --- a/data/generated/tld/read.json +++ b/data/generated/tld/read.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.read", + "rdap_server": "https://rdap.nominet.uk/read/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.read", "ipv4": [ { "ip": "213.248.218.76", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.76", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.read", - "rdap_server": "https://rdap.nominet.uk/read/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/realestate.json b/data/generated/tld/realestate.json index 855eb854..3556d7c2 100644 --- a/data/generated/tld/realestate.json +++ b/data/generated/tld/realestate.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "https://www.get.realtor/", + "rdap_server": "https://rdap.nominet.uk/realestate/", + "tld_created": "2016-04-28", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.realestate", "ipv4": [ { "ip": "213.248.219.123", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.83.123", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "https://www.get.realtor/", - "rdap_server": "https://rdap.nominet.uk/realestate/", - "tld_created": "2016-04-28", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/realtor.json b/data/generated/tld/realtor.json index e4faf852..89f7a741 100644 --- a/data/generated/tld/realtor.json +++ b/data/generated/tld/realtor.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "https://www.get.realtor", + "rdap_server": "https://rdap.nominet.uk/realtor/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.realtor", "ipv4": [ { "ip": "213.248.219.122", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.83.122", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "https://www.get.realtor", - "rdap_server": "https://rdap.nominet.uk/realtor/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/realty.json b/data/generated/tld/realty.json index 08ef9476..5bdf31ff 100644 --- a/data/generated/tld/realty.json +++ b/data/generated/tld/realty.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.nic.realty", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.nic.realty", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/recipes.json b/data/generated/tld/recipes.json index d5e28f48..083b9d8f 100644 --- a/data/generated/tld/recipes.json +++ b/data/generated/tld/recipes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.recipes", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/red.json b/data/generated/tld/red.json index c880906c..afb558b7 100644 --- a/data/generated/tld/red.json +++ b/data/generated/tld/red.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.red", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/redumbrella.json b/data/generated/tld/redumbrella.json index 7b94ab47..599728b1 100644 --- a/data/generated/tld/redumbrella.json +++ b/data/generated/tld/redumbrella.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.redumbrella", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.redumbrella", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.redumbrella", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rehab.json b/data/generated/tld/rehab.json index 7351dd8f..48496b30 100644 --- a/data/generated/tld/rehab.json +++ b/data/generated/tld/rehab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rehab", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/reise.json b/data/generated/tld/reise.json index d41958cf..d89f5131 100644 --- a/data/generated/tld/reise.json +++ b/data/generated/tld/reise.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.reise", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/reisen.json b/data/generated/tld/reisen.json index 2f3efc67..7c40a369 100644 --- a/data/generated/tld/reisen.json +++ b/data/generated/tld/reisen.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.reisen", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/reit.json b/data/generated/tld/reit.json index d955f361..b47198e6 100644 --- a/data/generated/tld/reit.json +++ b/data/generated/tld/reit.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.reit.com", + "whois_server": "whois.nic.reit", + "rdap_server": "https://rdap.centralnic.com/reit", + "tld_created": "2014-10-23", + "tld_updated": [ + "2023-09-19" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.reit", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.reit.com", - "whois_server": "whois.nic.reit", - "rdap_server": "https://rdap.centralnic.com/reit", - "tld_created": "2014-10-23", - "tld_updated": [ - "2023-09-19" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/reliance.json b/data/generated/tld/reliance.json index 4171fdaa..cd32c4ac 100644 --- a/data/generated/tld/reliance.json +++ b/data/generated/tld/reliance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.reliance", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.reliance", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.reliance", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ren.json b/data/generated/tld/ren.json index c1c324bc..ecde9b0f 100644 --- a/data/generated/tld/ren.json +++ b/data/generated/tld/ren.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://nic.ren/", + "whois_server": "whois.nic.ren", + "rdap_server": "https://rdap.zdnsgtld.com/ren", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-10-16" + ], + "annotations": { + "iana_admin_alias": "ZDNS", + "iana_admin_slug": "zdns", + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,30 +149,6 @@ } ] } - ], - "registry_url": "http://nic.ren/", - "whois_server": "whois.nic.ren", - "rdap_server": "https://rdap.zdnsgtld.com/ren", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-10-16" - ], - "annotations": { - "iana_admin_alias": "ZDNS", - "iana_admin_slug": "zdns", - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/rent.json b/data/generated/tld/rent.json index 9b2a630e..3babe095 100644 --- a/data/generated/tld/rent.json +++ b/data/generated/tld/rent.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.rent/", + "whois_server": "whois.nic.rent", + "rdap_server": "https://rdap.centralnic.com/rent", + "tld_created": "2015-04-02", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.rent", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.rent/", - "whois_server": "whois.nic.rent", - "rdap_server": "https://rdap.centralnic.com/rent", - "tld_created": "2015-04-02", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/rentals.json b/data/generated/tld/rentals.json index cf6110f9..81f3f572 100644 --- a/data/generated/tld/rentals.json +++ b/data/generated/tld/rentals.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rentals", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/repair.json b/data/generated/tld/repair.json index 61bb300f..d8bfb6fc 100644 --- a/data/generated/tld/repair.json +++ b/data/generated/tld/repair.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.repair", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/report.json b/data/generated/tld/report.json index 1fc26ad9..8015b1ef 100644 --- a/data/generated/tld/report.json +++ b/data/generated/tld/report.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.report", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/republican.json b/data/generated/tld/republican.json index cc2a0515..bfa8318c 100644 --- a/data/generated/tld/republican.json +++ b/data/generated/tld/republican.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.republican", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rest.json b/data/generated/tld/rest.json index 66591a77..ed20f1f9 100644 --- a/data/generated/tld/rest.json +++ b/data/generated/tld/rest.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.register.rest/", + "whois_server": "whois.nic.rest", + "rdap_server": "https://rdap.registry.bar/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.register.rest/", - "whois_server": "whois.nic.rest", - "rdap_server": "https://rdap.registry.bar/rdap/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/restaurant.json b/data/generated/tld/restaurant.json index fd5f3906..23feffa3 100644 --- a/data/generated/tld/restaurant.json +++ b/data/generated/tld/restaurant.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.restaurant", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/review.json b/data/generated/tld/review.json index dbec8aaf..6c47d92a 100644 --- a/data/generated/tld/review.json +++ b/data/generated/tld/review.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.review", + "whois_server": "whois.nic.review", + "rdap_server": "https://rdap.nic.review/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.review", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.review", - "whois_server": "whois.nic.review", - "rdap_server": "https://rdap.nic.review/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/reviews.json b/data/generated/tld/reviews.json index bbe4edb3..e0f05a0f 100644 --- a/data/generated/tld/reviews.json +++ b/data/generated/tld/reviews.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.reviews", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rexroth.json b/data/generated/tld/rexroth.json index 4491b7f9..9183ce27 100644 --- a/data/generated/tld/rexroth.json +++ b/data/generated/tld/rexroth.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.rexroth", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rexroth", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.rexroth", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rich.json b/data/generated/tld/rich.json index 79dd6725..ad43a443 100644 --- a/data/generated/tld/rich.json +++ b/data/generated/tld/rich.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.i-registry.com", + "whois_server": "whois.nic.rich", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-06-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rich", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.i-registry.com", - "whois_server": "whois.nic.rich", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-06-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/richardli.json b/data/generated/tld/richardli.json index 04584eb9..6e5d0410 100644 --- a/data/generated/tld/richardli.json +++ b/data/generated/tld/richardli.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.richardli", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.richardli", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.richardli", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ricoh.json b/data/generated/tld/ricoh.json index 67800dce..1cd40e88 100644 --- a/data/generated/tld/ricoh.json +++ b/data/generated/tld/ricoh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ricoh.com", + "whois_server": "whois.nic.ricoh", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.ricoh.com", - "whois_server": "whois.nic.ricoh", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ril.json b/data/generated/tld/ril.json index 90468889..1c682b38 100644 --- a/data/generated/tld/ril.json +++ b/data/generated/tld/ril.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.ril", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ril", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.ril", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rio.json b/data/generated/tld/rio.json index e24cc34f..c36ece3a 100644 --- a/data/generated/tld/rio.json +++ b/data/generated/tld/rio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,20 @@ "date_removed": null } }, + "registry_url": "https://nic.rio/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143,20 +157,6 @@ } ] } - ], - "registry_url": "https://nic.rio/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/rip.json b/data/generated/tld/rip.json index aa9ffcd6..383d076b 100644 --- a/data/generated/tld/rip.json +++ b/data/generated/tld/rip.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rip", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ro.json b/data/generated/tld/ro.json index c57aaa1d..2297556b 100644 --- a/data/generated/tld/ro.json +++ b/data/generated/tld/ro.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "National Institute for R&D in Informatics" } }, + "registry_url": "http://www.rotld.ro/", + "whois_server": "whois.rotld.ro", + "tld_created": "1993-02-26", + "tld_updated": [ + "2026-04-28" + ], + "annotations": { + "country_name_iso": "Romania", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-at.rotld.ro", @@ -125,22 +141,6 @@ } ] } - ], - "registry_url": "http://www.rotld.ro/", - "whois_server": "whois.rotld.ro", - "tld_created": "1993-02-26", - "tld_updated": [ - "2026-04-28" - ], - "annotations": { - "country_name_iso": "Romania", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/rocks.json b/data/generated/tld/rocks.json index f7687e04..3760435d 100644 --- a/data/generated/tld/rocks.json +++ b/data/generated/tld/rocks.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rocks", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rodeo.json b/data/generated/tld/rodeo.json index 5b385e7a..3cb40ebe 100644 --- a/data/generated/tld/rodeo.json +++ b/data/generated/tld/rodeo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.rodeo/", + "whois_server": "whois.nic.rodeo", + "rdap_server": "https://rdap.nic.rodeo/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.rodeo", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.rodeo/", - "whois_server": "whois.nic.rodeo", - "rdap_server": "https://rdap.nic.rodeo/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/rogers.json b/data/generated/tld/rogers.json index c9f53c10..57e1a172 100644 --- a/data/generated/tld/rogers.json +++ b/data/generated/tld/rogers.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.rogers.com/consumer/home", + "whois_server": "whois.nic.rogers", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rogers", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.rogers.com/consumer/home", - "whois_server": "whois.nic.rogers", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/room.json b/data/generated/tld/room.json index 454dc4da..96c218ff 100644 --- a/data/generated/tld/room.json +++ b/data/generated/tld/room.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.room", + "rdap_server": "https://rdap.nominet.uk/room/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.room", "ipv4": [ { "ip": "213.248.218.77", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.77", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.room", - "rdap_server": "https://rdap.nominet.uk/room/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/rs.json b/data/generated/tld/rs.json index db354c2c..2e68a675 100644 --- a/data/generated/tld/rs.json +++ b/data/generated/tld/rs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Serbian National Internet Domain Registry (RNIDS)" } }, + "registry_url": "http://www.rnids.rs", + "whois_server": "whois.rnids.rs", + "tld_created": "2007-09-24", + "tld_updated": [ + "2025-02-06" + ], + "annotations": { + "country_name_iso": "Serbia", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.rs", @@ -133,24 +151,6 @@ ] } ], - "registry_url": "http://www.rnids.rs", - "whois_server": "whois.rnids.rs", - "tld_created": "2007-09-24", - "tld_updated": [ - "2025-02-06" - ], - "annotations": { - "country_name_iso": "Serbia", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--90a3ac" ] diff --git a/data/generated/tld/rsvp.json b/data/generated/tld/rsvp.json index 403a0784..5036ff8b 100644 --- a/data/generated/tld/rsvp.json +++ b/data/generated/tld/rsvp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/ru.json b/data/generated/tld/ru.json index e8761d94..336e34b5 100644 --- a/data/generated/tld/ru.json +++ b/data/generated/tld/ru.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Technical Center of Internet" } }, + "registry_url": "http://www.cctld.ru/en", + "whois_server": "whois.tcinet.ru", + "tld_created": "1994-04-07", + "tld_updated": [ + "2025-10-22" + ], + "annotations": { + "country_name_iso": "Russian Federation", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -114,16 +124,6 @@ ] } ], - "registry_url": "http://www.cctld.ru/en", - "whois_server": "whois.tcinet.ru", - "tld_created": "1994-04-07", - "tld_updated": [ - "2025-10-22" - ], - "annotations": { - "country_name_iso": "Russian Federation", - "geographic_scope": "country" - }, "idn": [ "xn--p1ai" ] diff --git a/data/generated/tld/rugby.json b/data/generated/tld/rugby.json index 0e5cec7b..ed377c6d 100644 --- a/data/generated/tld/rugby.json +++ b/data/generated/tld/rugby.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://nic.rugby/", + "whois_server": "whois.nic.rugby", + "rdap_server": "https://rdap.nic.rugby", + "tld_created": "2017-03-23", + "tld_updated": [ + "2025-01-21" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.rugby", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://nic.rugby/", - "whois_server": "whois.nic.rugby", - "rdap_server": "https://rdap.nic.rugby", - "tld_created": "2017-03-23", - "tld_updated": [ - "2025-01-21" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ruhr.json b/data/generated/tld/ruhr.json index ea699ce5..8f10ce99 100644 --- a/data/generated/tld/ruhr.json +++ b/data/generated/tld/ruhr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://dot.ruhr", + "whois_server": "whois.nic.ruhr", + "rdap_server": "https://rdap.centralnic.com/ruhr/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2023-09-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.ruhr", @@ -105,28 +128,6 @@ } ] } - ], - "registry_url": "http://dot.ruhr", - "whois_server": "whois.nic.ruhr", - "rdap_server": "https://rdap.centralnic.com/ruhr/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2023-09-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/run.json b/data/generated/tld/run.json index 6fd8a663..77d35d1e 100644 --- a/data/generated/tld/run.json +++ b/data/generated/tld/run.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.run", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/rw.json b/data/generated/tld/rw.json index 0cc0d653..beb1e285 100644 --- a/data/generated/tld/rw.json +++ b/data/generated/tld/rw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Rwanda Internet Community and Technology Alliance (RICTA) Ltd" } }, + "registry_url": "https://registry.ricta.org.rw", + "whois_server": "whois.ricta.org.rw", + "rdap_server": "https://rdap.ricta.org.rw", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-08-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Rwanda", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dnsnode.ricta.org.rw", @@ -118,8 +136,8 @@ "ipv4": [ { "ip": "41.138.85.98", - "asn": 327707, - "as_org": "AIRTEL-", + "asn": 37124, + "as_org": "tigo-rw-as", "as_country": "RW" } ], @@ -144,24 +162,6 @@ } ] } - ], - "registry_url": "https://registry.ricta.org.rw", - "whois_server": "whois.ricta.org.rw", - "rdap_server": "https://rdap.ricta.org.rw", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-08-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Rwanda", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/rwe.json b/data/generated/tld/rwe.json index a15aa384..5112c7ef 100644 --- a/data/generated/tld/rwe.json +++ b/data/generated/tld/rwe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.rwe", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rwe", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.rwe", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ryukyu.json b/data/generated/tld/ryukyu.json index b681e96f..09179aa1 100644 --- a/data/generated/tld/ryukyu.json +++ b/data/generated/tld/ryukyu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.ryukyu", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,30 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.ryukyu", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sa.json b/data/generated/tld/sa.json index 40313c2f..4fa0924d 100644 --- a/data/generated/tld/sa.json +++ b/data/generated/tld/sa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Communications, Space and Technology Commission" } }, + "registry_url": "http://www.nic.net.sa/", + "whois_server": "whois.nic.net.sa", + "tld_created": "1994-05-17", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Saudi Arabia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c1.dns.sa", @@ -164,8 +180,8 @@ "ipv6": [ { "ip": "2001:16a0:1:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -183,8 +199,8 @@ "ipv6": [ { "ip": "2001:16a0:2:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -209,22 +225,6 @@ ] } ], - "registry_url": "http://www.nic.net.sa/", - "whois_server": "whois.nic.net.sa", - "tld_created": "1994-05-17", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Saudi Arabia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgberp4a5d4ar" ] diff --git a/data/generated/tld/saarland.json b/data/generated/tld/saarland.json index 41988059..05a35e89 100644 --- a/data/generated/tld/saarland.json +++ b/data/generated/tld/saarland.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic-saarland.de", + "whois_server": "whois.nic.saarland", + "rdap_server": "https://rdap.centralnic.com/saarland", + "tld_created": "2014-03-20", + "tld_updated": [ + "2023-09-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.saarland", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic-saarland.de", - "whois_server": "whois.nic.saarland", - "rdap_server": "https://rdap.centralnic.com/saarland", - "tld_created": "2014-03-20", - "tld_updated": [ - "2023-09-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/safe.json b/data/generated/tld/safe.json index 68eacdec..8641591e 100644 --- a/data/generated/tld/safe.json +++ b/data/generated/tld/safe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.safe", + "rdap_server": "https://rdap.nominet.uk/safe/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.safe", "ipv4": [ { "ip": "213.248.218.78", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.78", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.safe", - "rdap_server": "https://rdap.nominet.uk/safe/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/safety.json b/data/generated/tld/safety.json index f67105b4..23dff322 100644 --- a/data/generated/tld/safety.json +++ b/data/generated/tld/safety.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "https://nic.safety", + "whois_server": "whois.nic.safety", + "rdap_server": "https://rdap.nic.safety/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.safety", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "https://nic.safety", - "whois_server": "whois.nic.safety", - "rdap_server": "https://rdap.nic.safety/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sakura.json b/data/generated/tld/sakura.json index 9ecf80ad..a9b950af 100644 --- a/data/generated/tld/sakura.json +++ b/data/generated/tld/sakura.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "https://dot-sakura.sakura.ad.jp/", + "whois_server": "whois.nic.sakura", + "rdap_server": "https://rdap.nic.sakura/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-12-03" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.sakura", @@ -105,26 +125,6 @@ } ] } - ], - "registry_url": "https://dot-sakura.sakura.ad.jp/", - "whois_server": "whois.nic.sakura", - "rdap_server": "https://rdap.nic.sakura/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-12-03" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sale.json b/data/generated/tld/sale.json index af298444..0e2ca091 100644 --- a/data/generated/tld/sale.json +++ b/data/generated/tld/sale.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sale", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/salon.json b/data/generated/tld/salon.json index 87726be7..96116dc0 100644 --- a/data/generated/tld/salon.json +++ b/data/generated/tld/salon.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.salon", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/samsclub.json b/data/generated/tld/samsclub.json index 9367376b..3e0c86b3 100644 --- a/data/generated/tld/samsclub.json +++ b/data/generated/tld/samsclub.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.samsclub.com", + "whois_server": "whois.nic.samsclub", + "rdap_server": "https://rdap.nic.samsclub", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.samsclub", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.samsclub.com", - "whois_server": "whois.nic.samsclub", - "rdap_server": "https://rdap.nic.samsclub", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/samsung.json b/data/generated/tld/samsung.json index ad27ad51..4cc20fdd 100644 --- a/data/generated/tld/samsung.json +++ b/data/generated/tld/samsung.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-27T03:42:17Z", + "publication": "2026-05-28T02:11:16Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,20 @@ "date_removed": null } }, + "registry_url": "http://samsungregistry.com", + "whois_server": "whois.nic.samsung", + "rdap_server": "https://nic.samsung/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2026-05-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "n1-a1.aka-ns.net", @@ -162,20 +176,6 @@ } ] } - ], - "registry_url": "http://samsungregistry.com", - "whois_server": "whois.nic.samsung", - "rdap_server": "https://nic.samsung/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2026-05-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/sandvik.json b/data/generated/tld/sandvik.json index d8243dda..2c7b0eca 100644 --- a/data/generated/tld/sandvik.json +++ b/data/generated/tld/sandvik.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.sandvik", + "whois_server": "whois.nic.sandvik", + "rdap_server": "https://rdap.nic.sandvik/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sandvik", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sandvik", - "whois_server": "whois.nic.sandvik", - "rdap_server": "https://rdap.nic.sandvik/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sandvikcoromant.json b/data/generated/tld/sandvikcoromant.json index 037cd894..8fcea069 100644 --- a/data/generated/tld/sandvikcoromant.json +++ b/data/generated/tld/sandvikcoromant.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.sandvikcoromant", + "whois_server": "whois.nic.sandvikcoromant", + "rdap_server": "https://rdap.nic.sandvikcoromant/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sandvikcoromant", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sandvikcoromant", - "whois_server": "whois.nic.sandvikcoromant", - "rdap_server": "https://rdap.nic.sandvikcoromant/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sanofi.json b/data/generated/tld/sanofi.json index 0b402162..b38e2fe8 100644 --- a/data/generated/tld/sanofi.json +++ b/data/generated/tld/sanofi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.sanofi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sanofi", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.sanofi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sap.json b/data/generated/tld/sap.json index 704270a7..fe16928e 100644 --- a/data/generated/tld/sap.json +++ b/data/generated/tld/sap.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.sap.com", + "whois_server": "whois.nic.sap", + "rdap_server": "https://rdap.nic.sap/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.sap.com", - "whois_server": "whois.nic.sap", - "rdap_server": "https://rdap.nic.sap/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/sarl.json b/data/generated/tld/sarl.json index cddf923c..e02868a1 100644 --- a/data/generated/tld/sarl.json +++ b/data/generated/tld/sarl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sarl", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sas.json b/data/generated/tld/sas.json index 03825584..aa034776 100644 --- a/data/generated/tld/sas.json +++ b/data/generated/tld/sas.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.sas.com", + "rdap_server": "https://rdap.nic.sas/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sas", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.sas.com", - "rdap_server": "https://rdap.nic.sas/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/save.json b/data/generated/tld/save.json index 6cf08f23..995c0264 100644 --- a/data/generated/tld/save.json +++ b/data/generated/tld/save.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.save", + "rdap_server": "https://rdap.nominet.uk/save/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.save", "ipv4": [ { "ip": "213.248.218.79", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.79", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.save", - "rdap_server": "https://rdap.nominet.uk/save/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/saxo.json b/data/generated/tld/saxo.json index 4a675313..3bd1b18f 100644 --- a/data/generated/tld/saxo.json +++ b/data/generated/tld/saxo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.saxo", + "whois_server": "whois.nic.saxo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-03-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.saxo", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.saxo", - "whois_server": "whois.nic.saxo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-03-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sb.json b/data/generated/tld/sb.json index b8b6a888..5839b7f5 100644 --- a/data/generated/tld/sb.json +++ b/data/generated/tld/sb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Solomon Telekom Company Limited" } }, + "registry_url": "http://www.nic.net.sb/", + "whois_server": "whois.nic.net.sb", + "tld_created": "1994-04-19", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Solomon Islands", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -68,22 +84,6 @@ } ] } - ], - "registry_url": "http://www.nic.net.sb/", - "whois_server": "whois.nic.net.sb", - "tld_created": "1994-04-19", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Solomon Islands", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sbi.json b/data/generated/tld/sbi.json index 14ba132a..8fd3dca5 100644 --- a/data/generated/tld/sbi.json +++ b/data/generated/tld/sbi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.sbi.co.in", + "whois_server": "whois.nic.sbi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sbi", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.sbi.co.in", - "whois_server": "whois.nic.sbi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sbs.json b/data/generated/tld/sbs.json index ef1c6e65..b8a8b80b 100644 --- a/data/generated/tld/sbs.json +++ b/data/generated/tld/sbs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.icu", + "whois_server": "whois.nic.sbs", + "rdap_server": "https://rdap.centralnic.com/sbs/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.sbs", @@ -105,32 +131,6 @@ } ] } - ], - "registry_url": "http://nic.icu", - "whois_server": "whois.nic.sbs", - "rdap_server": "https://rdap.centralnic.com/sbs/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/sc.json b/data/generated/tld/sc.json index 21838e31..6e4229df 100644 --- a/data/generated/tld/sc.json +++ b/data/generated/tld/sc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Identity Digital" } }, + "registry_url": "http://www.nic.sc", + "whois_server": "whois.nic.sc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-05-09", + "tld_updated": [ + "2025-09-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Seychelles", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -144,26 +164,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.sc", - "whois_server": "whois.nic.sc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-05-09", - "tld_updated": [ - "2025-09-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Seychelles", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/scb.json b/data/generated/tld/scb.json index ad0b7471..018337c0 100644 --- a/data/generated/tld/scb.json +++ b/data/generated/tld/scb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.scb.co.th/en/personal-banking/top-level-domain.html", + "whois_server": "whois.nic.scb", + "rdap_server": "https://rdap.nic.scb/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Community DNS", + "RcodeZero" + ], + "as_org_slugs": [ + "community-dns", + "rcodezero" + ] + }, "nameservers": [ { "hostname": "c.nic.scb", @@ -86,29 +109,6 @@ } ] } - ], - "registry_url": "https://www.scb.co.th/en/personal-banking/top-level-domain.html", - "whois_server": "whois.nic.scb", - "rdap_server": "https://rdap.nic.scb/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Community DNS", - "RcodeZero" - ], - "as_org_slugs": [ - "community-dns", - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/schaeffler.json b/data/generated/tld/schaeffler.json index 3e5de7ab..7f751528 100644 --- a/data/generated/tld/schaeffler.json +++ b/data/generated/tld/schaeffler.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.schaeffler.com", + "whois_server": "whois.afilias-srs.net", + "rdap_server": "https://rdap.nic.schaeffler/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-05-04" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.schaeffler", @@ -86,27 +107,6 @@ } ] } - ], - "registry_url": "http://www.schaeffler.com", - "whois_server": "whois.afilias-srs.net", - "rdap_server": "https://rdap.nic.schaeffler/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-05-04" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/schmidt.json b/data/generated/tld/schmidt.json index cd4395d2..dfa8cda2 100644 --- a/data/generated/tld/schmidt.json +++ b/data/generated/tld/schmidt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.schmidt/", + "whois_server": "whois.nic.schmidt", + "rdap_server": "https://rdap.nic.schmidt/", + "tld_created": "2014-06-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.schmidt", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.schmidt/", - "whois_server": "whois.nic.schmidt", - "rdap_server": "https://rdap.nic.schmidt/", - "tld_created": "2014-06-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/scholarships.json b/data/generated/tld/scholarships.json index a9556dd1..412e2343 100644 --- a/data/generated/tld/scholarships.json +++ b/data/generated/tld/scholarships.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.scholarships.com", + "whois_server": "whois.nic.scholarships", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.scholarships", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.scholarships.com", - "whois_server": "whois.nic.scholarships", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/school.json b/data/generated/tld/school.json index 1e61e0eb..c7e0a346 100644 --- a/data/generated/tld/school.json +++ b/data/generated/tld/school.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.school", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/schule.json b/data/generated/tld/schule.json index e94a0c83..944005d3 100644 --- a/data/generated/tld/schule.json +++ b/data/generated/tld/schule.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.schule", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/schwarz.json b/data/generated/tld/schwarz.json index cb021acf..29ce304e 100644 --- a/data/generated/tld/schwarz.json +++ b/data/generated/tld/schwarz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.schwarz", + "whois_server": "whois.nic.schwarz", + "rdap_server": "https://rdap.centralnic.com/schwarz", + "tld_created": "2014-12-04", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.schwarz", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.nic.schwarz", - "whois_server": "whois.nic.schwarz", - "rdap_server": "https://rdap.centralnic.com/schwarz", - "tld_created": "2014-12-04", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/science.json b/data/generated/tld/science.json index c3c63d82..e358aff5 100644 --- a/data/generated/tld/science.json +++ b/data/generated/tld/science.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.science", + "whois_server": "whois.nic.science", + "rdap_server": "https://rdap.nic.science/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.science", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.science", - "whois_server": "whois.nic.science", - "rdap_server": "https://rdap.nic.science/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/scot.json b/data/generated/tld/scot.json index 3474ef98..5283d087 100644 --- a/data/generated/tld/scot.json +++ b/data/generated/tld/scot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://dot.scot/", + "whois_server": "whois.nic.scot", + "rdap_server": "https://rdap.nic.scot/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "scottish" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://dot.scot/", - "whois_server": "whois.nic.scot", - "rdap_server": "https://rdap.nic.scot/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "scottish" - } + ] } } diff --git a/data/generated/tld/sd.json b/data/generated/tld/sd.json index 762c1d05..ff5f7dae 100644 --- a/data/generated/tld/sd.json +++ b/data/generated/tld/sd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Sudan Internet Society" } }, + "registry_url": "http://www.isoc.sd", + "whois_server": "whois.nic.sd", + "rdap_server": "https://rdap.nic.sd", + "tld_created": "1997-03-06", + "tld_updated": [ + "2024-01-29" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ans1.canar.sd", @@ -35,9 +53,9 @@ "ipv4": [ { "ip": "196.29.166.134", - "asn": 33788, - "as_org": "KANARTEL", - "as_country": "SD" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -117,31 +135,13 @@ "ipv6": [ { "ip": "2001:67c:e0::109", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } ], - "registry_url": "http://www.isoc.sd", - "whois_server": "whois.nic.sd", - "rdap_server": "https://rdap.nic.sd", - "tld_created": "1997-03-06", - "tld_updated": [ - "2024-01-29" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbpl2fh" ] diff --git a/data/generated/tld/se.json b/data/generated/tld/se.json index 8bcf4ead..efcd5c5e 100644 --- a/data/generated/tld/se.json +++ b/data/generated/tld/se.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Netnod AB" } }, + "registry_url": "https://www.internetstiftelsen.se", + "whois_server": "whois.iis.se", + "tld_created": "1986-09-04", + "tld_updated": [ + "2026-02-12" + ], + "annotations": { + "country_name_iso": "Sweden", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.se", @@ -80,16 +98,16 @@ "ipv4": [ { "ip": "192.36.134.97", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", + "asn": 39870, + "as_org": "NETNOD-MMO Netnod Equipment located at IX in Malmoe", "as_country": "SE" } ], "ipv6": [ { "ip": "2001:67c:2550:301::53", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", + "asn": 39870, + "as_org": "NETNOD-MMO Netnod Equipment located at IX in Malmoe", "as_country": "SE" } ] @@ -208,24 +226,6 @@ } ] } - ], - "registry_url": "https://www.internetstiftelsen.se", - "whois_server": "whois.iis.se", - "tld_created": "1986-09-04", - "tld_updated": [ - "2026-02-12" - ], - "annotations": { - "country_name_iso": "Sweden", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/search.json b/data/generated/tld/search.json index aef838b0..dd653632 100644 --- a/data/generated/tld/search.json +++ b/data/generated/tld/search.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/seat.json b/data/generated/tld/seat.json index 6237596c..d853e5d9 100644 --- a/data/generated/tld/seat.json +++ b/data/generated/tld/seat.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.seat.com/content/com/com/en/contact/abuse.html", + "whois_server": "whois.nic.seat", + "rdap_server": "https://rdap.nic.seat/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "http://www.seat.com/content/com/com/en/contact/abuse.html", - "whois_server": "whois.nic.seat", - "rdap_server": "https://rdap.nic.seat/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/secure.json b/data/generated/tld/secure.json index 755ca342..ee30fd69 100644 --- a/data/generated/tld/secure.json +++ b/data/generated/tld/secure.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.secure", + "rdap_server": "https://rdap.nominet.uk/secure/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.secure", "ipv4": [ { "ip": "213.248.218.80", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.80", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.secure", - "rdap_server": "https://rdap.nominet.uk/secure/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/security.json b/data/generated/tld/security.json index 46a5a8e2..5537c520 100644 --- a/data/generated/tld/security.json +++ b/data/generated/tld/security.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.security/", + "whois_server": "whois.nic.security", + "rdap_server": "https://rdap.centralnic.com/security", + "tld_created": "2015-09-03", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.security", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.security/", - "whois_server": "whois.nic.security", - "rdap_server": "https://rdap.centralnic.com/security", - "tld_created": "2015-09-03", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/seek.json b/data/generated/tld/seek.json index 61ac061c..eb695701 100644 --- a/data/generated/tld/seek.json +++ b/data/generated/tld/seek.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://au.seek.com/about", + "whois_server": "whois.nic.seek", + "rdap_server": "https://rdap.nic.seek/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.seek", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://au.seek.com/about", - "whois_server": "whois.nic.seek", - "rdap_server": "https://rdap.nic.seek/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/select.json b/data/generated/tld/select.json index 20546ab9..5baa0c0b 100644 --- a/data/generated/tld/select.json +++ b/data/generated/tld/select.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.select/", + "whois_server": "whois.nic.select", + "rdap_server": "https://rdap.nic.select/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.select", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.select/", - "whois_server": "whois.nic.select", - "rdap_server": "https://rdap.nic.select/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sener.json b/data/generated/tld/sener.json index d4229b59..824a8de4 100644 --- a/data/generated/tld/sener.json +++ b/data/generated/tld/sener.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://sener.es", + "whois_server": "whois.nic.rwe", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sener", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://sener.es", - "whois_server": "whois.nic.rwe", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/services.json b/data/generated/tld/services.json index a85ab595..622bf798 100644 --- a/data/generated/tld/services.json +++ b/data/generated/tld/services.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.services", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/seven.json b/data/generated/tld/seven.json index c5302b60..26715327 100644 --- a/data/generated/tld/seven.json +++ b/data/generated/tld/seven.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.seven/", + "whois_server": "whois.nic.seven", + "rdap_server": "https://rdap.nic.seven/", + "tld_created": "2015-09-23", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.seven", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.seven/", - "whois_server": "whois.nic.seven", - "rdap_server": "https://rdap.nic.seven/", - "tld_created": "2015-09-23", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sew.json b/data/generated/tld/sew.json index bfee9d54..4debe549 100644 --- a/data/generated/tld/sew.json +++ b/data/generated/tld/sew.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.sew-eurodrive.com/", + "whois_server": "whois.nic.sew", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2023-08-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sew", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.sew-eurodrive.com/", - "whois_server": "whois.nic.sew", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2023-08-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sex.json b/data/generated/tld/sex.json index 1135cd9d..d40af34a 100644 --- a/data/generated/tld/sex.json +++ b/data/generated/tld/sex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.sex", + "whois_server": "whois.nic.sex", + "rdap_server": "https://rdap.nic.sex/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sex", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sex", - "whois_server": "whois.nic.sex", - "rdap_server": "https://rdap.nic.sex/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sexy.json b/data/generated/tld/sexy.json index 60343c4c..8540c8e1 100644 --- a/data/generated/tld/sexy.json +++ b/data/generated/tld/sexy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/sfr.json b/data/generated/tld/sfr.json index 28629ac4..55797a82 100644 --- a/data/generated/tld/sfr.json +++ b/data/generated/tld/sfr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.sfr", + "rdap_server": "https://rdap.centralnic.com/sfr", + "tld_created": "2015-11-12", + "tld_updated": [ + "2024-01-31" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.sfr", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.sfr", - "rdap_server": "https://rdap.centralnic.com/sfr", - "tld_created": "2015-11-12", - "tld_updated": [ - "2024-01-31" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/sg.json b/data/generated/tld/sg.json index 5c64aa93..225329b4 100644 --- a/data/generated/tld/sg.json +++ b/data/generated/tld/sg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd." } }, + "registry_url": "http://www.sgnic.sg", + "whois_server": "whois.sgnic.sg", + "rdap_server": "https://rdap.sgnic.sg/rdap/", + "tld_created": "1988-10-19", + "tld_updated": [ + "2026-02-04" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -114,28 +136,6 @@ ] } ], - "registry_url": "http://www.sgnic.sg", - "whois_server": "whois.sgnic.sg", - "rdap_server": "https://rdap.sgnic.sg/rdap/", - "tld_created": "1988-10-19", - "tld_updated": [ - "2026-02-04" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--clchc0ea0b2g2a9gcd", "xn--yfro4i67o" diff --git a/data/generated/tld/sh.json b/data/generated/tld/sh.json index d2ad2e0e..5f359102 100644 --- a/data/generated/tld/sh.json +++ b/data/generated/tld/sh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Internet Computer Bureau Ltd" } }, + "registry_url": "http://www.nic.sh/", + "whois_server": "whois.nic.sh", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-09-23", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Saint Helena, Ascension and Tristan da Cunha", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.sh", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://www.nic.sh/", - "whois_server": "whois.nic.sh", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-09-23", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Saint Helena, Ascension and Tristan da Cunha", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/shangrila.json b/data/generated/tld/shangrila.json index ed580640..80fb2db6 100644 --- a/data/generated/tld/shangrila.json +++ b/data/generated/tld/shangrila.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.shangri-la.com/", + "whois_server": "whois.nic.shangrila", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.shangrila", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.shangri-la.com/", - "whois_server": "whois.nic.shangrila", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sharp.json b/data/generated/tld/sharp.json index a7dc28e8..e3b42441 100644 --- a/data/generated/tld/sharp.json +++ b/data/generated/tld/sharp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/shell.json b/data/generated/tld/shell.json index c5d2ee0d..cf0ba0ee 100644 --- a/data/generated/tld/shell.json +++ b/data/generated/tld/shell.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.shell.com", + "rdap_server": "https://rdap.nominet.uk/shell/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.shell", "ipv4": [ { "ip": "213.248.219.137", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.137", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.shell.com", - "rdap_server": "https://rdap.nominet.uk/shell/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/shia.json b/data/generated/tld/shia.json index 8f9b757b..fee2e2b2 100644 --- a/data/generated/tld/shia.json +++ b/data/generated/tld/shia.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/shia/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/shia/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/shiksha.json b/data/generated/tld/shiksha.json index f9c011a4..dfa171e8 100644 --- a/data/generated/tld/shiksha.json +++ b/data/generated/tld/shiksha.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.shiksha", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/shoes.json b/data/generated/tld/shoes.json index 853da1fe..af27145b 100644 --- a/data/generated/tld/shoes.json +++ b/data/generated/tld/shoes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.shoes", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/shop.json b/data/generated/tld/shop.json index fd65fba8..70e62bd1 100644 --- a/data/generated/tld/shop.json +++ b/data/generated/tld/shop.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.shop", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,34 +126,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.shop", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/shopping.json b/data/generated/tld/shopping.json index 21108319..6d984ab6 100644 --- a/data/generated/tld/shopping.json +++ b/data/generated/tld/shopping.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.shopping", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/shouji.json b/data/generated/tld/shouji.json index 176ebf5b..56dcb6b2 100644 --- a/data/generated/tld/shouji.json +++ b/data/generated/tld/shouji.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -91,26 +111,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/show.json b/data/generated/tld/show.json index 0d544180..cb08b333 100644 --- a/data/generated/tld/show.json +++ b/data/generated/tld/show.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.show", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/si.json b/data/generated/tld/si.json index 0a47712d..9febbe60 100644 --- a/data/generated/tld/si.json +++ b/data/generated/tld/si.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Academic and Research Network of Slovenia (ARNES)" } }, + "registry_url": "https://www.registry.si/", + "whois_server": "whois.register.si", + "rdap_server": "https://rdap.register.si/", + "tld_created": "1992-04-01", + "tld_updated": [ + "2026-03-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Slovenia", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -132,28 +154,6 @@ } ] } - ], - "registry_url": "https://www.registry.si/", - "whois_server": "whois.register.si", - "rdap_server": "https://rdap.register.si/", - "tld_created": "1992-04-01", - "tld_updated": [ - "2026-03-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Slovenia", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/silk.json b/data/generated/tld/silk.json index f1788c4a..0c245a77 100644 --- a/data/generated/tld/silk.json +++ b/data/generated/tld/silk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.silk", + "rdap_server": "https://rdap.nominet.uk/silk/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.silk", "ipv4": [ { "ip": "213.248.218.59", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.59", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.silk", - "rdap_server": "https://rdap.nominet.uk/silk/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sina.json b/data/generated/tld/sina.json index 5c9ad56c..832b2351 100644 --- a/data/generated/tld/sina.json +++ b/data/generated/tld/sina.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.sina", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sina", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.sina", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/singles.json b/data/generated/tld/singles.json index f444eb65..110480f9 100644 --- a/data/generated/tld/singles.json +++ b/data/generated/tld/singles.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.singles", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/site.json b/data/generated/tld/site.json index 49d44acd..50e98d0a 100644 --- a/data/generated/tld/site.json +++ b/data/generated/tld/site.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.site", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2026-04-21" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.site", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2026-04-21" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/sj.json b/data/generated/tld/sj.json index 974d4947..63a1cb9f 100644 --- a/data/generated/tld/sj.json +++ b/data/generated/tld/sj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Norid A/S" } }, + "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-sj/", + "tld_created": "1997-08-21", + "tld_updated": [ + "2022-01-14" + ], + "annotations": { + "country_name_iso": "Svalbard and Jan Mayen", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nac.no", @@ -132,15 +141,6 @@ } ] } - ], - "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-sj/", - "tld_created": "1997-08-21", - "tld_updated": [ - "2022-01-14" - ], - "annotations": { - "country_name_iso": "Svalbard and Jan Mayen", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sk.json b/data/generated/tld/sk.json index 5463482e..842e6ad4 100644 --- a/data/generated/tld/sk.json +++ b/data/generated/tld/sk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "SK-NIC, a.s." } }, + "registry_url": "http://www.sk-nic.sk", + "whois_server": "whois.sk-nic.sk", + "tld_created": "1993-03-29", + "tld_updated": [ + "2026-03-16" + ], + "annotations": { + "country_name_iso": "Slovakia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "e.tld.sk", @@ -94,22 +110,6 @@ } ] } - ], - "registry_url": "http://www.sk-nic.sk", - "whois_server": "whois.sk-nic.sk", - "tld_created": "1993-03-29", - "tld_updated": [ - "2026-03-16" - ], - "annotations": { - "country_name_iso": "Slovakia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ski.json b/data/generated/tld/ski.json index 9a2f9249..94d7b082 100644 --- a/data/generated/tld/ski.json +++ b/data/generated/tld/ski.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ski", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/skin.json b/data/generated/tld/skin.json index 1129b708..b193e636 100644 --- a/data/generated/tld/skin.json +++ b/data/generated/tld/skin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.skin/", + "whois_server": "whois.nic.skin", + "rdap_server": "https://rdap.centralnic.com/skin/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.skin", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.skin/", - "whois_server": "whois.nic.skin", - "rdap_server": "https://rdap.centralnic.com/skin/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/sky.json b/data/generated/tld/sky.json index 2823bdc7..39fa249f 100644 --- a/data/generated/tld/sky.json +++ b/data/generated/tld/sky.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://nic.sky", + "rdap_server": "https://rdap.nominet.uk/sky/", + "tld_created": "2014-10-02", + "tld_updated": [ + "2025-02-03" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.sky", "ipv4": [ { "ip": "213.248.219.127", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.127", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://nic.sky", - "rdap_server": "https://rdap.nominet.uk/sky/", - "tld_created": "2014-10-02", - "tld_updated": [ - "2025-02-03" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/skype.json b/data/generated/tld/skype.json index 2bfbc7a7..f60f4ab9 100644 --- a/data/generated/tld/skype.json +++ b/data/generated/tld/skype.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.skype.com", + "rdap_server": "https://rdap.nominet.uk/skype/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2026-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.skype", "ipv4": [ { "ip": "213.248.219.138", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.138", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.skype.com", - "rdap_server": "https://rdap.nominet.uk/skype/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2026-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sl.json b/data/generated/tld/sl.json index 545be7b6..6773a34d 100644 --- a/data/generated/tld/sl.json +++ b/data/generated/tld/sl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Sierratel" } }, + "registry_url": "https://www.nic.sl", + "tld_created": "1997-05-09", + "tld_updated": [ + "2021-10-08" + ], + "annotations": { + "country_name_iso": "Sierra Leone", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.neoip.com", @@ -42,15 +51,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.nic.sl", - "tld_created": "1997-05-09", - "tld_updated": [ - "2021-10-08" - ], - "annotations": { - "country_name_iso": "Sierra Leone", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sling.json b/data/generated/tld/sling.json index d303e805..7d632e8f 100644 --- a/data/generated/tld/sling.json +++ b/data/generated/tld/sling.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.echostar.com/", + "whois_server": "whois.nic.sling", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://www.echostar.com/", - "whois_server": "whois.nic.sling", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/sm.json b/data/generated/tld/sm.json index cfdefc16..85119e98 100644 --- a/data/generated/tld/sm.json +++ b/data/generated/tld/sm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Telecom Italia San Marino S.p.A." } }, + "registry_url": "https://www.nic.sm", + "whois_server": "whois.nic.sm", + "tld_created": "1995-08-16", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "San Marino", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.intelcom.sm", @@ -80,22 +96,6 @@ } ] } - ], - "registry_url": "https://www.nic.sm", - "whois_server": "whois.nic.sm", - "tld_created": "1995-08-16", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "San Marino", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/smart.json b/data/generated/tld/smart.json index 87c332c1..87be9c7c 100644 --- a/data/generated/tld/smart.json +++ b/data/generated/tld/smart.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.smart", + "rdap_server": "https://rdap.centralnic.com/smart", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.smart", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.smart", - "rdap_server": "https://rdap.centralnic.com/smart", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/smile.json b/data/generated/tld/smile.json index 11fac2e2..5913df5d 100644 --- a/data/generated/tld/smile.json +++ b/data/generated/tld/smile.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.smile", + "rdap_server": "https://rdap.nominet.uk/smile/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.smile", "ipv4": [ { "ip": "213.248.218.81", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.81", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.smile", - "rdap_server": "https://rdap.nominet.uk/smile/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sn.json b/data/generated/tld/sn.json index dfb95e50..cd597505 100644 --- a/data/generated/tld/sn.json +++ b/data/generated/tld/sn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "CURI - NIC Senegal" } }, + "registry_url": "https://www.cctld.sn", + "whois_server": "whois.nic.sn", + "rdap_server": "https://rdap.nic.sn/whois43/", + "tld_created": "1993-03-19", + "tld_updated": [ + "2026-03-12" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Senegal", + "as_org_aliases": [ + "AFNIC", + "Amazon" + ], + "as_org_slugs": [ + "afnic", + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-tld.ird.fr", @@ -92,26 +112,6 @@ } ] } - ], - "registry_url": "https://www.cctld.sn", - "whois_server": "whois.nic.sn", - "rdap_server": "https://rdap.nic.sn/whois43/", - "tld_created": "1993-03-19", - "tld_updated": [ - "2026-03-12" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Senegal", - "as_org_aliases": [ - "AFNIC", - "Amazon" - ], - "as_org_slugs": [ - "afnic", - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sncf.json b/data/generated/tld/sncf.json index 6ed7fa13..f8bbbdaf 100644 --- a/data/generated/tld/sncf.json +++ b/data/generated/tld/sncf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.sncf.com", + "whois_server": "whois.nic.sncf", + "rdap_server": "https://rdap.nic.sncf", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "http://www.sncf.com", - "whois_server": "whois.nic.sncf", - "rdap_server": "https://rdap.nic.sncf", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/so.json b/data/generated/tld/so.json index 4a422fbc..fc776428 100644 --- a/data/generated/tld/so.json +++ b/data/generated/tld/so.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "soNIC" } }, + "registry_url": "http://www.nic.so/", + "whois_server": "whois.nic.so", + "tld_created": "1997-08-28", + "tld_updated": [ + "2016-04-18" + ], + "annotations": { + "country_name_iso": "Somalia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.so", @@ -56,22 +72,6 @@ } ] } - ], - "registry_url": "http://www.nic.so/", - "whois_server": "whois.nic.so", - "tld_created": "1997-08-28", - "tld_updated": [ - "2016-04-18" - ], - "annotations": { - "country_name_iso": "Somalia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/soccer.json b/data/generated/tld/soccer.json index 2b106d5a..51819fbf 100644 --- a/data/generated/tld/soccer.json +++ b/data/generated/tld/soccer.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.soccer", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/social.json b/data/generated/tld/social.json index 94ab0ace..e5d5c271 100644 --- a/data/generated/tld/social.json +++ b/data/generated/tld/social.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.social", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/softbank.json b/data/generated/tld/softbank.json index d9f5c36d..68884248 100644 --- a/data/generated/tld/softbank.json +++ b/data/generated/tld/softbank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://softbank.com/", + "whois_server": "whois.nic.softbank", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://softbank.com/", - "whois_server": "whois.nic.softbank", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/software.json b/data/generated/tld/software.json index c5aa6f57..030428fb 100644 --- a/data/generated/tld/software.json +++ b/data/generated/tld/software.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.software", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sohu.json b/data/generated/tld/sohu.json index 6007b9b7..78cad001 100644 --- a/data/generated/tld/sohu.json +++ b/data/generated/tld/sohu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,24 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/sohu", + "tld_created": "2014-02-27", + "tld_updated": [ + "2024-11-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,24 +143,6 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/sohu", - "tld_created": "2014-02-27", - "tld_updated": [ - "2024-11-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/solar.json b/data/generated/tld/solar.json index ad91f06b..57c96218 100644 --- a/data/generated/tld/solar.json +++ b/data/generated/tld/solar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.solar", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/solutions.json b/data/generated/tld/solutions.json index f2d93565..89924ae4 100644 --- a/data/generated/tld/solutions.json +++ b/data/generated/tld/solutions.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.solutions", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/song.json b/data/generated/tld/song.json index 35299ec9..05c4d0fa 100644 --- a/data/generated/tld/song.json +++ b/data/generated/tld/song.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.song", + "whois_server": "whois.nic.song", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.song", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://www.nic.song", - "whois_server": "whois.nic.song", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sony.json b/data/generated/tld/sony.json index 70e6f37c..31b41a37 100644 --- a/data/generated/tld/sony.json +++ b/data/generated/tld/sony.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.sony.com", + "whois_server": "whois.nic.sony", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_sponsor_alias": "Sony", + "iana_sponsor_slug": "sony", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.sony.com", - "whois_server": "whois.nic.sony", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_sponsor_alias": "Sony", - "iana_sponsor_slug": "sony", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/soy.json b/data/generated/tld/soy.json index edd82017..308a8e03 100644 --- a/data/generated/tld/soy.json +++ b/data/generated/tld/soy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/spa.json b/data/generated/tld/spa.json index 4eb9b60b..21517ad9 100644 --- a/data/generated/tld/spa.json +++ b/data/generated/tld/spa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "https://nic.spa", + "whois_server": "whois.nic.spa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2020-09-25", + "tld_updated": [ + "2023-09-01" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.spa", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "https://nic.spa", - "whois_server": "whois.nic.spa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2020-09-25", - "tld_updated": [ - "2023-09-01" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/space.json b/data/generated/tld/space.json index 1fc8f93a..32954ad4 100644 --- a/data/generated/tld/space.json +++ b/data/generated/tld/space.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.space", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-21" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.space", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-21" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/sport.json b/data/generated/tld/sport.json index 6a23f530..5bf6fc26 100644 --- a/data/generated/tld/sport.json +++ b/data/generated/tld/sport.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "https://join.sport/", + "whois_server": "whois.nic.sport", + "rdap_server": "https://rdap.nic.sport/", + "tld_created": "2018-01-05", + "tld_updated": [ + "2023-07-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,27 +126,6 @@ } ] } - ], - "registry_url": "https://join.sport/", - "whois_server": "whois.nic.sport", - "rdap_server": "https://rdap.nic.sport/", - "tld_created": "2018-01-05", - "tld_updated": [ - "2023-07-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/spot.json b/data/generated/tld/spot.json index 927f0bf4..0cbaf400 100644 --- a/data/generated/tld/spot.json +++ b/data/generated/tld/spot.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.spot", + "rdap_server": "https://rdap.nominet.uk/spot/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.spot", "ipv4": [ { "ip": "213.248.218.82", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.82", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.spot", - "rdap_server": "https://rdap.nominet.uk/spot/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sr.json b/data/generated/tld/sr.json index 52030cf0..352d1d4d 100644 --- a/data/generated/tld/sr.json +++ b/data/generated/tld/sr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,14 +17,26 @@ "tech": "Telesur" } }, + "registry_url": "https://isp.datasur.sr/", + "whois_server": "whois.sr", + "rdap_server": "https://whois.sr/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2026-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Suriname", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.sr", "ipv4": [ { "ip": "168.195.219.210", - "asn": 27775, - "as_org": "Telecommunicationcompany Suriname - TeleSur", + "asn": 263799, + "as_org": "CARIBBEAN COMMUNICATION SERVICES", "as_country": "SR" } ], @@ -69,24 +81,12 @@ "ipv6": [ { "ip": "2a0f:ff40:100:3112:2d53:cd87::", - "asn": 211588, - "as_org": "XYPHEN", - "as_country": "NL" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ] } - ], - "registry_url": "https://isp.datasur.sr/", - "whois_server": "whois.sr", - "rdap_server": "https://whois.sr/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2026-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Suriname", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/srl.json b/data/generated/tld/srl.json index 47c93b3b..80317f74 100644 --- a/data/generated/tld/srl.json +++ b/data/generated/tld/srl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.internetx.info", + "whois_server": "whois.nic.srl", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.srl", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.internetx.info", - "whois_server": "whois.nic.srl", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ss.json b/data/generated/tld/ss.json index 87347408..33870e49 100644 --- a/data/generated/tld/ss.json +++ b/data/generated/tld/ss.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "National Communication Authority (NCA)" } }, + "registry_url": "https://nic.ss/", + "whois_server": "whois.nic.ss", + "rdap_server": "https://rdap.nic.ss", + "tld_created": "2011-08-31", + "tld_updated": [ + "2024-04-05" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "South Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-ss.afrinic.net", @@ -74,24 +92,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://nic.ss/", - "whois_server": "whois.nic.ss", - "rdap_server": "https://rdap.nic.ss", - "tld_created": "2011-08-31", - "tld_updated": [ - "2024-04-05" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "South Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/st.json b/data/generated/tld/st.json index 5eb775f7..926eb559 100644 --- a/data/generated/tld/st.json +++ b/data/generated/tld/st.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "Bahnhof AB" } }, + "registry_url": "http://www.nic.st", + "whois_server": "whois.nic.st", + "tld_created": "1997-11-07", + "tld_updated": [ + "2022-11-15" + ], + "annotations": { + "country_name_iso": "Sao Tome and Principe", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-st.bahnhof.net", @@ -94,22 +110,6 @@ } ] } - ], - "registry_url": "http://www.nic.st", - "whois_server": "whois.nic.st", - "tld_created": "1997-11-07", - "tld_updated": [ - "2022-11-15" - ], - "annotations": { - "country_name_iso": "Sao Tome and Principe", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/stada.json b/data/generated/tld/stada.json index c5039e1c..c63b2812 100644 --- a/data/generated/tld/stada.json +++ b/data/generated/tld/stada.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.stada.com", + "whois_server": "whois.nic.stada", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.stada", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.stada.com", - "whois_server": "whois.nic.stada", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/staples.json b/data/generated/tld/staples.json index 3d856826..6357949f 100644 --- a/data/generated/tld/staples.json +++ b/data/generated/tld/staples.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.staples.com/", + "rdap_server": "https://rdap.nic.staples/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.staples", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.staples.com/", - "rdap_server": "https://rdap.nic.staples/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/star.json b/data/generated/tld/star.json index 96002710..8a6e3ab6 100644 --- a/data/generated/tld/star.json +++ b/data/generated/tld/star.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.startv.com", + "whois_server": "whois.nic.star", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.star", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.startv.com", - "whois_server": "whois.nic.star", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/statebank.json b/data/generated/tld/statebank.json index cdabebda..d618ab47 100644 --- a/data/generated/tld/statebank.json +++ b/data/generated/tld/statebank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.sbi.co.in", + "whois_server": "whois.nic.statebank", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.statebank", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.sbi.co.in", - "whois_server": "whois.nic.statebank", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/statefarm.json b/data/generated/tld/statefarm.json index 2878349a..85b72a83 100644 --- a/data/generated/tld/statefarm.json +++ b/data/generated/tld/statefarm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.statefarm.com", + "rdap_server": "https://rdap.nic.statefarm/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.statefarm", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.statefarm.com", - "rdap_server": "https://rdap.nic.statefarm/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/stc.json b/data/generated/tld/stc.json index bc472ced..4285cc65 100644 --- a/data/generated/tld/stc.json +++ b/data/generated/tld/stc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.stc", + "rdap_server": "https://rdap.centralnic.com/stc", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.stc", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.stc", - "rdap_server": "https://rdap.centralnic.com/stc", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/stcgroup.json b/data/generated/tld/stcgroup.json index 0bd7a95d..2579a031 100644 --- a/data/generated/tld/stcgroup.json +++ b/data/generated/tld/stcgroup.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.stcgroup", + "rdap_server": "https://rdap.centralnic.com/stcgroup", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.stcgroup", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.stcgroup", - "rdap_server": "https://rdap.centralnic.com/stcgroup", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/stockholm.json b/data/generated/tld/stockholm.json index 80599d07..0b5452a1 100644 --- a/data/generated/tld/stockholm.json +++ b/data/generated/tld/stockholm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.stockholm.se/", + "whois_server": "whois.nic.stockholm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.stockholm", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.stockholm.se/", - "whois_server": "whois.nic.stockholm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/storage.json b/data/generated/tld/storage.json index 00667004..56d2e8e7 100644 --- a/data/generated/tld/storage.json +++ b/data/generated/tld/storage.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.storage/", + "whois_server": "whois.nic.storage", + "rdap_server": "https://rdap.centralnic.com/storage", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.storage", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.storage/", - "whois_server": "whois.nic.storage", - "rdap_server": "https://rdap.centralnic.com/storage", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/store.json b/data/generated/tld/store.json index 70d2d074..11a680fc 100644 --- a/data/generated/tld/store.json +++ b/data/generated/tld/store.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.store", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2016-02-11", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.store", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2016-02-11", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/stream.json b/data/generated/tld/stream.json index 64b0c927..ddfac6e3 100644 --- a/data/generated/tld/stream.json +++ b/data/generated/tld/stream.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.stream", + "whois_server": "whois.nic.stream", + "rdap_server": "https://rdap.nic.stream/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.stream", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.stream", - "whois_server": "whois.nic.stream", - "rdap_server": "https://rdap.nic.stream/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/studio.json b/data/generated/tld/studio.json index 0ce509bb..dead448b 100644 --- a/data/generated/tld/studio.json +++ b/data/generated/tld/studio.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.studio", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/study.json b/data/generated/tld/study.json index 54756380..c4bc937e 100644 --- a/data/generated/tld/study.json +++ b/data/generated/tld/study.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.study", + "whois_server": "whois.nic.study", + "rdap_server": "https://rdap.nic.study/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.study", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.study", - "whois_server": "whois.nic.study", - "rdap_server": "https://rdap.nic.study/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/style.json b/data/generated/tld/style.json index bfe609b8..9685f69b 100644 --- a/data/generated/tld/style.json +++ b/data/generated/tld/style.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.style", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/su.json b/data/generated/tld/su.json index 44797ee7..7e3aef15 100644 --- a/data/generated/tld/su.json +++ b/data/generated/tld/su.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Technical Center of Internet" } }, + "whois_server": "whois.tcinet.ru", + "tld_created": "1990-09-19", + "tld_updated": [ + "2026-04-22" + ], + "annotations": { + "country_name_iso": "Soviet Union", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -113,15 +122,6 @@ } ] } - ], - "whois_server": "whois.tcinet.ru", - "tld_created": "1990-09-19", - "tld_updated": [ - "2026-04-22" - ], - "annotations": { - "country_name_iso": "Soviet Union", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sucks.json b/data/generated/tld/sucks.json index 6ad59df0..45b0a6a9 100644 --- a/data/generated/tld/sucks.json +++ b/data/generated/tld/sucks.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.voxpopregistry.com", + "whois_server": "whois.nic.sucks", + "rdap_server": "https://rdap.nic.sucks/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-12-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sucks", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +111,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +130,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +149,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.voxpopregistry.com", - "whois_server": "whois.nic.sucks", - "rdap_server": "https://rdap.nic.sucks/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-12-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/supplies.json b/data/generated/tld/supplies.json index 994d5557..6eb875d7 100644 --- a/data/generated/tld/supplies.json +++ b/data/generated/tld/supplies.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.supplies", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/supply.json b/data/generated/tld/supply.json index 4a82b885..81f4bad5 100644 --- a/data/generated/tld/supply.json +++ b/data/generated/tld/supply.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.supply", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/support.json b/data/generated/tld/support.json index 935400eb..16463211 100644 --- a/data/generated/tld/support.json +++ b/data/generated/tld/support.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.support", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/surf.json b/data/generated/tld/surf.json index 2b35e91f..686c40ab 100644 --- a/data/generated/tld/surf.json +++ b/data/generated/tld/surf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.surf/", + "whois_server": "whois.nic.surf", + "rdap_server": "https://rdap.nic.surf/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.surf", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.surf/", - "whois_server": "whois.nic.surf", - "rdap_server": "https://rdap.nic.surf/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/surgery.json b/data/generated/tld/surgery.json index 7378ec68..3d3b9d08 100644 --- a/data/generated/tld/surgery.json +++ b/data/generated/tld/surgery.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.surgery", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/suzuki.json b/data/generated/tld/suzuki.json index e94d38b6..054b1426 100644 --- a/data/generated/tld/suzuki.json +++ b/data/generated/tld/suzuki.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.suzuki", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2019-08-27" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.suzuki", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2019-08-27" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/sv.json b/data/generated/tld/sv.json index 057f7226..36b0256a 100644 --- a/data/generated/tld/sv.json +++ b/data/generated/tld/sv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "Conexión al Desarrollo de El Salvador" } }, + "registry_url": "http://www.svnet.sv", + "tld_created": "1994-11-04", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "country_name_iso": "El Salvador", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -61,9 +78,9 @@ "ipv4": [ { "ip": "168.243.17.2", - "asn": 271966, - "as_org": "Red Avanzada de Investigacion, Ciencia y Educacion Salvadorena", - "as_country": "SV" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -118,23 +135,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.svnet.sv", - "tld_created": "1994-11-04", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "country_name_iso": "El Salvador", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/swatch.json b/data/generated/tld/swatch.json index dfeba9a9..e368c339 100644 --- a/data/generated/tld/swatch.json +++ b/data/generated/tld/swatch.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,38 @@ "date_removed": null } }, + "registry_url": "http://www.swatchgroup.com/", + "rdap_server": "https://rdap.nominet.uk/swatch/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.swatch", "ipv4": [ { "ip": "213.248.219.139", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +77,8 @@ "ipv4": [ { "ip": "103.49.83.139", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,30 +205,6 @@ } ] } - ], - "registry_url": "http://www.swatchgroup.com/", - "rdap_server": "https://rdap.nominet.uk/swatch/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/swiss.json b/data/generated/tld/swiss.json index 35af6445..1ed841b6 100644 --- a/data/generated/tld/swiss.json +++ b/data/generated/tld/swiss.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.swiss", + "whois_server": "whois.nic.swiss", + "rdap_server": "https://rdap.nic.swiss", + "tld_created": "2015-04-16", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "RcodeZero" + ], + "as_org_slugs": [ + "knipp-medien", + "rcodezero" + ], + "cultural_affiliation": "swiss" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -162,30 +186,6 @@ } ] } - ], - "registry_url": "http://www.nic.swiss", - "whois_server": "whois.nic.swiss", - "rdap_server": "https://rdap.nic.swiss", - "tld_created": "2015-04-16", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "RcodeZero" - ], - "as_org_slugs": [ - "knipp-medien", - "rcodezero" - ], - "cultural_affiliation": "swiss" - } + ] } } diff --git a/data/generated/tld/sx.json b/data/generated/tld/sx.json index c2b71e34..1b827ee2 100644 --- a/data/generated/tld/sx.json +++ b/data/generated/tld/sx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Canadian Internet Registration Authority (CIRA)" } }, + "registry_url": "http://registry.sx", + "whois_server": "whois.sx", + "tld_created": "2010-12-20", + "tld_updated": [ + "2026-01-26" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "country_name_iso": "Sint Maarten (Dutch part)", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.ns.sx", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://registry.sx", - "whois_server": "whois.sx", - "tld_created": "2010-12-20", - "tld_updated": [ - "2026-01-26" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "country_name_iso": "Sint Maarten (Dutch part)", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/sy.json b/data/generated/tld/sy.json index 576c2535..cc537e46 100644 --- a/data/generated/tld/sy.json +++ b/data/generated/tld/sy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "National Agency for Network Services (NANS)" } }, + "registry_url": "http://tld.sy", + "whois_server": "whois.tld.sy", + "tld_created": "1996-02-20", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Syrian Arab Republic", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.tld.sy", @@ -69,22 +85,6 @@ ] } ], - "registry_url": "http://tld.sy", - "whois_server": "whois.tld.sy", - "tld_created": "1996-02-20", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Syrian Arab Republic", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--ogbpf8fl" ] diff --git a/data/generated/tld/sydney.json b/data/generated/tld/sydney.json index b690fbf7..2075e736 100644 --- a/data/generated/tld/sydney.json +++ b/data/generated/tld/sydney.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://iconic.sydney", + "whois_server": "whois.nic.sydney", + "rdap_server": "https://rdap.nic.sydney/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.sydney", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +116,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +124,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +135,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +143,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +154,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,37 +162,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://iconic.sydney", - "whois_server": "whois.nic.sydney", - "rdap_server": "https://rdap.nic.sydney/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/systems.json b/data/generated/tld/systems.json index a95899a4..07676791 100644 --- a/data/generated/tld/systems.json +++ b/data/generated/tld/systems.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.systems", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/sz.json b/data/generated/tld/sz.json index ee7c4002..f844a2b0 100644 --- a/data/generated/tld/sz.json +++ b/data/generated/tld/sz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Swaziland ISP Association" } }, + "registry_url": "http://www.sispa.org.sz/", + "tld_created": "1993-07-19", + "tld_updated": [ + "2025-07-14" + ], + "annotations": { + "country_name_iso": "Eswatini", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.sispa.org.sz", @@ -68,15 +77,6 @@ } ] } - ], - "registry_url": "http://www.sispa.org.sz/", - "tld_created": "1993-07-19", - "tld_updated": [ - "2025-07-14" - ], - "annotations": { - "country_name_iso": "Eswatini", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tab.json b/data/generated/tld/tab.json index 174385e5..2e8e7efd 100644 --- a/data/generated/tld/tab.json +++ b/data/generated/tld/tab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.tab", + "whois_server": "whois.nic.tab", + "rdap_server": "https://rdap.nic.tab/", + "tld_created": "2015-09-04", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tab", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.tab", - "whois_server": "whois.nic.tab", - "rdap_server": "https://rdap.nic.tab/", - "tld_created": "2015-09-04", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/taipei.json b/data/generated/tld/taipei.json index 3f9a82ea..0ff1bb6a 100644 --- a/data/generated/tld/taipei.json +++ b/data/generated/tld/taipei.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nictaipei.net", + "whois_server": "whois.nic.taipei", + "rdap_server": "https://rdap.nic.taipei/", + "tld_created": "2014-09-25", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.taipei", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://www.nictaipei.net", - "whois_server": "whois.nic.taipei", - "rdap_server": "https://rdap.nic.taipei/", - "tld_created": "2014-09-25", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/talk.json b/data/generated/tld/talk.json index 11719d36..200fa4bf 100644 --- a/data/generated/tld/talk.json +++ b/data/generated/tld/talk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.talk", + "rdap_server": "https://rdap.nominet.uk/talk/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.talk", "ipv4": [ { "ip": "213.248.218.83", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.83", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.talk", - "rdap_server": "https://rdap.nominet.uk/talk/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/taobao.json b/data/generated/tld/taobao.json index af74ee75..067b2cd9 100644 --- a/data/generated/tld/taobao.json +++ b/data/generated/tld/taobao.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.taobao", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.taobao", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.taobao", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/target.json b/data/generated/tld/target.json index 1b56a3a7..f3cdf3ba 100644 --- a/data/generated/tld/target.json +++ b/data/generated/tld/target.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.target.com", + "rdap_server": "https://rdap.nic.target/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.target", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.target.com", - "rdap_server": "https://rdap.nic.target/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tatamotors.json b/data/generated/tld/tatamotors.json index 82a668a0..767cf364 100644 --- a/data/generated/tld/tatamotors.json +++ b/data/generated/tld/tatamotors.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.tatamotors", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tatamotors", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.tatamotors", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tatar.json b/data/generated/tld/tatar.json index 14d7b4f5..83ad6e05 100644 --- a/data/generated/tld/tatar.json +++ b/data/generated/tld/tatar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,23 @@ "date_removed": null } }, + "registry_url": "http://www.dottatar.ru", + "whois_server": "whois.nic.tatar", + "rdap_server": "https://whois.nic.tatar/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "tatar" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -124,23 +141,6 @@ } ] } - ], - "registry_url": "http://www.dottatar.ru", - "whois_server": "whois.nic.tatar", - "rdap_server": "https://whois.nic.tatar/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-10-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "tatar" - } + ] } } diff --git a/data/generated/tld/tattoo.json b/data/generated/tld/tattoo.json index 29a5cd32..f7f0c031 100644 --- a/data/generated/tld/tattoo.json +++ b/data/generated/tld/tattoo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.tattoo/", + "whois_server": "whois.nic.tattoo", + "rdap_server": "https://rdap.nic.tattoo", + "tld_created": "2013-11-08", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tattoo", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.tattoo/", - "whois_server": "whois.nic.tattoo", - "rdap_server": "https://rdap.nic.tattoo", - "tld_created": "2013-11-08", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tax.json b/data/generated/tld/tax.json index daea37fb..72e87719 100644 --- a/data/generated/tld/tax.json +++ b/data/generated/tld/tax.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tax", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/taxi.json b/data/generated/tld/taxi.json index 3053ff33..8066a88e 100644 --- a/data/generated/tld/taxi.json +++ b/data/generated/tld/taxi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.taxi", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tc.json b/data/generated/tld/tc.json index d7060a6f..932f73d4 100644 --- a/data/generated/tld/tc.json +++ b/data/generated/tld/tc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "NIC TC Internet Hizmetleri A.S." } }, + "registry_url": "HTTPS://WWW.NIC.TC", + "whois_server": "whois.nic.tc", + "tld_created": "1997-01-27", + "tld_updated": [ + "2026-03-27" + ], + "annotations": { + "country_name_iso": "Turks and Caicos Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "root1.zone.tc", @@ -142,16 +152,6 @@ } ] } - ], - "registry_url": "HTTPS://WWW.NIC.TC", - "whois_server": "whois.nic.tc", - "tld_created": "1997-01-27", - "tld_updated": [ - "2026-03-27" - ], - "annotations": { - "country_name_iso": "Turks and Caicos Islands", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tci.json b/data/generated/tld/tci.json index 807c8e14..fb6346ab 100644 --- a/data/generated/tld/tci.json +++ b/data/generated/tld/tci.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/tci/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/tci/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/td.json b/data/generated/tld/td.json index e8b080a0..da3cf6d0 100644 --- a/data/generated/tld/td.json +++ b/data/generated/tld/td.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "ADETIC" } }, + "registry_url": "http://www.nic.td", + "whois_server": "whois.nic.td", + "tld_created": "1997-11-03", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "country_name_iso": "Chad", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycastdns1.nic.td", @@ -87,22 +103,6 @@ } ] } - ], - "registry_url": "http://www.nic.td", - "whois_server": "whois.nic.td", - "tld_created": "1997-11-03", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "country_name_iso": "Chad", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tdk.json b/data/generated/tld/tdk.json index d9f45d0d..0d5916d4 100644 --- a/data/generated/tld/tdk.json +++ b/data/generated/tld/tdk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.tdk", + "whois_server": "whois.nic.tdk", + "rdap_server": "https://rdap.nic.tdk/", + "tld_created": "2016-03-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tdk", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.tdk", - "whois_server": "whois.nic.tdk", - "rdap_server": "https://rdap.nic.tdk/", - "tld_created": "2016-03-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/team.json b/data/generated/tld/team.json index ad99d195..aa86f7a1 100644 --- a/data/generated/tld/team.json +++ b/data/generated/tld/team.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.team", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tech.json b/data/generated/tld/tech.json index 8b394a80..7ba2f579 100644 --- a/data/generated/tld/tech.json +++ b/data/generated/tld/tech.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.tech", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.tech", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/technology.json b/data/generated/tld/technology.json index 2ce31a1e..04f02db4 100644 --- a/data/generated/tld/technology.json +++ b/data/generated/tld/technology.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.technology", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tel.json b/data/generated/tld/tel.json index 934b3b8e..bf608289 100644 --- a/data/generated/tld/tel.json +++ b/data/generated/tld/tel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tel", + "whois_server": "whois.nic.tel", + "rdap_server": "https://rdap.nic.tel/", + "tld_created": "2007-03-01", + "tld_updated": [ + "2024-03-18" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.tel", - "whois_server": "whois.nic.tel", - "rdap_server": "https://rdap.nic.tel/", - "tld_created": "2007-03-01", - "tld_updated": [ - "2024-03-18" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/temasek.json b/data/generated/tld/temasek.json index 2d95a9e1..df197c27 100644 --- a/data/generated/tld/temasek.json +++ b/data/generated/tld/temasek.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.temasek.com.sg/nictemasek", + "whois_server": "whois.nic.temasek", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.temasek", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.temasek.com.sg/nictemasek", - "whois_server": "whois.nic.temasek", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tennis.json b/data/generated/tld/tennis.json index 13ff4d5d..9616d3f3 100644 --- a/data/generated/tld/tennis.json +++ b/data/generated/tld/tennis.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tennis", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/teva.json b/data/generated/tld/teva.json index ecf45dcd..0244925b 100644 --- a/data/generated/tld/teva.json +++ b/data/generated/tld/teva.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.teva", + "whois_server": "whois.nic.teva", + "rdap_server": "https://rdap.nic.teva/", + "tld_created": "2016-02-19", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.teva", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.teva", - "whois_server": "whois.nic.teva", - "rdap_server": "https://rdap.nic.teva/", - "tld_created": "2016-02-19", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tf.json b/data/generated/tld/tf.json index 7f3d20e3..1649ab9c 100644 --- a/data/generated/tld/tf.json +++ b/data/generated/tld/tf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.tf", + "whois_server": "whois.nic.tf", + "rdap_server": "https://rdap.nic.tf/", + "tld_created": "1997-08-26", + "tld_updated": [ + "2026-03-13" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "French Southern Territories", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "http://www.nic.tf", - "whois_server": "whois.nic.tf", - "rdap_server": "https://rdap.nic.tf/", - "tld_created": "1997-08-26", - "tld_updated": [ - "2026-03-13" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "French Southern Territories", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tg.json b/data/generated/tld/tg.json index 127c786b..06003821 100644 --- a/data/generated/tld/tg.json +++ b/data/generated/tld/tg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "C.A.F.E. Informatique et Telecommunications" } }, + "registry_url": "http://www.nic.tg", + "whois_server": "whois.nic.tg", + "tld_created": "1996-09-05", + "tld_updated": [ + "2021-03-08" + ], + "annotations": { + "country_name_iso": "Togo", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.admin.net", @@ -142,16 +152,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.tg", - "whois_server": "whois.nic.tg", - "tld_created": "1996-09-05", - "tld_updated": [ - "2021-03-08" - ], - "annotations": { - "country_name_iso": "Togo", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/th.json b/data/generated/tld/th.json index 282eea4d..11a596a9 100644 --- a/data/generated/tld/th.json +++ b/data/generated/tld/th.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Thai Network Information Center Foundation" } }, + "registry_url": "http://www.thnic.co.th", + "whois_server": "whois.thnic.co.th", + "rdap_server": "https://rdap.thains.co.th", + "tld_created": "1988-09-07", + "tld_updated": [ + "2025-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Thailand", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.thains.co.th", @@ -126,26 +146,6 @@ ] } ], - "registry_url": "http://www.thnic.co.th", - "whois_server": "whois.thnic.co.th", - "rdap_server": "https://rdap.thains.co.th", - "tld_created": "1988-09-07", - "tld_updated": [ - "2025-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Thailand", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--o3cw4h" ] diff --git a/data/generated/tld/thd.json b/data/generated/tld/thd.json index 210a5d7a..34c5f48a 100644 --- a/data/generated/tld/thd.json +++ b/data/generated/tld/thd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.homedepot.com", + "whois_server": "whois.nic.thd", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.thd", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.homedepot.com", - "whois_server": "whois.nic.thd", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/theater.json b/data/generated/tld/theater.json index 851d5fa3..eedd22eb 100644 --- a/data/generated/tld/theater.json +++ b/data/generated/tld/theater.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.theater", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/theatre.json b/data/generated/tld/theatre.json index 7e15dd54..4eab3a42 100644 --- a/data/generated/tld/theatre.json +++ b/data/generated/tld/theatre.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.theatre/", + "whois_server": "whois.nic.theatre", + "rdap_server": "https://rdap.centralnic.com/theatre", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.theatre", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.theatre/", - "whois_server": "whois.nic.theatre", - "rdap_server": "https://rdap.centralnic.com/theatre", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/tiaa.json b/data/generated/tld/tiaa.json index 51af6926..d677b000 100644 --- a/data/generated/tld/tiaa.json +++ b/data/generated/tld/tiaa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://tiaa.org", + "whois_server": "whois.nic.tiaa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2024-03-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tiaa", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://tiaa.org", - "whois_server": "whois.nic.tiaa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2024-03-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tickets.json b/data/generated/tld/tickets.json index f7e101a7..005331f7 100644 --- a/data/generated/tld/tickets.json +++ b/data/generated/tld/tickets.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://tickets.tickets", + "whois_server": "whois.nic.tickets", + "rdap_server": "https://rdap.centralnic.com/tickets", + "tld_created": "2015-03-19", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.tickets", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://tickets.tickets", - "whois_server": "whois.nic.tickets", - "rdap_server": "https://rdap.centralnic.com/tickets", - "tld_created": "2015-03-19", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/tienda.json b/data/generated/tld/tienda.json index 3ed2406d..ba22e93d 100644 --- a/data/generated/tld/tienda.json +++ b/data/generated/tld/tienda.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tienda", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tips.json b/data/generated/tld/tips.json index 10e109c5..a74120a2 100644 --- a/data/generated/tld/tips.json +++ b/data/generated/tld/tips.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tips", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tires.json b/data/generated/tld/tires.json index 09be5bed..2e30a937 100644 --- a/data/generated/tld/tires.json +++ b/data/generated/tld/tires.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tires", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tirol.json b/data/generated/tld/tirol.json index 5944ff01..b6704d1b 100644 --- a/data/generated/tld/tirol.json +++ b/data/generated/tld/tirol.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tirol", + "whois_server": "whois.nic.tirol", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -86,30 +110,6 @@ } ] } - ], - "registry_url": "http://www.nic.tirol", - "whois_server": "whois.nic.tirol", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/tj.json b/data/generated/tld/tj.json index 3554fa3a..cc07c37a 100644 --- a/data/generated/tld/tj.json +++ b/data/generated/tld/tj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,15 @@ "tech": "Information Technology Center" } }, + "registry_url": "http://www.nic.tj", + "tld_created": "1997-12-11", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Tajikistan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.tj", @@ -74,21 +83,12 @@ "ipv6": [ { "ip": "2001:67c:e0::117", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } - ], - "registry_url": "http://www.nic.tj", - "tld_created": "1997-12-11", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Tajikistan", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tjmaxx.json b/data/generated/tld/tjmaxx.json index 46f6db84..0b0f3fe0 100644 --- a/data/generated/tld/tjmaxx.json +++ b/data/generated/tld/tjmaxx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.tjmaxx/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tjmaxx", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tjmaxx/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tjx.json b/data/generated/tld/tjx.json index f7a5af1e..97668400 100644 --- a/data/generated/tld/tjx.json +++ b/data/generated/tld/tjx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.tjx/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tjx", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tjx/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tk.json b/data/generated/tld/tk.json index 7888e368..0935f6ed 100644 --- a/data/generated/tld/tk.json +++ b/data/generated/tld/tk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "BV Dot TK" } }, + "registry_url": "http://www.dot.tk", + "whois_server": "whois.dot.tk", + "tld_created": "1997-11-07", + "tld_updated": [ + "2019-02-12" + ], + "annotations": { + "country_name_iso": "Tokelau", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.tk", @@ -94,16 +104,6 @@ } ] } - ], - "registry_url": "http://www.dot.tk", - "whois_server": "whois.dot.tk", - "tld_created": "1997-11-07", - "tld_updated": [ - "2019-02-12" - ], - "annotations": { - "country_name_iso": "Tokelau", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tkmaxx.json b/data/generated/tld/tkmaxx.json index dfb8def3..7bc54171 100644 --- a/data/generated/tld/tkmaxx.json +++ b/data/generated/tld/tkmaxx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.tkmaxx/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tkmaxx", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tkmaxx/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tl.json b/data/generated/tld/tl.json index 88c79d3f..22f9e33f 100644 --- a/data/generated/tld/tl.json +++ b/data/generated/tld/tl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "CoCCA Registry Services (NZ) Limited" } }, + "registry_url": "http://www.nic.tl", + "whois_server": "whois.nic.tl", + "tld_created": "2005-03-23", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Timor-Leste", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.tl", @@ -68,22 +84,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.tl", - "whois_server": "whois.nic.tl", - "tld_created": "2005-03-23", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Timor-Leste", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tm.json b/data/generated/tld/tm.json index 1340ba83..664b84ff 100644 --- a/data/generated/tld/tm.json +++ b/data/generated/tld/tm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "TM Domain Registry Ltd" } }, + "registry_url": "http://www.nic.tm/", + "whois_server": "whois.nic.tm", + "tld_created": "1997-05-30", + "tld_updated": [ + "2025-06-18" + ], + "annotations": { + "country_name_iso": "Turkmenistan", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-a1.tm", @@ -137,22 +153,6 @@ } ] } - ], - "registry_url": "http://www.nic.tm/", - "whois_server": "whois.nic.tm", - "tld_created": "1997-05-30", - "tld_updated": [ - "2025-06-18" - ], - "annotations": { - "country_name_iso": "Turkmenistan", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tmall.json b/data/generated/tld/tmall.json index 4a5a0882..dac47aa2 100644 --- a/data/generated/tld/tmall.json +++ b/data/generated/tld/tmall.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.tmall", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tmall", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.tmall", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tn.json b/data/generated/tld/tn.json index eb9fb224..ae81c0f6 100644 --- a/data/generated/tld/tn.json +++ b/data/generated/tld/tn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Agence Tunisienne d'Internet" } }, + "registry_url": "http://whois.ati.tn", + "whois_server": "whois.ati.tn", + "tld_created": "1991-05-17", + "tld_updated": [ + "2024-08-16" + ], + "annotations": { + "country_name_iso": "Tunisia", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-tn.afrinic.net", @@ -133,24 +151,6 @@ ] } ], - "registry_url": "http://whois.ati.tn", - "whois_server": "whois.ati.tn", - "tld_created": "1991-05-17", - "tld_updated": [ - "2024-08-16" - ], - "annotations": { - "country_name_iso": "Tunisia", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--pgbs0dh" ] diff --git a/data/generated/tld/to.json b/data/generated/tld/to.json index d8b093e8..8b71e0c7 100644 --- a/data/generated/tld/to.json +++ b/data/generated/tld/to.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Tucows.com" } }, + "registry_url": "http://www.tonic.to/", + "whois_server": "whois.tonicregistry.to", + "rdap_server": "https://rdap.tonicregistry.to/rdap/", + "tld_created": "1995-12-18", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "country_name_iso": "Tonga", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -94,28 +116,6 @@ } ] } - ], - "registry_url": "http://www.tonic.to/", - "whois_server": "whois.tonicregistry.to", - "rdap_server": "https://rdap.tonicregistry.to/rdap/", - "tld_created": "1995-12-18", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "country_name_iso": "Tonga", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/today.json b/data/generated/tld/today.json index 77e7e8a4..f86e7732 100644 --- a/data/generated/tld/today.json +++ b/data/generated/tld/today.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.today", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tokyo.json b/data/generated/tld/tokyo.json index c0dfee8b..d55d1ce5 100644 --- a/data/generated/tld/tokyo.json +++ b/data/generated/tld/tokyo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.tokyo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,35 +127,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.tokyo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/tools.json b/data/generated/tld/tools.json index ed8c70ff..10a90c45 100644 --- a/data/generated/tld/tools.json +++ b/data/generated/tld/tools.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tools", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/top.json b/data/generated/tld/top.json index 4df6d319..ca53b113 100644 --- a/data/generated/tld/top.json +++ b/data/generated/tld/top.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.top", + "whois_server": "whois.nic.top", + "rdap_server": "https://rdap.zdnsgtld.com/top/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2026-04-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -82,17 +102,17 @@ "ipv4": [ { "ip": "203.119.82.1", - "asn": 24149, - "as_org": "ZDNS Internet Domain Name System Beijing Engineering Resrarch Center Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2401:8d00:15::1", - "asn": 24149, - "as_org": "ZDNS Internet Domain Name System Beijing Engineering Resrarch Center Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ] }, @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "http://www.nic.top", - "whois_server": "whois.nic.top", - "rdap_server": "https://rdap.zdnsgtld.com/top/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2026-04-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/toray.json b/data/generated/tld/toray.json index 895f10db..8f892418 100644 --- a/data/generated/tld/toray.json +++ b/data/generated/tld/toray.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.toray.com", + "whois_server": "whois.nic.toray", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://www.toray.com", - "whois_server": "whois.nic.toray", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/toshiba.json b/data/generated/tld/toshiba.json index 211013b8..abbf3c13 100644 --- a/data/generated/tld/toshiba.json +++ b/data/generated/tld/toshiba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://nic.toshiba", + "whois_server": "whois.nic.toshiba", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://nic.toshiba", - "whois_server": "whois.nic.toshiba", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/total.json b/data/generated/tld/total.json index ed17360d..8b6f13ba 100644 --- a/data/generated/tld/total.json +++ b/data/generated/tld/total.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.nic.total", + "whois_server": "whois.nic.total", + "rdap_server": "https://rdap.nic.total", + "tld_created": "2016-02-05", + "tld_updated": [ + "2024-09-13" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -86,31 +111,6 @@ } ] } - ], - "registry_url": "http://www.nic.total", - "whois_server": "whois.nic.total", - "rdap_server": "https://rdap.nic.total", - "tld_created": "2016-02-05", - "tld_updated": [ - "2024-09-13" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/tours.json b/data/generated/tld/tours.json index 9d2779bc..2c9e4245 100644 --- a/data/generated/tld/tours.json +++ b/data/generated/tld/tours.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tours", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/town.json b/data/generated/tld/town.json index bad55918..bd998ab8 100644 --- a/data/generated/tld/town.json +++ b/data/generated/tld/town.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.town", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/toyota.json b/data/generated/tld/toyota.json index 0b28bc07..58704830 100644 --- a/data/generated/tld/toyota.json +++ b/data/generated/tld/toyota.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://toyota.jp/", + "whois_server": "whois.nic.toyota", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +76,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,29 +121,6 @@ } ] } - ], - "registry_url": "http://toyota.jp/", - "whois_server": "whois.nic.toyota", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/toys.json b/data/generated/tld/toys.json index ea867fd0..795bfa3c 100644 --- a/data/generated/tld/toys.json +++ b/data/generated/tld/toys.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.toys", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tr.json b/data/generated/tld/tr.json index 418c5c22..07d215b0 100644 --- a/data/generated/tld/tr.json +++ b/data/generated/tld/tr.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Bilgi Teknolojileri ve İletişim Kurumu" } }, + "registry_url": "http://www.trabis.gov.tr", + "whois_server": "whois.trabis.gov.tr", + "tld_created": "1990-09-17", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "country_name_iso": "Türkiye", + "as_org_aliases": [ + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns43.ns.tr", @@ -116,24 +134,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.trabis.gov.tr", - "whois_server": "whois.trabis.gov.tr", - "tld_created": "1990-09-17", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "country_name_iso": "Türkiye", - "as_org_aliases": [ - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/trade.json b/data/generated/tld/trade.json index 8e85bfb6..4739a184 100644 --- a/data/generated/tld/trade.json +++ b/data/generated/tld/trade.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.trade", + "whois_server": "whois.nic.trade", + "rdap_server": "https://rdap.nic.trade/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.trade", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.trade", - "whois_server": "whois.nic.trade", - "rdap_server": "https://rdap.nic.trade/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/trading.json b/data/generated/tld/trading.json index c1329dc5..c447c7c6 100644 --- a/data/generated/tld/trading.json +++ b/data/generated/tld/trading.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.trading", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/training.json b/data/generated/tld/training.json index fca8b995..6a890527 100644 --- a/data/generated/tld/training.json +++ b/data/generated/tld/training.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.training", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/travel.json b/data/generated/tld/travel.json index 5fdcba1c..77d75f41 100644 --- a/data/generated/tld/travel.json +++ b/data/generated/tld/travel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2005-07-27", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.travel", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2005-07-27", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/travelers.json b/data/generated/tld/travelers.json index 4d2ddf7e..826ae5c7 100644 --- a/data/generated/tld/travelers.json +++ b/data/generated/tld/travelers.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.travelers", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.travelers", @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.travelers", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/travelersinsurance.json b/data/generated/tld/travelersinsurance.json index 42621f5c..371c39d5 100644 --- a/data/generated/tld/travelersinsurance.json +++ b/data/generated/tld/travelersinsurance.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.travelersinsurance", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.travelersinsurance", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.travelersinsurance", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/trust.json b/data/generated/tld/trust.json index 1972dbcd..a8d30ed5 100644 --- a/data/generated/tld/trust.json +++ b/data/generated/tld/trust.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/trv.json b/data/generated/tld/trv.json index e7013b9b..a2b3cbe1 100644 --- a/data/generated/tld/trv.json +++ b/data/generated/tld/trv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.trv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.trv", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.trv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tt.json b/data/generated/tld/tt.json index 4bbf7603..de19f27d 100644 --- a/data/generated/tld/tt.json +++ b/data/generated/tld/tt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "TTNIC" } }, + "registry_url": "http://www.nic.tt", + "tld_created": "1991-09-03", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Trinidad and Tobago", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -75,23 +92,6 @@ } ] } - ], - "registry_url": "http://www.nic.tt", - "tld_created": "1991-09-03", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Trinidad and Tobago", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tube.json b/data/generated/tld/tube.json index caecddfa..0bb22302 100644 --- a/data/generated/tld/tube.json +++ b/data/generated/tld/tube.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://get.tube", + "whois_server": "whois.nic.tube", + "rdap_server": "https://rdap.nic.tube/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,26 +125,6 @@ } ] } - ], - "registry_url": "http://get.tube", - "whois_server": "whois.nic.tube", - "rdap_server": "https://rdap.nic.tube/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/tui.json b/data/generated/tld/tui.json index 27cae168..b530b3a4 100644 --- a/data/generated/tld/tui.json +++ b/data/generated/tld/tui.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.tuiregistry.com", + "whois_server": "whois.nic.tui", + "rdap_server": "https://rdap.centralnic.com/tui", + "tld_created": "2014-09-18", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.tui", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.tuiregistry.com", - "whois_server": "whois.nic.tui", - "rdap_server": "https://rdap.centralnic.com/tui", - "tld_created": "2014-09-18", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/tunes.json b/data/generated/tld/tunes.json index 213dcd97..39804172 100644 --- a/data/generated/tld/tunes.json +++ b/data/generated/tld/tunes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tunes", + "rdap_server": "https://rdap.nominet.uk/tunes/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.tunes", "ipv4": [ { "ip": "213.248.218.84", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.84", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.tunes", - "rdap_server": "https://rdap.nominet.uk/tunes/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tushu.json b/data/generated/tld/tushu.json index 5e8ac446..9a957325 100644 --- a/data/generated/tld/tushu.json +++ b/data/generated/tld/tushu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tushu", + "rdap_server": "https://rdap.nominet.uk/tushu/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.tushu", "ipv4": [ { "ip": "213.248.218.85", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.85", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.tushu", - "rdap_server": "https://rdap.nominet.uk/tushu/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/tv.json b/data/generated/tld/tv.json index 759bc4f5..a277b3d9 100644 --- a/data/generated/tld/tv.json +++ b/data/generated/tld/tv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "GoDaddy Registry" } }, + "registry_url": "https://turnon.tv/", + "whois_server": "whois.nic.tv", + "rdap_server": "https://rdap.nic.tv/", + "tld_created": "1996-03-18", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "country_name_iso": "Tuvalu", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.tv", @@ -42,7 +62,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -132,26 +152,6 @@ } ] } - ], - "registry_url": "https://turnon.tv/", - "whois_server": "whois.nic.tv", - "rdap_server": "https://rdap.nic.tv/", - "tld_created": "1996-03-18", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "country_name_iso": "Tuvalu", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/tvs.json b/data/generated/tld/tvs.json index 8174e6fa..b92ce2a2 100644 --- a/data/generated/tld/tvs.json +++ b/data/generated/tld/tvs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.tvs.in", + "whois_server": "whois.nic.tvs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2024-09-05" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tvs", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.tvs.in", - "whois_server": "whois.nic.tvs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2024-09-05" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/tw.json b/data/generated/tld/tw.json index 48e2972f..25c1e813 100644 --- a/data/generated/tld/tw.json +++ b/data/generated/tld/tw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "registry_url": "http://rs.twnic.net.tw", + "whois_server": "whois.twnic.net.tw", + "rdap_server": "https://ccrdap.twnic.tw/tw/", + "tld_created": "1989-07-31", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Taiwan, Province of China", + "as_org_aliases": [ + "Google", + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "google", + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.tw", @@ -176,28 +198,6 @@ ] } ], - "registry_url": "http://rs.twnic.net.tw", - "whois_server": "whois.twnic.net.tw", - "rdap_server": "https://ccrdap.twnic.tw/tw/", - "tld_created": "1989-07-31", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Taiwan, Province of China", - "as_org_aliases": [ - "Google", - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "google", - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--kprw13d", "xn--kpry57d" diff --git a/data/generated/tld/tz.json b/data/generated/tld/tz.json index 79f51fd7..c2dafed0 100644 --- a/data/generated/tld/tz.json +++ b/data/generated/tld/tz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "Tanzania Communications Regulatory Authority" } }, + "registry_url": "https://karibu.tz/", + "whois_server": "whois.tznic.or.tz", + "rdap_server": "https://whois.tznic.or.tz/rdap/", + "tld_created": "1995-07-14", + "tld_updated": [ + "2023-07-27" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Tanzania, United Republic of", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -113,26 +133,6 @@ } ] } - ], - "registry_url": "https://karibu.tz/", - "whois_server": "whois.tznic.or.tz", - "rdap_server": "https://whois.tznic.or.tz/rdap/", - "tld_created": "1995-07-14", - "tld_updated": [ - "2023-07-27" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Tanzania, United Republic of", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ua.json b/data/generated/tld/ua.json index b2e0a505..e6eee88e 100644 --- a/data/generated/tld/ua.json +++ b/data/generated/tld/ua.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,28 @@ "tech": "Hostmaster Ltd" } }, + "registry_url": "https://www.hostmaster.ua/", + "whois_server": "whois.ua", + "rdap_server": "https://rdap.hostmaster.ua", + "tld_created": "1992-12-01", + "tld_updated": [ + "2024-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Ukraine", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bg.ns.ua", @@ -164,28 +186,6 @@ ] } ], - "registry_url": "https://www.hostmaster.ua/", - "whois_server": "whois.ua", - "rdap_server": "https://rdap.hostmaster.ua", - "tld_created": "1992-12-01", - "tld_updated": [ - "2024-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Ukraine", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - }, "idn": [ "xn--j1amh" ] diff --git a/data/generated/tld/ubank.json b/data/generated/tld/ubank.json index b96feab0..95baf766 100644 --- a/data/generated/tld/ubank.json +++ b/data/generated/tld/ubank.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ubank.com.au/", + "whois_server": "whois.nic.ubank", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-01" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ubank", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ubank.com.au/", - "whois_server": "whois.nic.ubank", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-01" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ubs.json b/data/generated/tld/ubs.json index e1c06031..b4cab213 100644 --- a/data/generated/tld/ubs.json +++ b/data/generated/tld/ubs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ubs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ubs", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.ubs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/ug.json b/data/generated/tld/ug.json index 34cfee7e..d6881ccd 100644 --- a/data/generated/tld/ug.json +++ b/data/generated/tld/ug.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "East African Help Desk" } }, + "registry_url": "http://www.registry.co.ug", + "whois_server": "whois.co.ug", + "tld_created": "1995-03-08", + "tld_updated": [ + "2025-09-30" + ], + "annotations": { + "country_name_iso": "Uganda", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycast.eahd.or.ug", @@ -99,22 +115,6 @@ } ] } - ], - "registry_url": "http://www.registry.co.ug", - "whois_server": "whois.co.ug", - "tld_created": "1995-03-08", - "tld_updated": [ - "2025-09-30" - ], - "annotations": { - "country_name_iso": "Uganda", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/uk.json b/data/generated/tld/uk.json index a396e2b3..fed52f5b 100644 --- a/data/generated/tld/uk.json +++ b/data/generated/tld/uk.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,14 +17,40 @@ "tech": "Nominet UK" } }, + "registry_url": "http://www.nic.uk/", + "whois_server": "whois.nic.uk", + "rdap_server": "https://rdap.nominet.uk/uk/", + "tld_created": "1985-07-24", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "country_name_iso": "United Kingdom", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.uk", "ipv4": [ { "ip": "213.248.216.1", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -42,8 +68,8 @@ "ipv4": [ { "ip": "103.49.80.1", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -170,32 +196,6 @@ } ] } - ], - "registry_url": "http://www.nic.uk/", - "whois_server": "whois.nic.uk", - "rdap_server": "https://rdap.nominet.uk/uk/", - "tld_created": "1985-07-24", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "country_name_iso": "United Kingdom", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/unicom.json b/data/generated/tld/unicom.json index c1c1e945..450104f1 100644 --- a/data/generated/tld/unicom.json +++ b/data/generated/tld/unicom.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.chinaunicom.cn", + "whois_server": "whois.nic.unicom", + "rdap_server": "https://rdap.zdnsgtld.com/unicom", + "tld_created": "2016-01-22", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,29 +148,6 @@ } ] } - ], - "registry_url": "http://www.chinaunicom.cn", - "whois_server": "whois.nic.unicom", - "rdap_server": "https://rdap.zdnsgtld.com/unicom", - "tld_created": "2016-01-22", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/university.json b/data/generated/tld/university.json index 001dee25..f601e970 100644 --- a/data/generated/tld/university.json +++ b/data/generated/tld/university.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.university", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/uno.json b/data/generated/tld/uno.json index e718a976..393bb503 100644 --- a/data/generated/tld/uno.json +++ b/data/generated/tld/uno.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.uno", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.uno", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/uol.json b/data/generated/tld/uol.json index 5e7c4733..c9ce2e2a 100644 --- a/data/generated/tld/uol.json +++ b/data/generated/tld/uol.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,20 @@ "date_removed": null } }, + "registry_url": "https://nic.uol/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-08-07", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143,20 +157,6 @@ } ] } - ], - "registry_url": "https://nic.uol/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-08-07", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] } } diff --git a/data/generated/tld/ups.json b/data/generated/tld/ups.json index bc613b5f..84a850dd 100644 --- a/data/generated/tld/ups.json +++ b/data/generated/tld/ups.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.ups.com", + "whois_server": "whois.nic.ups", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ups", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.ups.com", - "whois_server": "whois.nic.ups", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/us.json b/data/generated/tld/us.json index 3b724c90..8d47b1da 100644 --- a/data/generated/tld/us.json +++ b/data/generated/tld/us.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,30 @@ "tech": "Registry Services, LLC" } }, + "registry_url": "http://www.nic.us", + "whois_server": "whois.nic.us", + "rdap_server": "https://rdap.nic.us/", + "tld_created": "1985-02-15", + "tld_updated": [ + "2024-08-29" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "supplemental", + "country_name_iso": "United States", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.cctld.us", @@ -137,7 +161,7 @@ "ipv4": [ { "ip": "37.209.194.15", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -170,30 +194,6 @@ } ] } - ], - "registry_url": "http://www.nic.us", - "whois_server": "whois.nic.us", - "rdap_server": "https://rdap.nic.us/", - "tld_created": "1985-02-15", - "tld_updated": [ - "2024-08-29" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "supplemental", - "country_name_iso": "United States", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/uy.json b/data/generated/tld/uy.json index 1c2c35da..418d26aa 100644 --- a/data/generated/tld/uy.json +++ b/data/generated/tld/uy.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Servicio Central de Informatica (SECIU)" } }, + "registry_url": "http://www.nic.org.uy/", + "whois_server": "whois.nic.org.uy", + "tld_created": "1990-09-10", + "tld_updated": [ + "2022-12-08" + ], + "annotations": { + "country_name_iso": "Uruguay", + "as_org_aliases": [ + "Identity Digital", + "LACTLD" + ], + "as_org_slugs": [ + "identity-digital", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -144,24 +162,6 @@ } ] } - ], - "registry_url": "http://www.nic.org.uy/", - "whois_server": "whois.nic.org.uy", - "tld_created": "1990-09-10", - "tld_updated": [ - "2022-12-08" - ], - "annotations": { - "country_name_iso": "Uruguay", - "as_org_aliases": [ - "Identity Digital", - "LACTLD" - ], - "as_org_slugs": [ - "identity-digital", - "lactld" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/uz.json b/data/generated/tld/uz.json index 67186eb6..cb350e80 100644 --- a/data/generated/tld/uz.json +++ b/data/generated/tld/uz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,18 @@ "tech": "Single Integrator for Creation and Support of State Information Systems UZINFOCOM" } }, + "registry_url": "http://www.cctld.uz/", + "whois_server": "whois.cctld.uz", + "rdap_server": "https://rdap.cctld.uz", + "tld_created": "1995-04-29", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Uzbekistan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.uz", @@ -35,9 +47,9 @@ "ipv4": [ { "ip": "82.115.52.4", - "asn": 205273, - "as_org": "TELEPORT-DC-AS", - "as_country": "UZ" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -141,18 +153,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cctld.uz/", - "whois_server": "whois.cctld.uz", - "rdap_server": "https://rdap.cctld.uz", - "tld_created": "1995-04-29", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Uzbekistan", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/va.json b/data/generated/tld/va.json index e2d09f4d..dce1b645 100644 --- a/data/generated/tld/va.json +++ b/data/generated/tld/va.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,14 @@ "tech": "Department of Telecommunications - Vatican Internet Service Provider" } }, + "tld_created": "1995-09-11", + "tld_updated": [ + "2024-12-03" + ], + "annotations": { + "country_name_iso": "Holy See (Vatican City State)", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.va", @@ -113,14 +121,6 @@ } ] } - ], - "tld_created": "1995-09-11", - "tld_updated": [ - "2024-12-03" - ], - "annotations": { - "country_name_iso": "Holy See (Vatican City State)", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/vacations.json b/data/generated/tld/vacations.json index 42b032ef..d0171d05 100644 --- a/data/generated/tld/vacations.json +++ b/data/generated/tld/vacations.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vacations", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vana.json b/data/generated/tld/vana.json index 490ff80c..34abd0e1 100644 --- a/data/generated/tld/vana.json +++ b/data/generated/tld/vana.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://nic.vana", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "https://nic.vana", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/vanguard.json b/data/generated/tld/vanguard.json index 4c8a48e9..4bca1195 100644 --- a/data/generated/tld/vanguard.json +++ b/data/generated/tld/vanguard.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://vanguard.com", + "whois_server": "whois.nic.vanguard", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vanguard", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://vanguard.com", - "whois_server": "whois.nic.vanguard", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vc.json b/data/generated/tld/vc.json index a0447b2c..d8cbe5cb 100644 --- a/data/generated/tld/vc.json +++ b/data/generated/tld/vc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "Identity Digital Inc." } }, + "whois_server": "whois.identitydigital.services", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2024-07-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Saint Vincent and the Grenadines", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -132,25 +151,6 @@ } ] } - ], - "whois_server": "whois.identitydigital.services", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2024-07-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Saint Vincent and the Grenadines", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/ve.json b/data/generated/tld/ve.json index 46493a91..9b25f160 100644 --- a/data/generated/tld/ve.json +++ b/data/generated/tld/ve.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,22 @@ "tech": "NIC.VE" } }, + "registry_url": "https://nic.ve/", + "whois_server": "whois.nic.ve", + "tld_created": "1991-03-07", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Venezuela, Bolivarian Republic of", + "as_org_aliases": [ + "LACTLD" + ], + "as_org_slugs": [ + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -118,22 +134,6 @@ } ] } - ], - "registry_url": "https://nic.ve/", - "whois_server": "whois.nic.ve", - "tld_created": "1991-03-07", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Venezuela, Bolivarian Republic of", - "as_org_aliases": [ - "LACTLD" - ], - "as_org_slugs": [ - "lactld" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/vegas.json b/data/generated/tld/vegas.json index 7c446044..87fa8a0d 100644 --- a/data/generated/tld/vegas.json +++ b/data/generated/tld/vegas.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.vegas", + "whois_server": "whois.nic.vegas", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.vegas", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.nic.vegas", - "whois_server": "whois.nic.vegas", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/ventures.json b/data/generated/tld/ventures.json index bd4c5cee..4e1cdf70 100644 --- a/data/generated/tld/ventures.json +++ b/data/generated/tld/ventures.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ventures", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/verisign.json b/data/generated/tld/verisign.json index 0e5efadd..fbeb17e8 100644 --- a/data/generated/tld/verisign.json +++ b/data/generated/tld/verisign.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,22 +28,51 @@ "date_removed": null } }, + "registry_url": "http://www.verisign.com/", + "whois_server": "whois.nic.verisign", + "rdap_server": "https://tld-rdap.verisign.com/verisign/v1/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -72,16 +101,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -105,35 +134,6 @@ } ] } - ], - "registry_url": "http://www.verisign.com/", - "whois_server": "whois.nic.verisign", - "rdap_server": "https://tld-rdap.verisign.com/verisign/v1/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/versicherung.json b/data/generated/tld/versicherung.json index 77d9c7c8..e941fe6e 100644 --- a/data/generated/tld/versicherung.json +++ b/data/generated/tld/versicherung.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.versicherung", + "whois_server": "whois.nic.versicherung", + "rdap_server": "https://rdap.nic.versicherung/v1/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.versicherung", @@ -86,27 +107,6 @@ } ] } - ], - "registry_url": "http://nic.versicherung", - "whois_server": "whois.nic.versicherung", - "rdap_server": "https://rdap.nic.versicherung/v1/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] } } diff --git a/data/generated/tld/vet.json b/data/generated/tld/vet.json index c87b28e9..ccf59006 100644 --- a/data/generated/tld/vet.json +++ b/data/generated/tld/vet.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vet", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vg.json b/data/generated/tld/vg.json index 49966b96..3af976f1 100644 --- a/data/generated/tld/vg.json +++ b/data/generated/tld/vg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://nic.vg", + "whois_server": "whois.nic.vg", + "rdap_server": "https://rdap.centralnic.com/vg", + "tld_created": "1997-02-20", + "tld_updated": [ + "2021-12-03" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Virgin Islands, British", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.vg", @@ -94,26 +114,6 @@ } ] } - ], - "registry_url": "http://nic.vg", - "whois_server": "whois.nic.vg", - "rdap_server": "https://rdap.centralnic.com/vg", - "tld_created": "1997-02-20", - "tld_updated": [ - "2021-12-03" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Virgin Islands, British", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/vi.json b/data/generated/tld/vi.json index 0d4acfca..12e8a37c 100644 --- a/data/generated/tld/vi.json +++ b/data/generated/tld/vi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Virgin Islands Public Telecommunications System, Inc." } }, + "registry_url": "https://secure.nic.vi", + "whois_server": "virgil.nic.vi", + "rdap_server": "https://rdap.nic.vi", + "tld_created": "1995-08-31", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Virgin Islands, U.S.", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns3.nic.vi", @@ -49,24 +67,6 @@ } ] } - ], - "registry_url": "https://secure.nic.vi", - "whois_server": "virgil.nic.vi", - "rdap_server": "https://rdap.nic.vi", - "tld_created": "1995-08-31", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Virgin Islands, U.S.", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/viajes.json b/data/generated/tld/viajes.json index f1d29e5d..b4282c2f 100644 --- a/data/generated/tld/viajes.json +++ b/data/generated/tld/viajes.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.viajes", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/video.json b/data/generated/tld/video.json index d73499ca..c6fff329 100644 --- a/data/generated/tld/video.json +++ b/data/generated/tld/video.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.video", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vig.json b/data/generated/tld/vig.json index 51fc2b6a..0952e9b0 100644 --- a/data/generated/tld/vig.json +++ b/data/generated/tld/vig.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.vig.com", + "whois_server": "whois.nic.vig", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vig", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.vig.com", - "whois_server": "whois.nic.vig", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/viking.json b/data/generated/tld/viking.json index fe515216..f729589a 100644 --- a/data/generated/tld/viking.json +++ b/data/generated/tld/viking.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.vikingrivercruises.com/", + "whois_server": "whois.nic.viking", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.viking", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.vikingrivercruises.com/", - "whois_server": "whois.nic.viking", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/villas.json b/data/generated/tld/villas.json index 19390eb0..95bd071f 100644 --- a/data/generated/tld/villas.json +++ b/data/generated/tld/villas.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.villas", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vin.json b/data/generated/tld/vin.json index b861a2c9..34354dfb 100644 --- a/data/generated/tld/vin.json +++ b/data/generated/tld/vin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vin", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vip.json b/data/generated/tld/vip.json index df2f27df..984341d1 100644 --- a/data/generated/tld/vip.json +++ b/data/generated/tld/vip.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.vip/", + "whois_server": "whois.nic.vip", + "rdap_server": "https://rdap.nic.vip/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vip", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.vip/", - "whois_server": "whois.nic.vip", - "rdap_server": "https://rdap.nic.vip/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/virgin.json b/data/generated/tld/virgin.json index 6ce76ea7..4c1c05c3 100644 --- a/data/generated/tld/virgin.json +++ b/data/generated/tld/virgin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,40 @@ "date_removed": null } }, + "registry_url": "http://www.virgin.com", + "rdap_server": "https://rdap.nominet.uk/virgin/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.virgin", "ipv4": [ { "ip": "213.248.219.40", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +79,8 @@ "ipv4": [ { "ip": "103.49.83.40", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,32 +207,6 @@ } ] } - ], - "registry_url": "http://www.virgin.com", - "rdap_server": "https://rdap.nominet.uk/virgin/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/visa.json b/data/generated/tld/visa.json index db5ae2cb..6951092b 100644 --- a/data/generated/tld/visa.json +++ b/data/generated/tld/visa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://visa.com", + "whois_server": "whois.nic.visa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2024-11-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.visa", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://visa.com", - "whois_server": "whois.nic.visa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2024-11-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vision.json b/data/generated/tld/vision.json index a3e128ae..ac44d256 100644 --- a/data/generated/tld/vision.json +++ b/data/generated/tld/vision.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vision", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/viva.json b/data/generated/tld/viva.json index 94c32ea6..3d35f319 100644 --- a/data/generated/tld/viva.json +++ b/data/generated/tld/viva.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.viva", + "rdap_server": "https://rdap.centralnic.com/viva", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-30" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.viva", @@ -105,30 +129,6 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.viva", - "rdap_server": "https://rdap.centralnic.com/viva", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-30" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/vivo.json b/data/generated/tld/vivo.json index e59f75f2..e9c5d425 100644 --- a/data/generated/tld/vivo.json +++ b/data/generated/tld/vivo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.vivo.com.br", + "rdap_server": "https://rdap.nic.vivo/", + "tld_created": "2016-05-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vivo", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.vivo.com.br", - "rdap_server": "https://rdap.nic.vivo/", - "tld_created": "2016-05-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/vlaanderen.json b/data/generated/tld/vlaanderen.json index f09ce0a0..25721e2e 100644 --- a/data/generated/tld/vlaanderen.json +++ b/data/generated/tld/vlaanderen.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.nic.vlaanderen", + "rdap_server": "https://rdap.nic.vlaanderen", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nsset.vlaanderen", @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.nic.vlaanderen", - "rdap_server": "https://rdap.nic.vlaanderen", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "subdivision" - } + ] } } diff --git a/data/generated/tld/vn.json b/data/generated/tld/vn.json index 3184db43..15832185 100644 --- a/data/generated/tld/vn.json +++ b/data/generated/tld/vn.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,23 @@ "tech": "Vietnam Internet Network Information Center (VNNIC)" } }, + "registry_url": "https://www.vnnic.vn/", + "tld_created": "1994-04-14", + "tld_updated": [ + "2023-07-19" + ], + "annotations": { + "country_name_iso": "Viet Nam", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns-servers.vn", @@ -170,23 +187,6 @@ } ] } - ], - "registry_url": "https://www.vnnic.vn/", - "tld_created": "1994-04-14", - "tld_updated": [ - "2023-07-19" - ], - "annotations": { - "country_name_iso": "Viet Nam", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/vodka.json b/data/generated/tld/vodka.json index a678e20a..ab490702 100644 --- a/data/generated/tld/vodka.json +++ b/data/generated/tld/vodka.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.vodka/", + "whois_server": "whois.nic.vodka", + "rdap_server": "https://rdap.nic.vodka/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vodka", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.vodka/", - "whois_server": "whois.nic.vodka", - "rdap_server": "https://rdap.nic.vodka/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/volvo.json b/data/generated/tld/volvo.json index 32bc5c95..832e5b0b 100644 --- a/data/generated/tld/volvo.json +++ b/data/generated/tld/volvo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.volvo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.volvo", @@ -105,28 +127,6 @@ } ] } - ], - "whois_server": "whois.nic.volvo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vote.json b/data/generated/tld/vote.json index 6913d1c8..c4a60121 100644 --- a/data/generated/tld/vote.json +++ b/data/generated/tld/vote.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vote", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/voting.json b/data/generated/tld/voting.json index 77fd2c9b..6296ca7b 100644 --- a/data/generated/tld/voting.json +++ b/data/generated/tld/voting.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.voting", + "whois_server": "whois.nic.voting", + "rdap_server": "https://rdap.nic.voting/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.voting", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nic.voting", - "whois_server": "whois.nic.voting", - "rdap_server": "https://rdap.nic.voting/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/voto.json b/data/generated/tld/voto.json index dbf34882..c99adec4 100644 --- a/data/generated/tld/voto.json +++ b/data/generated/tld/voto.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.voto", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/voyage.json b/data/generated/tld/voyage.json index d61abd1f..6ad63236 100644 --- a/data/generated/tld/voyage.json +++ b/data/generated/tld/voyage.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.voyage", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/vu.json b/data/generated/tld/vu.json index ef441831..6d2f7f79 100644 --- a/data/generated/tld/vu.json +++ b/data/generated/tld/vu.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "GoDaddy Registry" } }, + "registry_url": "http://www.hello.vu", + "whois_server": "whois.dnrs.vu", + "tld_created": "1995-04-10", + "tld_updated": [ + "2025-09-05" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "country_name_iso": "Vanuatu", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tldns.vu", @@ -42,7 +60,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -132,24 +150,6 @@ } ] } - ], - "registry_url": "http://www.hello.vu", - "whois_server": "whois.dnrs.vu", - "tld_created": "1995-04-10", - "tld_updated": [ - "2025-09-05" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "country_name_iso": "Vanuatu", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/wales.json b/data/generated/tld/wales.json index 8f76273f..be8441cc 100644 --- a/data/generated/tld/wales.json +++ b/data/generated/tld/wales.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,45 @@ "date_removed": null } }, + "registry_url": "https://ourhomeonline.wales/", + "rdap_server": "https://rdap.nominet.uk/wales/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Nominet", + "icann_registry_operator_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "welsh" + }, "nameservers": [ { "hostname": "dns1.nic.wales", "ipv4": [ { "ip": "213.248.219.2", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +84,8 @@ "ipv4": [ { "ip": "103.49.83.2", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,37 +212,6 @@ } ] } - ], - "registry_url": "https://ourhomeonline.wales/", - "rdap_server": "https://rdap.nominet.uk/wales/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Nominet", - "icann_registry_operator_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "welsh" - } + ] } } diff --git a/data/generated/tld/walmart.json b/data/generated/tld/walmart.json index f3a7584e..f46d8bad 100644 --- a/data/generated/tld/walmart.json +++ b/data/generated/tld/walmart.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.walmart.com", + "whois_server": "whois.nic.walmart", + "rdap_server": "https://rdap.nic.walmart", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.walmart", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,41 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.walmart.com", - "whois_server": "whois.nic.walmart", - "rdap_server": "https://rdap.nic.walmart", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/walter.json b/data/generated/tld/walter.json index 2940279d..f01c4382 100644 --- a/data/generated/tld/walter.json +++ b/data/generated/tld/walter.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.walter", + "whois_server": "whois.nic.walter", + "rdap_server": "https://rdap.nic.walter/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.walter", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.walter", - "whois_server": "whois.nic.walter", - "rdap_server": "https://rdap.nic.walter/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/wang.json b/data/generated/tld/wang.json index 5b4180de..86471f96 100644 --- a/data/generated/tld/wang.json +++ b/data/generated/tld/wang.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/wang", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -125,26 +145,6 @@ } ] } - ], - "registry_url": "http://www.nic.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/wang", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/wanggou.json b/data/generated/tld/wanggou.json index 422ed0c8..008411e1 100644 --- a/data/generated/tld/wanggou.json +++ b/data/generated/tld/wanggou.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wanggou", + "rdap_server": "https://rdap.nominet.uk/wanggou/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.wanggou", "ipv4": [ { "ip": "213.248.218.86", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.86", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.wanggou", - "rdap_server": "https://rdap.nominet.uk/wanggou/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/watch.json b/data/generated/tld/watch.json index 84227660..5f8cbc9f 100644 --- a/data/generated/tld/watch.json +++ b/data/generated/tld/watch.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.watch", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/watches.json b/data/generated/tld/watches.json index b356cf79..a6d6997a 100644 --- a/data/generated/tld/watches.json +++ b/data/generated/tld/watches.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.watches", @@ -105,33 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/weather.json b/data/generated/tld/weather.json index 2909cda7..2d31c449 100644 --- a/data/generated/tld/weather.json +++ b/data/generated/tld/weather.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,25 @@ "date_removed": null } }, + "registry_url": "http://www.weather.com", + "rdap_server": "https://rdap.nic.weather/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2026-03-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.weather", @@ -53,7 +72,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +118,7 @@ "ipv6": [ { "ip": "2610:a1:1074::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +137,7 @@ "ipv6": [ { "ip": "2610:a1:1075::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,31 +156,12 @@ "ipv6": [ { "ip": "2610:a1:1076::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.weather.com", - "rdap_server": "https://rdap.nic.weather/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2026-03-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/weatherchannel.json b/data/generated/tld/weatherchannel.json index fe8ca7af..20390143 100644 --- a/data/generated/tld/weatherchannel.json +++ b/data/generated/tld/weatherchannel.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,26 @@ "date_removed": null } }, + "registry_url": "https://www.weathercompany.com/", + "rdap_server": "https://rdap.nic.weatherchannel/", + "tld_created": "2016-01-22", + "tld_updated": [ + "2026-03-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.weatherchannel", @@ -53,7 +73,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +119,7 @@ "ipv6": [ { "ip": "2610:a1:1074::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +138,7 @@ "ipv6": [ { "ip": "2610:a1:1075::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,32 +157,12 @@ "ipv6": [ { "ip": "2610:a1:1076::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.weathercompany.com/", - "rdap_server": "https://rdap.nic.weatherchannel/", - "tld_created": "2016-01-22", - "tld_updated": [ - "2026-03-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/webcam.json b/data/generated/tld/webcam.json index 83390dec..60e6fe91 100644 --- a/data/generated/tld/webcam.json +++ b/data/generated/tld/webcam.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.webcam", + "whois_server": "whois.nic.webcam", + "rdap_server": "https://rdap.nic.webcam/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.webcam", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.webcam", - "whois_server": "whois.nic.webcam", - "rdap_server": "https://rdap.nic.webcam/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/weber.json b/data/generated/tld/weber.json index c6ed0e9e..cf03328c 100644 --- a/data/generated/tld/weber.json +++ b/data/generated/tld/weber.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.weber", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.weber", @@ -143,28 +165,6 @@ } ] } - ], - "whois_server": "whois.nic.weber", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/website.json b/data/generated/tld/website.json index 2b26d33e..d80a51fe 100644 --- a/data/generated/tld/website.json +++ b/data/generated/tld/website.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.website", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.website", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/wed.json b/data/generated/tld/wed.json index 11753c23..f9570f93 100644 --- a/data/generated/tld/wed.json +++ b/data/generated/tld/wed.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,39 @@ "date_removed": null } }, + "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", + "rdap_server": "https://rdap.nominet.uk/wed/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +78,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,31 +206,6 @@ } ] } - ], - "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", - "rdap_server": "https://rdap.nominet.uk/wed/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/wedding.json b/data/generated/tld/wedding.json index fa03f23f..51e18d41 100644 --- a/data/generated/tld/wedding.json +++ b/data/generated/tld/wedding.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.wedding/", + "whois_server": "whois.nic.wedding", + "rdap_server": "https://rdap.nic.wedding/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wedding", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wedding/", - "whois_server": "whois.nic.wedding", - "rdap_server": "https://rdap.nic.wedding/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/weibo.json b/data/generated/tld/weibo.json index 06421596..29e61c83 100644 --- a/data/generated/tld/weibo.json +++ b/data/generated/tld/weibo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.weibo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.weibo", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.weibo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/weir.json b/data/generated/tld/weir.json index 44557aed..cf8664a5 100644 --- a/data/generated/tld/weir.json +++ b/data/generated/tld/weir.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://weir.co.uk/", + "whois_server": "whois.nic.weir", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.weir", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://weir.co.uk/", - "whois_server": "whois.nic.weir", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/wf.json b/data/generated/tld/wf.json index ea744046..a4142376 100644 --- a/data/generated/tld/wf.json +++ b/data/generated/tld/wf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.wf", + "whois_server": "whois.nic.wf", + "rdap_server": "https://rdap.nic.wf/", + "tld_created": "1997-11-14", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Wallis and Futuna", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "http://www.nic.wf", - "whois_server": "whois.nic.wf", - "rdap_server": "https://rdap.nic.wf/", - "tld_created": "1997-11-14", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Wallis and Futuna", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/whoswho.json b/data/generated/tld/whoswho.json index f681c559..d9d0e47b 100644 --- a/data/generated/tld/whoswho.json +++ b/data/generated/tld/whoswho.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://nic.whoswho", + "whois_server": "whois.nic.whoswho", + "rdap_server": "https://rdap.nic.whoswho/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2023-06-16" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://nic.whoswho", - "whois_server": "whois.nic.whoswho", - "rdap_server": "https://rdap.nic.whoswho/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2023-06-16" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/wien.json b/data/generated/tld/wien.json index 47cbdf89..2dbf66ac 100644 --- a/data/generated/tld/wien.json +++ b/data/generated/tld/wien.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,30 @@ "date_removed": null } }, + "registry_url": "https://www.nic.wien", + "whois_server": "whois.nic.wien", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -86,30 +110,6 @@ } ] } - ], - "registry_url": "https://www.nic.wien", - "whois_server": "whois.nic.wien", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/wiki.json b/data/generated/tld/wiki.json index 5ea27617..a78931ef 100644 --- a/data/generated/tld/wiki.json +++ b/data/generated/tld/wiki.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.wiki", + "whois_server": "whois.nic.wiki", + "rdap_server": "https://rdap.nic.wiki/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wiki", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wiki", - "whois_server": "whois.nic.wiki", - "rdap_server": "https://rdap.nic.wiki/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/williamhill.json b/data/generated/tld/williamhill.json index 53898daa..ba53183c 100644 --- a/data/generated/tld/williamhill.json +++ b/data/generated/tld/williamhill.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.williamhill.com/", + "rdap_server": "https://rdap.nic.williamhill/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.williamhill", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,28 +165,6 @@ } ] } - ], - "registry_url": "http://www.williamhill.com/", - "rdap_server": "https://rdap.nic.williamhill/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/win.json b/data/generated/tld/win.json index 3e0b1ff6..00db0459 100644 --- a/data/generated/tld/win.json +++ b/data/generated/tld/win.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://nic.win", + "whois_server": "whois.nic.win", + "rdap_server": "https://rdap.nic.win/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.win", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://nic.win", - "whois_server": "whois.nic.win", - "rdap_server": "https://rdap.nic.win/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/windows.json b/data/generated/tld/windows.json index 9e1bd99b..6badc7b4 100644 --- a/data/generated/tld/windows.json +++ b/data/generated/tld/windows.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/windows/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.windows", "ipv4": [ { "ip": "213.248.219.133", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.133", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/windows/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/wine.json b/data/generated/tld/wine.json index 2f8e4c22..92e1f5da 100644 --- a/data/generated/tld/wine.json +++ b/data/generated/tld/wine.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.wine", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/winners.json b/data/generated/tld/winners.json index 7707731f..a296ea9b 100644 --- a/data/generated/tld/winners.json +++ b/data/generated/tld/winners.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.winners/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.winners", @@ -53,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143,32 +169,6 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.winners/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/wme.json b/data/generated/tld/wme.json index 1ffb03a3..5704aea5 100644 --- a/data/generated/tld/wme.json +++ b/data/generated/tld/wme.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.wmeentertainment.com", + "whois_server": "whois.nic.wme", + "rdap_server": "https://rdap.centralnic.com/wme", + "tld_created": "2014-08-22", + "tld_updated": [ + "2023-09-19" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.wme", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "http://www.wmeentertainment.com", - "whois_server": "whois.nic.wme", - "rdap_server": "https://rdap.centralnic.com/wme", - "tld_created": "2014-08-22", - "tld_updated": [ - "2023-09-19" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/woodside.json b/data/generated/tld/woodside.json index e85dd5f5..457eaeae 100644 --- a/data/generated/tld/woodside.json +++ b/data/generated/tld/woodside.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://www.woodside.com.au/", + "whois_server": "whois.nic.woodside", + "rdap_server": "https://rdap.nic.woodside/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-10-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.woodside", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.woodside.com.au/", - "whois_server": "whois.nic.woodside", - "rdap_server": "https://rdap.nic.woodside/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-10-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/work.json b/data/generated/tld/work.json index afce3b4f..ddf9dd0b 100644 --- a/data/generated/tld/work.json +++ b/data/generated/tld/work.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.work/", + "whois_server": "whois.nic.work", + "rdap_server": "https://rdap.nic.work/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.work", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.work/", - "whois_server": "whois.nic.work", - "rdap_server": "https://rdap.nic.work/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/works.json b/data/generated/tld/works.json index 00a3336d..4b9b9a92 100644 --- a/data/generated/tld/works.json +++ b/data/generated/tld/works.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.works", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/world.json b/data/generated/tld/world.json index 85b8de5b..d1f16884 100644 --- a/data/generated/tld/world.json +++ b/data/generated/tld/world.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.world", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/wow.json b/data/generated/tld/wow.json index 4ca2db82..e86207e8 100644 --- a/data/generated/tld/wow.json +++ b/data/generated/tld/wow.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wow", + "rdap_server": "https://rdap.nominet.uk/wow/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.wow", "ipv4": [ { "ip": "213.248.218.87", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.87", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.wow", - "rdap_server": "https://rdap.nominet.uk/wow/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/ws.json b/data/generated/tld/ws.json index 3fbf4573..8ff4dbc0 100644 --- a/data/generated/tld/ws.json +++ b/data/generated/tld/ws.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,16 @@ "tech": "Global Domains International" } }, + "registry_url": "http://www.website.ws", + "whois_server": "whois.website.ws", + "tld_created": "1995-07-14", + "tld_updated": [ + "2021-05-26" + ], + "annotations": { + "country_name_iso": "Samoa", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ws", @@ -104,16 +114,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.website.ws", - "whois_server": "whois.website.ws", - "tld_created": "1995-07-14", - "tld_updated": [ - "2021-05-26" - ], - "annotations": { - "country_name_iso": "Samoa", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/wtc.json b/data/generated/tld/wtc.json index 595b0441..a15984db 100644 --- a/data/generated/tld/wtc.json +++ b/data/generated/tld/wtc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,27 @@ "date_removed": null } }, + "registry_url": "http://nic.wtc/", + "whois_server": "whois.nic.wtc", + "rdap_server": "https://rdap.nic.wtc/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2024-03-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wtc", @@ -53,7 +74,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,33 +158,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wtc/", - "whois_server": "whois.nic.wtc", - "rdap_server": "https://rdap.nic.wtc/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2024-03-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/wtf.json b/data/generated/tld/wtf.json index a8feff6c..edda065a 100644 --- a/data/generated/tld/wtf.json +++ b/data/generated/tld/wtf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.wtf", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xbox.json b/data/generated/tld/xbox.json index 675cce18..71a5cb05 100644 --- a/data/generated/tld/xbox.json +++ b/data/generated/tld/xbox.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/xbox/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.xbox", "ipv4": [ { "ip": "213.248.219.134", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.83.134", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/xbox/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xerox.json b/data/generated/tld/xerox.json index ab6673e1..b89d8c63 100644 --- a/data/generated/tld/xerox.json +++ b/data/generated/tld/xerox.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.xerox", + "rdap_server": "https://rdap.nic.xerox/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.xerox", @@ -53,7 +75,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +113,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +132,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +151,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,34 +159,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.xerox", - "rdap_server": "https://rdap.nic.xerox/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xihuan.json b/data/generated/tld/xihuan.json index 2a6c475d..94d7fdee 100644 --- a/data/generated/tld/xihuan.json +++ b/data/generated/tld/xihuan.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -91,26 +111,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xin.json b/data/generated/tld/xin.json index 8a79472d..a6fd8197 100644 --- a/data/generated/tld/xin.json +++ b/data/generated/tld/xin.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,28 @@ "date_removed": null } }, + "registry_url": "http://www.dotxin.org", + "whois_server": "whois.nic.xin", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2025-10-21" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.xin", @@ -105,28 +127,6 @@ } ] } - ], - "registry_url": "http://www.dotxin.org", - "whois_server": "whois.nic.xin", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2025-10-21" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--0zwm56d.json b/data/generated/tld/xn--0zwm56d.json index 8699a953..475866a1 100644 --- a/data/generated/tld/xn--0zwm56d.json +++ b/data/generated/tld/xn--0zwm56d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "zh", + "language_name_en": "Chinese" + } } } diff --git a/data/generated/tld/xn--11b4c3d.json b/data/generated/tld/xn--11b4c3d.json index 5a9fe5c9..cf050f63 100644 --- a/data/generated/tld/xn--11b4c3d.json +++ b/data/generated/tld/xn--11b4c3d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--11b4c3d", + "rdap_server": "https://tld-rdap.verisign.com/xn--11b4c3d/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--11b4c3d", - "rdap_server": "https://tld-rdap.verisign.com/xn--11b4c3d/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--11b5bs3a9aj6g.json b/data/generated/tld/xn--11b5bs3a9aj6g.json index ac4c5455..e76fea73 100644 --- a/data/generated/tld/xn--11b5bs3a9aj6g.json +++ b/data/generated/tld/xn--11b5bs3a9aj6g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "hi", + "language_name_en": "Hindi" + } } } diff --git a/data/generated/tld/xn--1ck2e1b.json b/data/generated/tld/xn--1ck2e1b.json index 04724a26..82ee2bef 100644 --- a/data/generated/tld/xn--1ck2e1b.json +++ b/data/generated/tld/xn--1ck2e1b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--1ck2e1b", + "whois_server": "whois.nic.xn--1ck2e1b", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "sale", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--1ck2e1b", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--1ck2e1b", - "whois_server": "whois.nic.xn--1ck2e1b", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "sale", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--1qqw23a.json b/data/generated/tld/xn--1qqw23a.json index e0b82d00..3431beee 100644 --- a/data/generated/tld/xn--1qqw23a.json +++ b/data/generated/tld/xn--1qqw23a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.yu-wei.cn/", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-07-17", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "foshan", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ta.ngtld.cn", @@ -55,7 +78,7 @@ "ipv4": [ { "ip": "42.83.131.1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -93,7 +116,7 @@ "ipv4": [ { "ip": "42.83.133.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -112,27 +135,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.yu-wei.cn/", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-07-17", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "foshan", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--2scrj9c.json b/data/generated/tld/xn--2scrj9c.json index f6f09270..79c33b3d 100644 --- a/data/generated/tld/xn--2scrj9c.json +++ b/data/generated/tld/xn--2scrj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "kn", + "language_name_en": "Kannada" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--30rr7y.json b/data/generated/tld/xn--30rr7y.json index 6c52b619..b6b5a051 100644 --- a/data/generated/tld/xn--30rr7y.json +++ b/data/generated/tld/xn--30rr7y.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.cishan.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--30rr7y", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "charity", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.cishan.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--30rr7y", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "charity", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--3bst00m.json b/data/generated/tld/xn--3bst00m.json index 6d857e82..abad9482 100644 --- a/data/generated/tld/xn--3bst00m.json +++ b/data/generated/tld/xn--3bst00m.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.jituan.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--3bst00m", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "corporate group", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.jituan.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--3bst00m", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "corporate group", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--3ds443g.json b/data/generated/tld/xn--3ds443g.json index c6e4d9a2..8ee15d8c 100644 --- a/data/generated/tld/xn--3ds443g.json +++ b/data/generated/tld/xn--3ds443g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,37 @@ "date_removed": null } }, + "registry_url": "https://tldland.cn/", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/xn--3ds443g/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-12-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,27 +116,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://tldland.cn/", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/xn--3ds443g/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-12-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--3e0b707e.json b/data/generated/tld/xn--3e0b707e.json index 18f31a97..ec55c375 100644 --- a/data/generated/tld/xn--3e0b707e.json +++ b/data/generated/tld/xn--3e0b707e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "KISA (Korea Internet & Security Agency)" } }, + "registry_url": "http://www.nic.or.kr", + "whois_server": "whois.kr", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "KISA", + "iana_sponsor_slug": "kisa", + "iana_admin_alias": "KISA", + "iana_admin_slug": "kisa", + "iana_tech_alias": "KISA", + "iana_tech_slug": "kisa", + "country_name_iso": "Korea, Republic of", + "geographic_scope": "country", + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "b.dns.kr", @@ -121,22 +139,6 @@ } ] } - ], - "registry_url": "http://www.nic.or.kr", - "whois_server": "whois.kr", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "KISA", - "iana_sponsor_slug": "kisa", - "iana_admin_alias": "KISA", - "iana_admin_slug": "kisa", - "iana_tech_alias": "KISA", - "iana_tech_slug": "kisa", - "country_name_iso": "Korea, Republic of", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--3hcrj9c.json b/data/generated/tld/xn--3hcrj9c.json index eb818d23..8d93348e 100644 --- a/data/generated/tld/xn--3hcrj9c.json +++ b/data/generated/tld/xn--3hcrj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "or", + "language_name_en": "Odia" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--3oq18vl8pn36a.json b/data/generated/tld/xn--3oq18vl8pn36a.json index 9874566d..5bd3bc67 100644 --- a/data/generated/tld/xn--3oq18vl8pn36a.json +++ b/data/generated/tld/xn--3oq18vl8pn36a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -36,7 +36,9 @@ "community", "non_sponsored" ], - "icann_translation_en": "volkswagon" + "icann_translation_en": "volkswagon", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--3pxu8k.json b/data/generated/tld/xn--3pxu8k.json index c9a0caed..205ad79c 100644 --- a/data/generated/tld/xn--3pxu8k.json +++ b/data/generated/tld/xn--3pxu8k.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--3pxu8k", + "rdap_server": "https://tld-rdap.verisign.com/xn--3pxu8k/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--3pxu8k", - "rdap_server": "https://tld-rdap.verisign.com/xn--3pxu8k/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--42c2d9a.json b/data/generated/tld/xn--42c2d9a.json index 1b5856c8..108c75bf 100644 --- a/data/generated/tld/xn--42c2d9a.json +++ b/data/generated/tld/xn--42c2d9a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--42c2d9a", + "rdap_server": "https://tld-rdap.verisign.com/xn--42c2d9a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "th", + "language_name_en": "Thai" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--42c2d9a", - "rdap_server": "https://tld-rdap.verisign.com/xn--42c2d9a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--45br5cyl.json b/data/generated/tld/xn--45br5cyl.json index d3ae8c62..26406051 100644 --- a/data/generated/tld/xn--45br5cyl.json +++ b/data/generated/tld/xn--45br5cyl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--45brj9c.json b/data/generated/tld/xn--45brj9c.json index 64d8f73c..efd18eac 100644 --- a/data/generated/tld/xn--45brj9c.json +++ b/data/generated/tld/xn--45brj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--45q11c.json b/data/generated/tld/xn--45q11c.json index 8b8f5216..373c5eb0 100644 --- a/data/generated/tld/xn--45q11c.json +++ b/data/generated/tld/xn--45q11c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.bagua.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/XN--45Q11C", + "tld_created": "2014-11-06", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "gossip", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.bagua.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/XN--45Q11C", - "tld_created": "2014-11-06", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "gossip", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--4dbrk0ce.json b/data/generated/tld/xn--4dbrk0ce.json index 38be3030..115dd86c 100644 --- a/data/generated/tld/xn--4dbrk0ce.json +++ b/data/generated/tld/xn--4dbrk0ce.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "The Israel Internet Association (RA)" } }, + "registry_url": "http://en.isoc.org.il/il-cctld/accredited-registrars/domain-name-registrars", + "whois_server": "whois.isoc.org.il", + "tld_created": "2020-06-16", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "country_name_iso": "Israel", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "he", + "language_name_en": "Hebrew" + }, "nameservers": [ { "hostname": "ilns.ilan.net.il", @@ -159,24 +179,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://en.isoc.org.il/il-cctld/accredited-registrars/domain-name-registrars", - "whois_server": "whois.isoc.org.il", - "tld_created": "2020-06-16", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "country_name_iso": "Israel", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--4gbrim.json b/data/generated/tld/xn--4gbrim.json index b2cf2e62..2aba78f7 100644 --- a/data/generated/tld/xn--4gbrim.json +++ b/data/generated/tld/xn--4gbrim.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,33 @@ "date_removed": null } }, + "registry_url": "http://www.dotmawqe.com", + "whois_server": "whois.nic.xn--4gbrim", + "rdap_server": "https://rdap.centralnic.com/xn--4gbrim/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "site", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--4gbrim", @@ -107,31 +134,6 @@ } ] } - ], - "registry_url": "http://www.dotmawqe.com", - "whois_server": "whois.nic.xn--4gbrim", - "rdap_server": "https://rdap.centralnic.com/xn--4gbrim/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "site", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--4gq48lf9j.json b/data/generated/tld/xn--4gq48lf9j.json index 4885d8b1..3cbef51c 100644 --- a/data/generated/tld/xn--4gq48lf9j.json +++ b/data/generated/tld/xn--4gq48lf9j.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-28T02:11:16Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -35,7 +35,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "number one store" + "icann_translation_en": "number one store", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--54b7fta0cc.json b/data/generated/tld/xn--54b7fta0cc.json index 77da9df7..2e42b0e6 100644 --- a/data/generated/tld/xn--54b7fta0cc.json +++ b/data/generated/tld/xn--54b7fta0cc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,23 @@ "tech": "Bangladesh Telecommunications Company Limited (BTCL)" } }, + "registry_url": "http://domainreg.btcl.com.bd/", + "tld_created": "2011-03-30", + "tld_updated": [ + "2024-05-29" + ], + "annotations": { + "country_name_iso": "Bangladesh", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" + }, "nameservers": [ { "hostname": "bayanno.btcl.net.bd", @@ -78,21 +95,6 @@ } ] } - ], - "registry_url": "http://domainreg.btcl.com.bd/", - "tld_created": "2011-03-30", - "tld_updated": [ - "2024-05-29" - ], - "annotations": { - "country_name_iso": "Bangladesh", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--55qw42g.json b/data/generated/tld/xn--55qw42g.json index 2a68c6ee..ab8846db 100644 --- a/data/generated/tld/xn--55qw42g.json +++ b/data/generated/tld/xn--55qw42g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,23 @@ "date_removed": null } }, + "registry_url": "http://www.conac.cn", + "whois_server": "whois.conac.cn", + "rdap_server": "https://rdap.conac.cn/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "public interest", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.conac.cn", @@ -112,21 +129,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.conac.cn", - "whois_server": "whois.conac.cn", - "rdap_server": "https://rdap.conac.cn/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "public interest" - } + ] } } diff --git a/data/generated/tld/xn--55qx5d.json b/data/generated/tld/xn--55qx5d.json index 7e8e7b98..352eda7a 100644 --- a/data/generated/tld/xn--55qx5d.json +++ b/data/generated/tld/xn--55qx5d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "icann_registry_operator_alias": "CNNIC", + "icann_registry_operator_slug": "cnnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "business organisation", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.ngtld.cn", @@ -112,35 +143,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "icann_registry_operator_alias": "CNNIC", - "icann_registry_operator_slug": "cnnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "business organisation", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--5su34j936bgsg.json b/data/generated/tld/xn--5su34j936bgsg.json index 9963667d..354c486e 100644 --- a/data/generated/tld/xn--5su34j936bgsg.json +++ b/data/generated/tld/xn--5su34j936bgsg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,32 @@ "date_removed": null } }, + "registry_url": "http://www.shangri-la.com/", + "whois_server": "whois.nic.xn--5su34j936bgsg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "shangri-la", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--5su34j936bgsg", @@ -145,30 +171,6 @@ } ] } - ], - "registry_url": "http://www.shangri-la.com/", - "whois_server": "whois.nic.xn--5su34j936bgsg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "shangri-la", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--5tzm5g.json b/data/generated/tld/xn--5tzm5g.json index 81b78878..8d2a8d67 100644 --- a/data/generated/tld/xn--5tzm5g.json +++ b/data/generated/tld/xn--5tzm5g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,31 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "whois_server": "whois.nic.xn--5tzm5g", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-04", + "tld_updated": [ + "2025-01-20" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "website", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--5tzm5g", @@ -107,29 +132,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "whois_server": "whois.nic.xn--5tzm5g", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-04", - "tld_updated": [ - "2025-01-20" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "website", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--6frz82g.json b/data/generated/tld/xn--6frz82g.json index dcf84828..a7bb1e18 100644 --- a/data/generated/tld/xn--6frz82g.json +++ b/data/generated/tld/xn--6frz82g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "mobile", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--6frz82g", @@ -107,34 +137,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "mobile", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--6qq986b3xl.json b/data/generated/tld/xn--6qq986b3xl.json index db0acda2..ac80b036 100644 --- a/data/generated/tld/xn--6qq986b3xl.json +++ b/data/generated/tld/xn--6qq986b3xl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.520.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--6qq986b3xl", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "I love you", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.520.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--6qq986b3xl", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "I love you", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--80adxhks.json b/data/generated/tld/xn--80adxhks.json index 7fc9229f..0b2ab529 100644 --- a/data/generated/tld/xn--80adxhks.json +++ b/data/generated/tld/xn--80adxhks.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://www.faitid.org", + "whois_server": "whois.nic.xn--80adxhks", + "rdap_server": "https://rdap.flexireg.net", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "moscow", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.flexireg.ru", @@ -107,28 +131,6 @@ } ] } - ], - "registry_url": "http://www.faitid.org", - "whois_server": "whois.nic.xn--80adxhks", - "rdap_server": "https://rdap.flexireg.net", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "moscow", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/xn--80akhbyknj4f.json b/data/generated/tld/xn--80akhbyknj4f.json index 7a6f2ccd..564764d9 100644 --- a/data/generated/tld/xn--80akhbyknj4f.json +++ b/data/generated/tld/xn--80akhbyknj4f.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ru", + "language_name_en": "Russian" + } } } diff --git a/data/generated/tld/xn--80ao21a.json b/data/generated/tld/xn--80ao21a.json index dc84fc74..1b7991c8 100644 --- a/data/generated/tld/xn--80ao21a.json +++ b/data/generated/tld/xn--80ao21a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "KazNIC Organization" } }, + "registry_url": "http://www.nic.kz/", + "whois_server": "whois.nic.kz", + "tld_created": "2011-09-15", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Kazakhstan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "kk", + "language_name_en": "Kazakh" + }, "nameservers": [ { "hostname": "ns.nic.kz", @@ -78,22 +96,6 @@ } ] } - ], - "registry_url": "http://www.nic.kz/", - "whois_server": "whois.nic.kz", - "tld_created": "2011-09-15", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Kazakhstan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--80aqecdr1a.json b/data/generated/tld/xn--80aqecdr1a.json index 5e46f2fd..fc0faec9 100644 --- a/data/generated/tld/xn--80aqecdr1a.json +++ b/data/generated/tld/xn--80aqecdr1a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--80aqecdr1a", + "rdap_server": "https://rdap.nic.xn--80aqecdr1a/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.nic.xn--80aqecdr1a", @@ -55,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +117,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +136,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +155,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,34 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--80aqecdr1a", - "rdap_server": "https://rdap.nic.xn--80aqecdr1a/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--80asehdb.json b/data/generated/tld/xn--80asehdb.json index 9c1a9de0..3b1be1b6 100644 --- a/data/generated/tld/xn--80asehdb.json +++ b/data/generated/tld/xn--80asehdb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--80asehdb", + "rdap_server": "https://rdap.nic.xn--80asehdb/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -107,27 +130,6 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--80asehdb", - "rdap_server": "https://rdap.nic.xn--80asehdb/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/xn--80aswg.json b/data/generated/tld/xn--80aswg.json index 2fcbb27d..2c256e5f 100644 --- a/data/generated/tld/xn--80aswg.json +++ b/data/generated/tld/xn--80aswg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--80aswg", + "rdap_server": "https://rdap.nic.xn--80aswg/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "site", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -107,27 +130,6 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--80aswg", - "rdap_server": "https://rdap.nic.xn--80aswg/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "site", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/xn--8y0a063a.json b/data/generated/tld/xn--8y0a063a.json index ad44f9b6..7dfab4a4 100644 --- a/data/generated/tld/xn--8y0a063a.json +++ b/data/generated/tld/xn--8y0a063a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,32 @@ "date_removed": null } }, + "registry_url": "http://www.chinaunicom.cn", + "whois_server": "whois.nic.xn--8y0a063a", + "rdap_server": "https://rdap.zdnsgtld.com/xn--8y0a063a", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "unicom", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,30 +153,6 @@ } ] } - ], - "registry_url": "http://www.chinaunicom.cn", - "whois_server": "whois.nic.xn--8y0a063a", - "rdap_server": "https://rdap.zdnsgtld.com/xn--8y0a063a", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "unicom", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--90a3ac.json b/data/generated/tld/xn--90a3ac.json index 5752a04b..ee52300a 100644 --- a/data/generated/tld/xn--90a3ac.json +++ b/data/generated/tld/xn--90a3ac.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Serbian National Internet Domain Registry (RNIDS)" } }, + "registry_url": "http://www.rnids.rs/", + "whois_server": "whois.rnids.rs", + "tld_created": "2011-02-05", + "tld_updated": [ + "2025-02-06" + ], + "annotations": { + "country_name_iso": "Serbia", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "sr", + "language_name_en": "Serbian" + }, "nameservers": [ { "hostname": "a.nic.rs", @@ -135,24 +155,6 @@ } ] } - ], - "registry_url": "http://www.rnids.rs/", - "whois_server": "whois.rnids.rs", - "tld_created": "2011-02-05", - "tld_updated": [ - "2025-02-06" - ], - "annotations": { - "country_name_iso": "Serbia", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--90ae.json b/data/generated/tld/xn--90ae.json index f11af25c..af9e9eb7 100644 --- a/data/generated/tld/xn--90ae.json +++ b/data/generated/tld/xn--90ae.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Imena.BG AD" } }, + "registry_url": "http://www.imena.bg", + "whois_server": "whois.imena.bg", + "tld_created": "2016-03-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Bulgaria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "bg", + "language_name_en": "Bulgarian" + }, "nameservers": [ { "hostname": "a.nic.bg", @@ -135,22 +153,6 @@ } ] } - ], - "registry_url": "http://www.imena.bg", - "whois_server": "whois.imena.bg", - "tld_created": "2016-03-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Bulgaria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--90ais.json b/data/generated/tld/xn--90ais.json index 9f37c51a..270a8017 100644 --- a/data/generated/tld/xn--90ais.json +++ b/data/generated/tld/xn--90ais.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,18 @@ "tech": "Belarusian Cloud Technologies LLC" } }, + "registry_url": "https://cctld.by", + "whois_server": "whois.cctld.by", + "tld_created": "2014-09-29", + "tld_updated": [ + "2025-01-09" + ], + "annotations": { + "country_name_iso": "Belarus", + "geographic_scope": "country", + "language_code": "be", + "language_name_en": "Belarusian" + }, "nameservers": [ { "hostname": "dns1.tld.becloudby.com", @@ -109,16 +121,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://cctld.by", - "whois_server": "whois.cctld.by", - "tld_created": "2014-09-29", - "tld_updated": [ - "2025-01-09" - ], - "annotations": { - "country_name_iso": "Belarus", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--9dbq2a.json b/data/generated/tld/xn--9dbq2a.json index f8ce7c0a..e960470e 100644 --- a/data/generated/tld/xn--9dbq2a.json +++ b/data/generated/tld/xn--9dbq2a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--9dbq2a", + "rdap_server": "https://tld-rdap.verisign.com/xn--9dbq2a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "he", + "language_name_en": "Hebrew" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--9dbq2a", - "rdap_server": "https://tld-rdap.verisign.com/xn--9dbq2a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--9et52u.json b/data/generated/tld/xn--9et52u.json index fb35e521..cdaba317 100644 --- a/data/generated/tld/xn--9et52u.json +++ b/data/generated/tld/xn--9et52u.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.shishang.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--9et52u", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "vogue", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.shishang.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--9et52u", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "vogue", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--9krt00a.json b/data/generated/tld/xn--9krt00a.json index 8d7072b3..ea9d0363 100644 --- a/data/generated/tld/xn--9krt00a.json +++ b/data/generated/tld/xn--9krt00a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,32 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.xn--9krt00a", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "wei-bo", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--9krt00a", @@ -107,30 +133,6 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.xn--9krt00a", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "wei-bo", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--9t4b11yi5a.json b/data/generated/tld/xn--9t4b11yi5a.json index fdbfb126..7f8a9471 100644 --- a/data/generated/tld/xn--9t4b11yi5a.json +++ b/data/generated/tld/xn--9t4b11yi5a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ko", + "language_name_en": "Korean" + } } } diff --git a/data/generated/tld/xn--b4w605ferd.json b/data/generated/tld/xn--b4w605ferd.json index 70fac5e2..3211f38d 100644 --- a/data/generated/tld/xn--b4w605ferd.json +++ b/data/generated/tld/xn--b4w605ferd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,32 @@ "date_removed": null } }, + "registry_url": "http://www.temasek.com.sg/nicdan4ma3xi1", + "whois_server": "whois.nic.xn--b4w605ferd", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "temasek", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--b4w605ferd", @@ -107,30 +133,6 @@ } ] } - ], - "registry_url": "http://www.temasek.com.sg/nicdan4ma3xi1", - "whois_server": "whois.nic.xn--b4w605ferd", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "temasek", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--bck1b9a5dre4c.json b/data/generated/tld/xn--bck1b9a5dre4c.json index 98c043b9..397e8b46 100644 --- a/data/generated/tld/xn--bck1b9a5dre4c.json +++ b/data/generated/tld/xn--bck1b9a5dre4c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--bck1b9a5dre4c", + "whois_server": "whois.nic.xn--bck1b9a5dre4c", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "fashion", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--bck1b9a5dre4c", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--bck1b9a5dre4c", - "whois_server": "whois.nic.xn--bck1b9a5dre4c", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "fashion", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--c1avg.json b/data/generated/tld/xn--c1avg.json index fb0424ca..4b23eb77 100644 --- a/data/generated/tld/xn--c1avg.json +++ b/data/generated/tld/xn--c1avg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--c1avg", + "whois_server": "whois.nic.xn--c1avg", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a0.nic.xn--c1avg", @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://nic.xn--c1avg", - "whois_server": "whois.nic.xn--c1avg", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--c2br7g.json b/data/generated/tld/xn--c2br7g.json index e18effd5..21172ee9 100644 --- a/data/generated/tld/xn--c2br7g.json +++ b/data/generated/tld/xn--c2br7g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--c2br7g", + "rdap_server": "https://tld-rdap.verisign.com/xn--c2br7g/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--c2br7g", - "rdap_server": "https://tld-rdap.verisign.com/xn--c2br7g/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--cck2b3b.json b/data/generated/tld/xn--cck2b3b.json index 777d30e0..24003b53 100644 --- a/data/generated/tld/xn--cck2b3b.json +++ b/data/generated/tld/xn--cck2b3b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--cck2b3b", + "whois_server": "whois.nic.xn--cck2b3b", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "store", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--cck2b3b", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--cck2b3b", - "whois_server": "whois.nic.xn--cck2b3b", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "store", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--cckwcxetd.json b/data/generated/tld/xn--cckwcxetd.json index 6f4cc25f..b89cc618 100644 --- a/data/generated/tld/xn--cckwcxetd.json +++ b/data/generated/tld/xn--cckwcxetd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,47 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--cckwcxetd", + "rdap_server": "https://rdap.nominet.uk/xn--cckwcxetd/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "amazon", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "dns1.nic.xn--cckwcxetd", "ipv4": [ { "ip": "213.248.218.92", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -55,8 +88,8 @@ "ipv4": [ { "ip": "103.49.82.92", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -183,37 +216,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--cckwcxetd", - "rdap_server": "https://rdap.nominet.uk/xn--cckwcxetd/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "amazon", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--cg4bki.json b/data/generated/tld/xn--cg4bki.json index af75aa5e..15687fb3 100644 --- a/data/generated/tld/xn--cg4bki.json +++ b/data/generated/tld/xn--cg4bki.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,23 @@ "date_removed": null } }, + "registry_url": "http://samsungregistry.com", + "whois_server": "whois.kr", + "rdap_server": "https://nic.samsung/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-01-08" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "samsung", + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "n1-a1.aka-ns.net", @@ -164,21 +181,6 @@ } ] } - ], - "registry_url": "http://samsungregistry.com", - "whois_server": "whois.kr", - "rdap_server": "https://nic.samsung/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-01-08" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "samsung" - } + ] } } diff --git a/data/generated/tld/xn--clchc0ea0b2g2a9gcd.json b/data/generated/tld/xn--clchc0ea0b2g2a9gcd.json index 8a6f3dcc..c3475bbe 100644 --- a/data/generated/tld/xn--clchc0ea0b2g2a9gcd.json +++ b/data/generated/tld/xn--clchc0ea0b2g2a9gcd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,30 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd" } }, + "registry_url": "http://www.sgnic.sg/", + "whois_server": "whois.ta.sgnic.sg", + "rdap_server": "https://rdap.ta.sgnic.sg/rdap/", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -116,28 +140,6 @@ } ] } - ], - "registry_url": "http://www.sgnic.sg/", - "whois_server": "whois.ta.sgnic.sg", - "rdap_server": "https://rdap.ta.sgnic.sg/rdap/", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--czr694b.json b/data/generated/tld/xn--czr694b.json index b5a3e3da..0c7982a6 100644 --- a/data/generated/tld/xn--czr694b.json +++ b/data/generated/tld/xn--czr694b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--czr694b", + "tld_created": "2014-05-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "trademark", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,25 +148,6 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--czr694b", - "tld_created": "2014-05-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "trademark", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--czrs0t.json b/data/generated/tld/xn--czrs0t.json index 493f3fe0..dd856679 100644 --- a/data/generated/tld/xn--czrs0t.json +++ b/data/generated/tld/xn--czrs0t.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "shop", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--czrs0t", @@ -145,34 +175,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "shop", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--czru2d.json b/data/generated/tld/xn--czru2d.json index 86e916b5..41b819a1 100644 --- a/data/generated/tld/xn--czru2d.json +++ b/data/generated/tld/xn--czru2d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.shangcheng.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--czru2d", + "tld_created": "2014-02-27", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "mall", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.shangcheng.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--czru2d", - "tld_created": "2014-02-27", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "mall", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--d1acj3b.json b/data/generated/tld/xn--d1acj3b.json index d3936c30..3b98184c 100644 --- a/data/generated/tld/xn--d1acj3b.json +++ b/data/generated/tld/xn--d1acj3b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,23 @@ "date_removed": null } }, + "registry_url": "http://www.dotdeti.ru", + "whois_server": "whois.nic.xn--d1acj3b", + "rdap_server": "https://whois.nic.xn--d1acj3b/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2026-04-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "kids", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -126,21 +143,6 @@ } ] } - ], - "registry_url": "http://www.dotdeti.ru", - "whois_server": "whois.nic.xn--d1acj3b", - "rdap_server": "https://whois.nic.xn--d1acj3b/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2026-04-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "kids" - } + ] } } diff --git a/data/generated/tld/xn--d1alf.json b/data/generated/tld/xn--d1alf.json index db8238da..a458a24d 100644 --- a/data/generated/tld/xn--d1alf.json +++ b/data/generated/tld/xn--d1alf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Faculty of Computer Science and Engineering" } }, + "registry_url": "http://marnet.mk/", + "whois_server": "whois.marnet.mk", + "tld_created": "2014-04-21", + "tld_updated": [ + "2024-02-21" + ], + "annotations": { + "country_name_iso": "North Macedonia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country", + "language_code": "mk", + "language_name_en": "Macedonian" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -90,22 +108,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://marnet.mk/", - "whois_server": "whois.marnet.mk", - "tld_created": "2014-04-21", - "tld_updated": [ - "2024-02-21" - ], - "annotations": { - "country_name_iso": "North Macedonia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--deba0ad.json b/data/generated/tld/xn--deba0ad.json index 735a90dc..3ff85614 100644 --- a/data/generated/tld/xn--deba0ad.json +++ b/data/generated/tld/xn--deba0ad.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "he", + "language_name_en": "Hebrew" + } } } diff --git a/data/generated/tld/xn--e1a4c.json b/data/generated/tld/xn--e1a4c.json index 928238ce..fdaf16d0 100644 --- a/data/generated/tld/xn--e1a4c.json +++ b/data/generated/tld/xn--e1a4c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "EURid vzw" } }, + "registry_url": "http://www.registry.eu", + "whois_server": "whois.eu", + "tld_created": "2015-12-08", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational", + "language_code": "bg", + "language_name_en": "Bulgarian" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -109,24 +129,6 @@ } ] } - ], - "registry_url": "http://www.registry.eu", - "whois_server": "whois.eu", - "tld_created": "2015-12-08", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--eckvdtc9d.json b/data/generated/tld/xn--eckvdtc9d.json index 62770771..70c9a2fb 100644 --- a/data/generated/tld/xn--eckvdtc9d.json +++ b/data/generated/tld/xn--eckvdtc9d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--eckvdtc9d", + "whois_server": "whois.nic.xn--eckvdtc9d", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "point", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--eckvdtc9d", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--eckvdtc9d", - "whois_server": "whois.nic.xn--eckvdtc9d", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "point", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--efvy88h.json b/data/generated/tld/xn--efvy88h.json index 3232574f..ac950755 100644 --- a/data/generated/tld/xn--efvy88h.json +++ b/data/generated/tld/xn--efvy88h.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.gd.xinhua.org", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/XN--EFVY88H", + "tld_created": "2015-08-06", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "news", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.gd.xinhua.org", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/XN--EFVY88H", - "tld_created": "2015-08-06", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "news", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--estv75g.json b/data/generated/tld/xn--estv75g.json index 32ce1fa8..8859b703 100644 --- a/data/generated/tld/xn--estv75g.json +++ b/data/generated/tld/xn--estv75g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -35,7 +35,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "icbc" + "icann_translation_en": "icbc", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--fct429k.json b/data/generated/tld/xn--fct429k.json index b7a8c07e..f21cbe1b 100644 --- a/data/generated/tld/xn--fct429k.json +++ b/data/generated/tld/xn--fct429k.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--fct429k", + "whois_server": "whois.nic.xn--fct429k", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "consumer electronics", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--fct429k", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--fct429k", - "whois_server": "whois.nic.xn--fct429k", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "consumer electronics", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--fhbei.json b/data/generated/tld/xn--fhbei.json index e720311b..b5eae7ad 100644 --- a/data/generated/tld/xn--fhbei.json +++ b/data/generated/tld/xn--fhbei.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--fhbei", + "rdap_server": "https://tld-rdap.verisign.com/xn--fhbei/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--fhbei", - "rdap_server": "https://tld-rdap.verisign.com/xn--fhbei/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--fiq228c5hs.json b/data/generated/tld/xn--fiq228c5hs.json index dc90bf6e..5b9f6c4b 100644 --- a/data/generated/tld/xn--fiq228c5hs.json +++ b/data/generated/tld/xn--fiq228c5hs.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,37 @@ "date_removed": null } }, + "registry_url": "https://tldland.cn/", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/xn--fiq228c5hs/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-12-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "website", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,27 +116,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://tldland.cn/", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/xn--fiq228c5hs/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-12-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "website", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--fiq64b.json b/data/generated/tld/xn--fiq64b.json index 9b89e7f0..303e4121 100644 --- a/data/generated/tld/xn--fiq64b.json +++ b/data/generated/tld/xn--fiq64b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "whois_server": "whois.gtld.knet.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--fiq64b", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "citic", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "whois_server": "whois.gtld.knet.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--fiq64b", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "citic", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--fiqs8s.json b/data/generated/tld/xn--fiqs8s.json index 16836928..6cbd1277 100644 --- a/data/generated/tld/xn--fiqs8s.json +++ b/data/generated/tld/xn--fiqs8s.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,13 +20,37 @@ "tech": "China Internet Network Information Center (CNNIC)" } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.cnnic.cn", + "tld_created": "2010-07-09", + "tld_updated": [ + "2025-07-18" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "country_name_iso": "China", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "geographic_scope": "country", + "language_code": "zh-Hans", + "language_name_en": "Chinese (Simplified)" + }, "nameservers": [ { "hostname": "h.dns.cn", "ipv4": [ { "ip": "125.208.32.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -45,7 +69,7 @@ "ipv4": [ { "ip": "125.208.33.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -53,7 +77,7 @@ "ipv6": [ { "ip": "2001:dc7:ffff::1", - "asn": 24406, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -91,7 +115,7 @@ "ipv6": [ { "ip": "2001:dc7:fffc::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -116,28 +140,6 @@ } ] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.cnnic.cn", - "tld_created": "2010-07-09", - "tld_updated": [ - "2025-07-18" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "country_name_iso": "China", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--fiqz9s.json b/data/generated/tld/xn--fiqz9s.json index 15b042e7..35bd7a4f 100644 --- a/data/generated/tld/xn--fiqz9s.json +++ b/data/generated/tld/xn--fiqz9s.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,13 +20,37 @@ "tech": "China Internet Network Information Center (CNNIC)" } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.cnnic.cn", + "tld_created": "2010-07-09", + "tld_updated": [ + "2025-07-18" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "country_name_iso": "China", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" + }, "nameservers": [ { "hostname": "h.dns.cn", "ipv4": [ { "ip": "125.208.32.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -45,7 +69,7 @@ "ipv4": [ { "ip": "125.208.33.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -53,7 +77,7 @@ "ipv6": [ { "ip": "2001:dc7:ffff::1", - "asn": 24406, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -91,7 +115,7 @@ "ipv6": [ { "ip": "2001:dc7:fffc::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -116,28 +140,6 @@ } ] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.cnnic.cn", - "tld_created": "2010-07-09", - "tld_updated": [ - "2025-07-18" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "country_name_iso": "China", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--fjq720a.json b/data/generated/tld/xn--fjq720a.json index 12d74ebd..5aae43b7 100644 --- a/data/generated/tld/xn--fjq720a.json +++ b/data/generated/tld/xn--fjq720a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "entertainment", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--fjq720a", @@ -145,34 +175,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "entertainment", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--flw351e.json b/data/generated/tld/xn--flw351e.json index 5762f7e3..904cf4a3 100644 --- a/data/generated/tld/xn--flw351e.json +++ b/data/generated/tld/xn--flw351e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "google", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -126,35 +157,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "google", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/xn--fpcrj9c3d.json b/data/generated/tld/xn--fpcrj9c3d.json index a435b527..2bdc0adf 100644 --- a/data/generated/tld/xn--fpcrj9c3d.json +++ b/data/generated/tld/xn--fpcrj9c3d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "te", + "language_name_en": "Telugu" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--fzc2c9e2c.json b/data/generated/tld/xn--fzc2c9e2c.json index 17a951f3..a9fe7134 100644 --- a/data/generated/tld/xn--fzc2c9e2c.json +++ b/data/generated/tld/xn--fzc2c9e2c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,25 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-04-23" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "si", + "language_name_en": "Sinhala" + }, "nameservers": [ { "hostname": "lk.communitydns.net", @@ -124,23 +143,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.domains.lk", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-04-23" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--fzys8d69uvgm.json b/data/generated/tld/xn--fzys8d69uvgm.json index 4b99468c..eaf0be96 100644 --- a/data/generated/tld/xn--fzys8d69uvgm.json +++ b/data/generated/tld/xn--fzys8d69uvgm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,32 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.xn--fzys8d69uvgm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "pccw", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--fzys8d69uvgm", @@ -107,30 +133,6 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.xn--fzys8d69uvgm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "pccw", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--g2xx48c.json b/data/generated/tld/xn--g2xx48c.json index 894a7a6e..3d6268fd 100644 --- a/data/generated/tld/xn--g2xx48c.json +++ b/data/generated/tld/xn--g2xx48c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,31 @@ "date_removed": null } }, + "registry_url": "http://gouwunic.com/", + "whois_server": "whois.nic.xn--g2xx48c", + "rdap_server": "https://rdap.nic.xn--g2xx48c/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-03-13" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "shopping", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--g2xx48c", @@ -55,7 +80,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -145,29 +170,6 @@ } ] } - ], - "registry_url": "http://gouwunic.com/", - "whois_server": "whois.nic.xn--g2xx48c", - "rdap_server": "https://rdap.nic.xn--g2xx48c/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-03-13" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "shopping", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--g6w251d.json b/data/generated/tld/xn--g6w251d.json index 3dd7a817..757ab84e 100644 --- a/data/generated/tld/xn--g6w251d.json +++ b/data/generated/tld/xn--g6w251d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "zh", + "language_name_en": "Chinese" + } } } diff --git a/data/generated/tld/xn--gckr3f0f.json b/data/generated/tld/xn--gckr3f0f.json index 50edf7f4..99a813ee 100644 --- a/data/generated/tld/xn--gckr3f0f.json +++ b/data/generated/tld/xn--gckr3f0f.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--gckr3f0f", + "whois_server": "whois.nic.xn--gckr3f0f", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "cloud", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--gckr3f0f", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--gckr3f0f", - "whois_server": "whois.nic.xn--gckr3f0f", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "cloud", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--gecrj9c.json b/data/generated/tld/xn--gecrj9c.json index dd2f901e..bf448577 100644 --- a/data/generated/tld/xn--gecrj9c.json +++ b/data/generated/tld/xn--gecrj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "gu", + "language_name_en": "Gujarati" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--gk3at1e.json b/data/generated/tld/xn--gk3at1e.json index 63bcba7e..e58059e7 100644 --- a/data/generated/tld/xn--gk3at1e.json +++ b/data/generated/tld/xn--gk3at1e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--gk3at1e", + "whois_server": "whois.nic.xn--gk3at1e", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online shopping", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--gk3at1e", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--gk3at1e", - "whois_server": "whois.nic.xn--gk3at1e", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online shopping", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--h2breg3eve.json b/data/generated/tld/xn--h2breg3eve.json index 4ebd0248..4657ff62 100644 --- a/data/generated/tld/xn--h2breg3eve.json +++ b/data/generated/tld/xn--h2breg3eve.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--h2brj9c.json b/data/generated/tld/xn--h2brj9c.json index b1bcc5c3..aca7accf 100644 --- a/data/generated/tld/xn--h2brj9c.json +++ b/data/generated/tld/xn--h2brj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--h2brj9c8c.json b/data/generated/tld/xn--h2brj9c8c.json index 44247b78..082a73e9 100644 --- a/data/generated/tld/xn--h2brj9c8c.json +++ b/data/generated/tld/xn--h2brj9c8c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--hgbk6aj7f53bba.json b/data/generated/tld/xn--hgbk6aj7f53bba.json index b7722da9..bf1298a9 100644 --- a/data/generated/tld/xn--hgbk6aj7f53bba.json +++ b/data/generated/tld/xn--hgbk6aj7f53bba.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ar", + "language_name_en": "Arabic" + } } } diff --git a/data/generated/tld/xn--hlcj6aya9esc7a.json b/data/generated/tld/xn--hlcj6aya9esc7a.json index a682dd6e..935268f2 100644 --- a/data/generated/tld/xn--hlcj6aya9esc7a.json +++ b/data/generated/tld/xn--hlcj6aya9esc7a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ta", + "language_name_en": "Tamil" + } } } diff --git a/data/generated/tld/xn--hxt814e.json b/data/generated/tld/xn--hxt814e.json index d261fd6a..34bdb3fd 100644 --- a/data/generated/tld/xn--hxt814e.json +++ b/data/generated/tld/xn--hxt814e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.wangdian.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--hxt814e", + "tld_created": "2014-11-20", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "webshop", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://www.wangdian.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--hxt814e", - "tld_created": "2014-11-20", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "webshop", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--i1b6b1a6a2e.json b/data/generated/tld/xn--i1b6b1a6a2e.json index 950fcc81..d8e4d7ff 100644 --- a/data/generated/tld/xn--i1b6b1a6a2e.json +++ b/data/generated/tld/xn--i1b6b1a6a2e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--i1b6b1a6a2e", + "whois_server": "whois.nic.xn--i1b6b1a6a2e", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "organization", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "a0.nic.xn--i1b6b1a6a2e", @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://nic.xn--i1b6b1a6a2e", - "whois_server": "whois.nic.xn--i1b6b1a6a2e", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "organization", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--imr513n.json b/data/generated/tld/xn--imr513n.json index ef4a884a..08f49fb6 100644 --- a/data/generated/tld/xn--imr513n.json +++ b/data/generated/tld/xn--imr513n.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--imr513n", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "restaurant", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,25 +148,6 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--imr513n", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "restaurant", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--io0a7i.json b/data/generated/tld/xn--io0a7i.json index 87eaf980..302f9255 100644 --- a/data/generated/tld/xn--io0a7i.json +++ b/data/generated/tld/xn--io0a7i.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "icann_registry_operator_alias": "CNNIC", + "icann_registry_operator_slug": "cnnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "network", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.ngtld.cn", @@ -112,35 +143,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "icann_registry_operator_alias": "CNNIC", - "icann_registry_operator_slug": "cnnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "network", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--j1aef.json b/data/generated/tld/xn--j1aef.json index 8b554173..625b0d21 100644 --- a/data/generated/tld/xn--j1aef.json +++ b/data/generated/tld/xn--j1aef.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--j1aef", + "rdap_server": "https://tld-rdap.verisign.com/xn--j1aef/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--j1aef", - "rdap_server": "https://tld-rdap.verisign.com/xn--j1aef/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--j1amh.json b/data/generated/tld/xn--j1amh.json index d65eefbe..b29a4480 100644 --- a/data/generated/tld/xn--j1amh.json +++ b/data/generated/tld/xn--j1amh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,18 @@ "tech": "Ukrainian Network Information Centre (UANIC), Inc." } }, + "registry_url": "https://namestore.u-registry.com", + "whois_server": "whois.dotukr.com", + "tld_created": "2011-03-01", + "tld_updated": [ + "2024-02-27" + ], + "annotations": { + "country_name_iso": "Ukraine", + "geographic_scope": "country", + "language_code": "uk", + "language_name_en": "Ukrainian" + }, "nameservers": [ { "hostname": "dns.tci.net.ua", @@ -107,16 +119,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://namestore.u-registry.com", - "whois_server": "whois.dotukr.com", - "tld_created": "2011-03-01", - "tld_updated": [ - "2024-02-27" - ], - "annotations": { - "country_name_iso": "Ukraine", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--j6w193g.json b/data/generated/tld/xn--j6w193g.json index 9ceedcb1..1a2a70f5 100644 --- a/data/generated/tld/xn--j6w193g.json +++ b/data/generated/tld/xn--j6w193g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Hong Kong Internet Registration Corporation Ltd." } }, + "registry_url": "http://www.hkirc.hk", + "whois_server": "whois.hkirc.hk", + "tld_created": "2010-07-12", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "country_name_iso": "Hong Kong", + "as_org_aliases": [ + "CNNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cnnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" + }, "nameservers": [ { "hostname": "c.hkirc.net.hk", @@ -64,7 +84,7 @@ "ipv4": [ { "ip": "125.208.49.10", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -192,24 +212,6 @@ } ] } - ], - "registry_url": "http://www.hkirc.hk", - "whois_server": "whois.hkirc.hk", - "tld_created": "2010-07-12", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "country_name_iso": "Hong Kong", - "as_org_aliases": [ - "CNNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cnnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--jlq480n2rg.json b/data/generated/tld/xn--jlq480n2rg.json index f1be173b..23e37714 100644 --- a/data/generated/tld/xn--jlq480n2rg.json +++ b/data/generated/tld/xn--jlq480n2rg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,45 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--jlq480n2rg", + "rdap_server": "https://rdap.nominet.uk/xn--jlq480n2rg/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "amazon", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "dns1.nic.xn--jlq480n2rg", "ipv4": [ { "ip": "213.248.218.91", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -55,8 +86,8 @@ "ipv4": [ { "ip": "103.49.82.91", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -183,35 +214,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--jlq480n2rg", - "rdap_server": "https://rdap.nominet.uk/xn--jlq480n2rg/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "amazon", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--jlq61u9w7b.json b/data/generated/tld/xn--jlq61u9w7b.json index 91ae89aa..22c96e48 100644 --- a/data/generated/tld/xn--jlq61u9w7b.json +++ b/data/generated/tld/xn--jlq61u9w7b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -35,7 +35,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "nokia" + "icann_translation_en": "nokia", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--jvr189m.json b/data/generated/tld/xn--jvr189m.json index 686d646d..4a41070a 100644 --- a/data/generated/tld/xn--jvr189m.json +++ b/data/generated/tld/xn--jvr189m.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--jvr189m", + "whois_server": "whois.nic.xn--jvr189m", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "food", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--jvr189m", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--jvr189m", - "whois_server": "whois.nic.xn--jvr189m", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "food", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--jxalpdlp.json b/data/generated/tld/xn--jxalpdlp.json index db08c42a..195c2c05 100644 --- a/data/generated/tld/xn--jxalpdlp.json +++ b/data/generated/tld/xn--jxalpdlp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "el", + "language_name_en": "Greek" + } } } diff --git a/data/generated/tld/xn--kcrx77d1x4a.json b/data/generated/tld/xn--kcrx77d1x4a.json index 241f5b6e..2d36f004 100644 --- a/data/generated/tld/xn--kcrx77d1x4a.json +++ b/data/generated/tld/xn--kcrx77d1x4a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--kcrx77d1x4a", + "whois_server": "whois.nic.xn--kcrx77d1x4a", + "rdap_server": "https://rdap.nic.xn--kcrx77d1x4a/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "philips", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--kcrx77d1x4a", @@ -55,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +117,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +136,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +155,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,34 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.xn--kcrx77d1x4a", - "whois_server": "whois.nic.xn--kcrx77d1x4a", - "rdap_server": "https://rdap.nic.xn--kcrx77d1x4a/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "philips", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--kgbechtv.json b/data/generated/tld/xn--kgbechtv.json index 39f49e00..d0e91313 100644 --- a/data/generated/tld/xn--kgbechtv.json +++ b/data/generated/tld/xn--kgbechtv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ar", + "language_name_en": "Arabic" + } } } diff --git a/data/generated/tld/xn--kprw13d.json b/data/generated/tld/xn--kprw13d.json index f36b8799..4f6ba513 100644 --- a/data/generated/tld/xn--kprw13d.json +++ b/data/generated/tld/xn--kprw13d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,28 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "registry_url": "http://rs.twnic.net.tw", + "whois_server": "whois.twnic.net.tw", + "tld_created": "2010-07-14", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "country_name_iso": "Taiwan, Province of China", + "as_org_aliases": [ + "Google", + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "google", + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hant-TW", + "language_name_en": "Chinese (Taiwan)" + }, "nameservers": [ { "hostname": "anytld.apnic.net", @@ -121,26 +143,6 @@ } ] } - ], - "registry_url": "http://rs.twnic.net.tw", - "whois_server": "whois.twnic.net.tw", - "tld_created": "2010-07-14", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "country_name_iso": "Taiwan, Province of China", - "as_org_aliases": [ - "Google", - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "google", - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--kpry57d.json b/data/generated/tld/xn--kpry57d.json index ae256287..2966f899 100644 --- a/data/generated/tld/xn--kpry57d.json +++ b/data/generated/tld/xn--kpry57d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,30 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "registry_url": "http://rs.twnic.net.tw", + "whois_server": "whois.twnic.net.tw", + "rdap_server": "https://ccrdap.twnic.tw/taiwan/", + "tld_created": "2010-07-14", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Taiwan, Province of China", + "as_org_aliases": [ + "Google", + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "google", + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hant-TW", + "language_name_en": "Chinese (Taiwan)" + }, "nameservers": [ { "hostname": "anytld.apnic.net", @@ -121,28 +145,6 @@ } ] } - ], - "registry_url": "http://rs.twnic.net.tw", - "whois_server": "whois.twnic.net.tw", - "rdap_server": "https://ccrdap.twnic.tw/taiwan/", - "tld_created": "2010-07-14", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Taiwan, Province of China", - "as_org_aliases": [ - "Google", - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "google", - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--kpu716f.json b/data/generated/tld/xn--kpu716f.json index 0b18cbc7..145f092a 100644 --- a/data/generated/tld/xn--kpu716f.json +++ b/data/generated/tld/xn--kpu716f.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -34,7 +34,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "watches" + "icann_translation_en": "watches", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--kput3i.json b/data/generated/tld/xn--kput3i.json index 17936097..8518ac96 100644 --- a/data/generated/tld/xn--kput3i.json +++ b/data/generated/tld/xn--kput3i.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.rntd.cn", + "whois_server": "whois.nic.xn--kput3i", + "rdap_server": "https://rdap.teleinfo.cn/xn--kput3i/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-04-25" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "cell", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,27 +116,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.rntd.cn", - "whois_server": "whois.nic.xn--kput3i", - "rdap_server": "https://rdap.teleinfo.cn/xn--kput3i/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-04-25" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "cell", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--l1acc.json b/data/generated/tld/xn--l1acc.json index fafd9ece..1fdd23d2 100644 --- a/data/generated/tld/xn--l1acc.json +++ b/data/generated/tld/xn--l1acc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Datacom Co.,Ltd" } }, + "registry_url": "https://www.datacom.mn/", + "whois_server": "whois.mn", + "tld_created": "2012-06-21", + "tld_updated": [ + "2025-06-18" + ], + "annotations": { + "iana_sponsor_alias": "Datacom Mongolia", + "iana_sponsor_slug": "datacom-mongolia", + "iana_admin_alias": "Datacom Mongolia", + "iana_admin_slug": "datacom-mongolia", + "iana_tech_alias": "Datacom Mongolia", + "iana_tech_slug": "datacom-mongolia", + "country_name_iso": "Mongolia", + "geographic_scope": "country", + "language_code": "mn", + "language_name_en": "Mongolian" + }, "nameservers": [ { "hostname": "ns10.dns.mn", @@ -45,22 +63,6 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.datacom.mn/", - "whois_server": "whois.mn", - "tld_created": "2012-06-21", - "tld_updated": [ - "2025-06-18" - ], - "annotations": { - "iana_sponsor_alias": "Datacom Mongolia", - "iana_sponsor_slug": "datacom-mongolia", - "iana_admin_alias": "Datacom Mongolia", - "iana_admin_slug": "datacom-mongolia", - "iana_tech_alias": "Datacom Mongolia", - "iana_tech_slug": "datacom-mongolia", - "country_name_iso": "Mongolia", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--lgbbat1ad8j.json b/data/generated/tld/xn--lgbbat1ad8j.json index ffe34850..63c48102 100644 --- a/data/generated/tld/xn--lgbbat1ad8j.json +++ b/data/generated/tld/xn--lgbbat1ad8j.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,18 @@ "tech": "CERIST" } }, + "registry_url": "http://www.nic.dz", + "whois_server": "whois.nic.dz", + "tld_created": "2011-02-05", + "tld_updated": [ + "2025-10-01" + ], + "annotations": { + "country_name_iso": "Algeria", + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "idn1.nic.dz", @@ -45,16 +57,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.dz", - "whois_server": "whois.nic.dz", - "tld_created": "2011-02-05", - "tld_updated": [ - "2025-10-01" - ], - "annotations": { - "country_name_iso": "Algeria", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgb9awbf.json b/data/generated/tld/xn--mgb9awbf.json index 938b53e0..ce52ef65 100644 --- a/data/generated/tld/xn--mgb9awbf.json +++ b/data/generated/tld/xn--mgb9awbf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Telecommunications Regulatory Authority (TRA)" } }, + "registry_url": "http://www.registry.om", + "whois_server": "whois.registry.om", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Oman", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "cctld.alpha.aridns.net.au", @@ -45,7 +63,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -135,22 +153,6 @@ } ] } - ], - "registry_url": "http://www.registry.om", - "whois_server": "whois.registry.om", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Oman", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgba3a3ejt.json b/data/generated/tld/xn--mgba3a3ejt.json index 8eeeb922..b986a455 100644 --- a/data/generated/tld/xn--mgba3a3ejt.json +++ b/data/generated/tld/xn--mgba3a3ejt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://www.aramco.com", + "rdap_server": "https://rdap.nic.xn--mgba3a3ejt/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "aramco", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgba3a3ejt", @@ -55,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,34 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.aramco.com", - "rdap_server": "https://rdap.nic.xn--mgba3a3ejt/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "aramco", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--mgba3a4f16a.json b/data/generated/tld/xn--mgba3a4f16a.json index 5193adcf..d7a12bd0 100644 --- a/data/generated/tld/xn--mgba3a4f16a.json +++ b/data/generated/tld/xn--mgba3a4f16a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,18 @@ "tech": "Institute for Research in Fundamental Sciences (IPM)" } }, + "registry_url": "http://www.nic.ir", + "whois_server": "whois.nic.ir", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Iran, Islamic Republic of", + "geographic_scope": "country", + "language_code": "fa", + "language_name_en": "Persian" + }, "nameservers": [ { "hostname": "a.nic.ir", @@ -34,9 +46,9 @@ "ipv6": [ { "ip": "2001:678:b0:0:193:189:123:2", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 39200, + "as_org": "IRNICANYCAST-AS", + "as_country": "IR" } ] }, @@ -53,22 +65,12 @@ "ipv6": [ { "ip": "2001:678:b1:0:193:189:122:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 35285, + "as_org": "IRNIC-AS", + "as_country": "IR" } ] } - ], - "registry_url": "http://www.nic.ir", - "whois_server": "whois.nic.ir", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Iran, Islamic Republic of", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgba7c0bbn0a.json b/data/generated/tld/xn--mgba7c0bbn0a.json index 9c228da5..7e4323d8 100644 --- a/data/generated/tld/xn--mgba7c0bbn0a.json +++ b/data/generated/tld/xn--mgba7c0bbn0a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.xn--mgba7c0bbn0a", + "rdap_server": "https://rdap.nic.xn--mgba7c0bbn0a/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "olayan", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgba7c0bbn0a", @@ -55,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +116,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +124,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +135,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +143,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +154,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,33 +162,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.xn--mgba7c0bbn0a", - "rdap_server": "https://rdap.nic.xn--mgba7c0bbn0a/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "olayan", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--mgbaakc7dvf.json b/data/generated/tld/xn--mgbaakc7dvf.json index 7685b7b6..f76a84aa 100644 --- a/data/generated/tld/xn--mgbaakc7dvf.json +++ b/data/generated/tld/xn--mgbaakc7dvf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -34,7 +34,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "communications" + "icann_translation_en": "communications", + "language_code": "ar", + "language_name_en": "Arabic" } } } diff --git a/data/generated/tld/xn--mgbaam7a8h.json b/data/generated/tld/xn--mgbaam7a8h.json index 058b2bde..408fb55f 100644 --- a/data/generated/tld/xn--mgbaam7a8h.json +++ b/data/generated/tld/xn--mgbaam7a8h.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": ".ae Domain Administration (.aeDA)" } }, + "registry_url": "http://aeda.ae/", + "whois_server": "whois.aeda.net.ae", + "tld_created": "2010-05-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "United Arab Emirates", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.aedns.ae", @@ -78,22 +96,6 @@ } ] } - ], - "registry_url": "http://aeda.ae/", - "whois_server": "whois.aeda.net.ae", - "tld_created": "2010-05-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "United Arab Emirates", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbab2bd.json b/data/generated/tld/xn--mgbab2bd.json index 230d35b5..49188bef 100644 --- a/data/generated/tld/xn--mgbab2bd.json +++ b/data/generated/tld/xn--mgbab2bd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--mgbab2bd", + "rdap_server": "https://rdap.nic.xn--mgbab2bd/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "bazaar", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -107,27 +130,6 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--mgbab2bd", - "rdap_server": "https://rdap.nic.xn--mgbab2bd/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "bazaar", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] } } diff --git a/data/generated/tld/xn--mgbah1a3hjkrd.json b/data/generated/tld/xn--mgbah1a3hjkrd.json index d8fb7385..05bd1b3e 100644 --- a/data/generated/tld/xn--mgbah1a3hjkrd.json +++ b/data/generated/tld/xn--mgbah1a3hjkrd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Faculté des Sciences et Techniques (UNA)" } }, + "registry_url": "http://www.nic.mr", + "whois_server": "whois.nic.mr", + "tld_created": "2017-11-28", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Mauritania", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns-mr.afrinic.net", @@ -102,24 +122,6 @@ } ] } - ], - "registry_url": "http://www.nic.mr", - "whois_server": "whois.nic.mr", - "tld_created": "2017-11-28", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Mauritania", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbai9azgqp6j.json b/data/generated/tld/xn--mgbai9azgqp6j.json index 5287f7e2..547b086f 100644 --- a/data/generated/tld/xn--mgbai9azgqp6j.json +++ b/data/generated/tld/xn--mgbai9azgqp6j.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,16 @@ "tech": "National Telecommunication Corporation" } }, + "tld_created": "2011-02-28", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "country_name_iso": "Pakistan", + "geographic_scope": "country", + "language_code": "ur", + "language_name_en": "Urdu" + }, "nameservers": [ { "hostname": "ns1.ntc.org.pk", @@ -57,14 +67,6 @@ ], "ipv6": [] } - ], - "tld_created": "2011-02-28", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "country_name_iso": "Pakistan", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbayh7gpa.json b/data/generated/tld/xn--mgbayh7gpa.json index 3b9e99fd..21727d01 100644 --- a/data/generated/tld/xn--mgbayh7gpa.json +++ b/data/generated/tld/xn--mgbayh7gpa.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,23 @@ "tech": "Ministry of Digital Economy and Entrepreneurship (MoDEE)" } }, + "registry_url": "https://dns.jo/", + "tld_created": "2010-08-20", + "tld_updated": [ + "2026-02-05" + ], + "annotations": { + "country_name_iso": "Jordan", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.cctld-servers.net.jo", @@ -116,21 +133,6 @@ } ] } - ], - "registry_url": "https://dns.jo/", - "tld_created": "2010-08-20", - "tld_updated": [ - "2026-02-05" - ], - "annotations": { - "country_name_iso": "Jordan", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbb9fbpob.json b/data/generated/tld/xn--mgbb9fbpob.json index 75ecc89d..66f9cf97 100644 --- a/data/generated/tld/xn--mgbb9fbpob.json +++ b/data/generated/tld/xn--mgbb9fbpob.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -34,7 +34,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "mobily" + "icann_translation_en": "mobily", + "language_code": "ar", + "language_name_en": "Arabic" } } } diff --git a/data/generated/tld/xn--mgbbh1a.json b/data/generated/tld/xn--mgbbh1a.json index 40476ad8..a4984b57 100644 --- a/data/generated/tld/xn--mgbbh1a.json +++ b/data/generated/tld/xn--mgbbh1a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbbh1a71e.json b/data/generated/tld/xn--mgbbh1a71e.json index 3dd6c107..0037cbb9 100644 --- a/data/generated/tld/xn--mgbbh1a71e.json +++ b/data/generated/tld/xn--mgbbh1a71e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbc0a9azcg.json b/data/generated/tld/xn--mgbc0a9azcg.json index 9f029b2a..723d3ed3 100644 --- a/data/generated/tld/xn--mgbc0a9azcg.json +++ b/data/generated/tld/xn--mgbc0a9azcg.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,23 @@ "tech": "Agence Nationale de Réglementation des Télécommunications (ANRT)" } }, + "registry_url": "http://www.registre.ma", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Morocco", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.tld.ma", @@ -171,21 +188,6 @@ } ] } - ], - "registry_url": "http://www.registre.ma", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Morocco", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbca7dzdo.json b/data/generated/tld/xn--mgbca7dzdo.json index 3b01c4e5..5ac56189 100644 --- a/data/generated/tld/xn--mgbca7dzdo.json +++ b/data/generated/tld/xn--mgbca7dzdo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.xn--mgbca7dzdo", + "rdap_server": "https://rdap.nic.xn--mgbca7dzdo", + "tld_created": "2016-03-03", + "tld_updated": [ + "2019-11-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "abu dhabi", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -55,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -107,27 +130,6 @@ } ] } - ], - "whois_server": "whois.nic.xn--mgbca7dzdo", - "rdap_server": "https://rdap.nic.xn--mgbca7dzdo", - "tld_created": "2016-03-03", - "tld_updated": [ - "2019-11-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "abu dhabi", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/xn--mgbcpq6gpa1a.json b/data/generated/tld/xn--mgbcpq6gpa1a.json index bb786ccf..6dd86f52 100644 --- a/data/generated/tld/xn--mgbcpq6gpa1a.json +++ b/data/generated/tld/xn--mgbcpq6gpa1a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "CentralNic" } }, + "tld_created": "2019-06-13", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "country_name_iso": "Bahrain", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgbcpq6gpa1a", @@ -97,22 +115,6 @@ } ] } - ], - "tld_created": "2019-06-13", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "country_name_iso": "Bahrain", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgberp4a5d4ar.json b/data/generated/tld/xn--mgberp4a5d4ar.json index e846d304..2910a90f 100644 --- a/data/generated/tld/xn--mgberp4a5d4ar.json +++ b/data/generated/tld/xn--mgberp4a5d4ar.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Communications, Space and Technology Commission" } }, + "registry_url": "http://www.nic.net.sa/", + "whois_server": "whois.nic.net.sa", + "tld_created": "2010-05-05", + "tld_updated": [ + "2026-02-18" + ], + "annotations": { + "country_name_iso": "Saudi Arabia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "c1.dns.sa", @@ -167,8 +185,8 @@ "ipv6": [ { "ip": "2001:16a0:1:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -186,8 +204,8 @@ "ipv6": [ { "ip": "2001:16a0:2:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -211,22 +229,6 @@ } ] } - ], - "registry_url": "http://www.nic.net.sa/", - "whois_server": "whois.nic.net.sa", - "tld_created": "2010-05-05", - "tld_updated": [ - "2026-02-18" - ], - "annotations": { - "country_name_iso": "Saudi Arabia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbgu82a.json b/data/generated/tld/xn--mgbgu82a.json index bef106ab..1ab6e805 100644 --- a/data/generated/tld/xn--mgbgu82a.json +++ b/data/generated/tld/xn--mgbgu82a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbi4ecexp.json b/data/generated/tld/xn--mgbi4ecexp.json index 3ca422fd..a6b77eb0 100644 --- a/data/generated/tld/xn--mgbi4ecexp.json +++ b/data/generated/tld/xn--mgbi4ecexp.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--mgbi4ecexp", + "rdap_server": "https://rdap.nic.xn--mgbi4ecexp/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgbi4ecexp", @@ -55,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +117,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +136,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +155,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,34 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--mgbi4ecexp", - "rdap_server": "https://rdap.nic.xn--mgbi4ecexp/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--mgbpl2fh.json b/data/generated/tld/xn--mgbpl2fh.json index 1903bd34..8bea9f6e 100644 --- a/data/generated/tld/xn--mgbpl2fh.json +++ b/data/generated/tld/xn--mgbpl2fh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,15 +20,32 @@ "tech": "Sudan Internet Society" } }, + "registry_url": "http://domains.sd", + "tld_created": "2012-11-20", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ans1.sis.sd", "ipv4": [ { "ip": "196.29.166.134", - "asn": 33788, - "as_org": "KANARTEL", - "as_country": "SD" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -52,21 +69,6 @@ } ] } - ], - "registry_url": "http://domains.sd", - "tld_created": "2012-11-20", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbt3dhd.json b/data/generated/tld/xn--mgbt3dhd.json index 126c8e1f..1156a740 100644 --- a/data/generated/tld/xn--mgbt3dhd.json +++ b/data/generated/tld/xn--mgbt3dhd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,42 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/xn--mgbt3dhd/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "along", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -55,8 +83,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -183,32 +211,6 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/xn--mgbt3dhd/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "along", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--mgbtx2b.json b/data/generated/tld/xn--mgbtx2b.json index 168ae4c2..78f0e76e 100644 --- a/data/generated/tld/xn--mgbtx2b.json +++ b/data/generated/tld/xn--mgbtx2b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Communications and Media Commission (CMC)" } }, + "registry_url": "http://www.cmc.iq/en/iq.html", + "whois_server": "whois.cmc.iq", + "tld_created": "2014-09-29", + "tld_updated": [ + "2023-12-18" + ], + "annotations": { + "country_name_iso": "Iraq", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns.cmc.iq", @@ -90,24 +110,6 @@ } ] } - ], - "registry_url": "http://www.cmc.iq/en/iq.html", - "whois_server": "whois.cmc.iq", - "tld_created": "2014-09-29", - "tld_updated": [ - "2023-12-18" - ], - "annotations": { - "country_name_iso": "Iraq", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mgbx4cd0ab.json b/data/generated/tld/xn--mgbx4cd0ab.json index 550fd85f..290c113b 100644 --- a/data/generated/tld/xn--mgbx4cd0ab.json +++ b/data/generated/tld/xn--mgbx4cd0ab.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "MYNIC Berhad" } }, + "registry_url": "http://www.mynic.my", + "whois_server": "whois.mynic.my", + "tld_created": "2011-10-22", + "tld_updated": [ + "2026-04-17" + ], + "annotations": { + "country_name_iso": "Malaysia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "ms", + "language_name_en": "Malay" + }, "nameservers": [ { "hostname": "a.mynic.centralnic-dns.com", @@ -116,22 +134,6 @@ } ] } - ], - "registry_url": "http://www.mynic.my", - "whois_server": "whois.mynic.my", - "tld_created": "2011-10-22", - "tld_updated": [ - "2026-04-17" - ], - "annotations": { - "country_name_iso": "Malaysia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mix891f.json b/data/generated/tld/xn--mix891f.json index a991040f..fbc82283 100644 --- a/data/generated/tld/xn--mix891f.json +++ b/data/generated/tld/xn--mix891f.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Macao Network Information Centre (MONIC) - HNET Asia" } }, + "registry_url": "https://www.monic.mo", + "whois_server": "whois.monic.mo", + "tld_created": "2015-04-21", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Macao", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" + }, "nameservers": [ { "hostname": "a.monic.mo", @@ -154,22 +172,6 @@ } ] } - ], - "registry_url": "https://www.monic.mo", - "whois_server": "whois.monic.mo", - "tld_created": "2015-04-21", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Macao", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--mk1bu44c.json b/data/generated/tld/xn--mk1bu44c.json index 5dc91c55..c10d13d5 100644 --- a/data/generated/tld/xn--mk1bu44c.json +++ b/data/generated/tld/xn--mk1bu44c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--mk1bu44c", + "rdap_server": "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--mk1bu44c", - "rdap_server": "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--mxtq1m.json b/data/generated/tld/xn--mxtq1m.json index d8584df5..ceb87dc9 100644 --- a/data/generated/tld/xn--mxtq1m.json +++ b/data/generated/tld/xn--mxtq1m.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,23 @@ "date_removed": null } }, + "registry_url": "http://www.netc.tw", + "whois_server": "whois.nic.xn--mxtq1m", + "rdap_server": "https://rdap.twnic.tw/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "government", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--mxtq1m", @@ -107,21 +124,6 @@ } ] } - ], - "registry_url": "http://www.netc.tw", - "whois_server": "whois.nic.xn--mxtq1m", - "rdap_server": "https://rdap.twnic.tw/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "government" - } + ] } } diff --git a/data/generated/tld/xn--ngbc5azd.json b/data/generated/tld/xn--ngbc5azd.json index e69565a8..a9b33d9b 100644 --- a/data/generated/tld/xn--ngbc5azd.json +++ b/data/generated/tld/xn--ngbc5azd.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,33 @@ "date_removed": null } }, + "registry_url": "http://www.dotshabaka.com", + "whois_server": "whois.nic.xn--ngbc5azd", + "rdap_server": "https://rdap.nic.xn--ngbc5azd/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "web", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--ngbc5azd", @@ -55,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.3", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +120,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +128,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +139,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +147,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +158,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,37 +166,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.dotshabaka.com", - "whois_server": "whois.nic.xn--ngbc5azd", - "rdap_server": "https://rdap.nic.xn--ngbc5azd/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "web", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--ngbe9e0a.json b/data/generated/tld/xn--ngbe9e0a.json index 6c1c366e..a0651987 100644 --- a/data/generated/tld/xn--ngbe9e0a.json +++ b/data/generated/tld/xn--ngbe9e0a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,31 @@ "date_removed": null } }, + "registry_url": "http://kfh.com", + "whois_server": "whois.nic.xn--ngbe9e0a", + "rdap_server": "https://rdap.registry.kfh/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2026-04-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "your own house", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -107,29 +132,6 @@ } ] } - ], - "registry_url": "http://kfh.com", - "whois_server": "whois.nic.xn--ngbe9e0a", - "rdap_server": "https://rdap.registry.kfh/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2026-04-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "your own house", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/xn--ngbrx.json b/data/generated/tld/xn--ngbrx.json index 2943ef76..8a385bf1 100644 --- a/data/generated/tld/xn--ngbrx.json +++ b/data/generated/tld/xn--ngbrx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.xn--ngbrx", + "rdap_server": "https://rdap.nic.xn--ngbrx/", + "tld_created": "2017-05-11", + "tld_updated": [ + "2020-05-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "arab", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "arab", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -55,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -107,26 +130,6 @@ } ] } - ], - "whois_server": "whois.nic.xn--ngbrx", - "rdap_server": "https://rdap.nic.xn--ngbrx/", - "tld_created": "2017-05-11", - "tld_updated": [ - "2020-05-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "arab", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--node.json b/data/generated/tld/xn--node.json index 334d9142..59f358de 100644 --- a/data/generated/tld/xn--node.json +++ b/data/generated/tld/xn--node.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,23 @@ "tech": "Cloud9 LTD" } }, + "registry_url": "http://xn--lodaehvb5cdik4g.xn--node", + "tld_created": "2011-02-11", + "tld_updated": [ + "2024-06-26" + ], + "annotations": { + "country_name_iso": "Georgia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ka", + "language_name_en": "Georgian" + }, "nameservers": [ { "hostname": "xn--node.ns.anycast.pch.net", @@ -59,21 +76,6 @@ } ] } - ], - "registry_url": "http://xn--lodaehvb5cdik4g.xn--node", - "tld_created": "2011-02-11", - "tld_updated": [ - "2024-06-26" - ], - "annotations": { - "country_name_iso": "Georgia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--nqv7f.json b/data/generated/tld/xn--nqv7f.json index 35f7c77e..c5c85c0e 100644 --- a/data/generated/tld/xn--nqv7f.json +++ b/data/generated/tld/xn--nqv7f.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--nqv7f", + "whois_server": "whois.nic.xn--nqv7f", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--nqv7f", @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://nic.xn--nqv7f", - "whois_server": "whois.nic.xn--nqv7f", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--nqv7fs00ema.json b/data/generated/tld/xn--nqv7fs00ema.json index 67720a16..5729ba91 100644 --- a/data/generated/tld/xn--nqv7fs00ema.json +++ b/data/generated/tld/xn--nqv7fs00ema.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--nqv7fs00ema", + "whois_server": "whois.nic.xn--nqv7fs00ema", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--nqv7fs00ema", @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://nic.xn--nqv7fs00ema", - "whois_server": "whois.nic.xn--nqv7fs00ema", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--nyqy26a.json b/data/generated/tld/xn--nyqy26a.json index 5a1ce363..92773658 100644 --- a/data/generated/tld/xn--nyqy26a.json +++ b/data/generated/tld/xn--nyqy26a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,36 @@ "date_removed": null } }, + "registry_url": "http://www.stabletone.com", + "rdap_server": "https://rdap.teleinfo.cn/xn--nyqy26a/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-05-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "healthy", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,26 +115,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.stabletone.com", - "rdap_server": "https://rdap.teleinfo.cn/xn--nyqy26a/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-05-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "healthy", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--o3cw4h.json b/data/generated/tld/xn--o3cw4h.json index 70c31153..c8534d2f 100644 --- a/data/generated/tld/xn--o3cw4h.json +++ b/data/generated/tld/xn--o3cw4h.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Thai Network Information Center Foundation" } }, + "registry_url": "http://www.thnic.co.th", + "whois_server": "whois.thnic.co.th", + "rdap_server": "https://rdap.thains.co.th", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Thailand", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "th", + "language_name_en": "Thai" + }, "nameservers": [ { "hostname": "a.thains.co.th", @@ -109,24 +129,6 @@ } ] } - ], - "registry_url": "http://www.thnic.co.th", - "whois_server": "whois.thnic.co.th", - "rdap_server": "https://rdap.thains.co.th", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Thailand", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--ogbpf8fl.json b/data/generated/tld/xn--ogbpf8fl.json index 5b23c910..adec97e0 100644 --- a/data/generated/tld/xn--ogbpf8fl.json +++ b/data/generated/tld/xn--ogbpf8fl.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "National Agency for Network Services (NANS)" } }, + "registry_url": "http://tld.sy", + "whois_server": "whois.tld.sy", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Syrian Arab Republic", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.tld.sy", @@ -71,22 +89,6 @@ } ] } - ], - "registry_url": "http://tld.sy", - "whois_server": "whois.tld.sy", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Syrian Arab Republic", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--otu796d.json b/data/generated/tld/xn--otu796d.json index 05c5a2f5..288af42a 100644 --- a/data/generated/tld/xn--otu796d.json +++ b/data/generated/tld/xn--otu796d.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--otu796d", + "tld_created": "2017-12-21", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "recruitment", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,25 +148,6 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--otu796d", - "tld_created": "2017-12-21", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "recruitment", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--p1acf.json b/data/generated/tld/xn--p1acf.json index 0ed0ae3a..7bf67f77 100644 --- a/data/generated/tld/xn--p1acf.json +++ b/data/generated/tld/xn--p1acf.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://rusnames.ru/", + "rdap_server": "https://rdap.nic.xn--p1acf/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-12-04" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "russian speaking community", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -88,27 +111,6 @@ } ] } - ], - "registry_url": "http://rusnames.ru/", - "rdap_server": "https://rdap.nic.xn--p1acf/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-12-04" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "russian speaking community", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] } } diff --git a/data/generated/tld/xn--p1ai.json b/data/generated/tld/xn--p1ai.json index 34f4a865..7d5f5dd4 100644 --- a/data/generated/tld/xn--p1ai.json +++ b/data/generated/tld/xn--p1ai.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,18 @@ "tech": "Technical Center of Internet" } }, + "registry_url": "http://cctld.ru/en", + "whois_server": "whois.tcinet.ru", + "tld_created": "2010-05-12", + "tld_updated": [ + "2025-10-22" + ], + "annotations": { + "country_name_iso": "Russian Federation", + "geographic_scope": "country", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -116,16 +128,6 @@ } ] } - ], - "registry_url": "http://cctld.ru/en", - "whois_server": "whois.tcinet.ru", - "tld_created": "2010-05-12", - "tld_updated": [ - "2025-10-22" - ], - "annotations": { - "country_name_iso": "Russian Federation", - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--pbt977c.json b/data/generated/tld/xn--pbt977c.json index 45d2252c..cd31e82b 100644 --- a/data/generated/tld/xn--pbt977c.json +++ b/data/generated/tld/xn--pbt977c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-24T22:45:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -34,7 +34,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "jewelry" + "icann_translation_en": "jewelry", + "language_code": "zh", + "language_name_en": "Chinese" } } } diff --git a/data/generated/tld/xn--pgbs0dh.json b/data/generated/tld/xn--pgbs0dh.json index 7151be0e..e8ae5d44 100644 --- a/data/generated/tld/xn--pgbs0dh.json +++ b/data/generated/tld/xn--pgbs0dh.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Agence Tunisienne d'Internet" } }, + "registry_url": "http://www.ati.tn", + "whois_server": "whois.ati.tn", + "tld_created": "2010-08-19", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Tunisia", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns-tn.afrinic.net", @@ -135,24 +155,6 @@ } ] } - ], - "registry_url": "http://www.ati.tn", - "whois_server": "whois.ati.tn", - "tld_created": "2010-08-19", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Tunisia", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--pssy2u.json b/data/generated/tld/xn--pssy2u.json index 43fda8b3..c389fe99 100644 --- a/data/generated/tld/xn--pssy2u.json +++ b/data/generated/tld/xn--pssy2u.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--pssy2u", + "rdap_server": "https://tld-rdap.verisign.com/xn--pssy2u/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--pssy2u", - "rdap_server": "https://tld-rdap.verisign.com/xn--pssy2u/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--q7ce6a.json b/data/generated/tld/xn--q7ce6a.json index f7140fe7..f7bb1107 100644 --- a/data/generated/tld/xn--q7ce6a.json +++ b/data/generated/tld/xn--q7ce6a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Lao National Internet Center (LANIC)" } }, + "registry_url": "https://www.la", + "whois_server": "whois.nic.la", + "tld_created": "2019-06-10", + "tld_updated": [ + "2023-03-17" + ], + "annotations": { + "country_name_iso": "Lao People's Democratic Republic", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "lo", + "language_name_en": "Lao" + }, "nameservers": [ { "hostname": "a.xn--q7ce6a.centralnic-dns.com", @@ -97,22 +115,6 @@ } ] } - ], - "registry_url": "https://www.la", - "whois_server": "whois.nic.la", - "tld_created": "2019-06-10", - "tld_updated": [ - "2023-03-17" - ], - "annotations": { - "country_name_iso": "Lao People's Democratic Republic", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--q9jyb4c.json b/data/generated/tld/xn--q9jyb4c.json index fe049d99..4435cf63 100644 --- a/data/generated/tld/xn--q9jyb4c.json +++ b/data/generated/tld/xn--q9jyb4c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "everyone", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -126,34 +156,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "everyone", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/xn--qcka1pmc.json b/data/generated/tld/xn--qcka1pmc.json index 4e1e9863..74292c88 100644 --- a/data/generated/tld/xn--qcka1pmc.json +++ b/data/generated/tld/xn--qcka1pmc.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "google", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -126,34 +156,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "google", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/xn--qxa6a.json b/data/generated/tld/xn--qxa6a.json index 12bdae0f..2e81cb1f 100644 --- a/data/generated/tld/xn--qxa6a.json +++ b/data/generated/tld/xn--qxa6a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "EURid vzw" } }, + "registry_url": "https://www.registry.eu", + "whois_server": "whois.eu", + "tld_created": "2019-07-18", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational", + "language_code": "el", + "language_name_en": "Greek" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -109,24 +129,6 @@ } ] } - ], - "registry_url": "https://www.registry.eu", - "whois_server": "whois.eu", - "tld_created": "2019-07-18", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--qxam.json b/data/generated/tld/xn--qxam.json index afdb9034..01568218 100644 --- a/data/generated/tld/xn--qxam.json +++ b/data/generated/tld/xn--qxam.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,25 @@ "tech": "ICS-FORTH GR" } }, + "registry_url": "http://www.gr", + "tld_created": "2015-05-06", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Greece", + "as_org_aliases": [ + "Community DNS", + "DENIC" + ], + "as_org_slugs": [ + "community-dns", + "denic" + ], + "geographic_scope": "country", + "language_code": "el", + "language_name_en": "Greek" + }, "nameservers": [ { "hostname": "estia.ics.forth.gr", @@ -102,23 +121,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.gr", - "tld_created": "2015-05-06", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Greece", - "as_org_aliases": [ - "Community DNS", - "DENIC" - ], - "as_org_slugs": [ - "community-dns", - "denic" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--rhqv96g.json b/data/generated/tld/xn--rhqv96g.json index c0cc6794..fa4f587a 100644 --- a/data/generated/tld/xn--rhqv96g.json +++ b/data/generated/tld/xn--rhqv96g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,36 @@ "date_removed": null } }, + "registry_url": "http://www.stabletone.com", + "rdap_server": "https://rdap.teleinfo.cn/xn--rhqv96g/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-04-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "world", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,26 +115,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.stabletone.com", - "rdap_server": "https://rdap.teleinfo.cn/xn--rhqv96g/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-04-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "world", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--rovu88b.json b/data/generated/tld/xn--rovu88b.json index 567d409e..9f53c921 100644 --- a/data/generated/tld/xn--rovu88b.json +++ b/data/generated/tld/xn--rovu88b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,35 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--rovu88b", + "whois_server": "whois.nic.xn--rovu88b", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "book", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--rovu88b", @@ -145,33 +174,6 @@ } ] } - ], - "registry_url": "http://www.nic.xn--rovu88b", - "whois_server": "whois.nic.xn--rovu88b", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "book", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--rvc1e0am3e.json b/data/generated/tld/xn--rvc1e0am3e.json index d2c12739..097edc07 100644 --- a/data/generated/tld/xn--rvc1e0am3e.json +++ b/data/generated/tld/xn--rvc1e0am3e.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ml", + "language_name_en": "Malayalam" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--s9brj9c.json b/data/generated/tld/xn--s9brj9c.json index 7f44688b..df5b9f8a 100644 --- a/data/generated/tld/xn--s9brj9c.json +++ b/data/generated/tld/xn--s9brj9c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "pa", + "language_name_en": "Punjabi" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--ses554g.json b/data/generated/tld/xn--ses554g.json index bb8d31dd..e2221b85 100644 --- a/data/generated/tld/xn--ses554g.json +++ b/data/generated/tld/xn--ses554g.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--ses554g/", + "whois_server": "whois.nic.xn--ses554g", + "rdap_server": "https://rdap.zdnsgtld.com/xn--ses554g", + "tld_created": "2014-03-13", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "web address", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -127,27 +150,6 @@ } ] } - ], - "registry_url": "http://nic.xn--ses554g/", - "whois_server": "whois.nic.xn--ses554g", - "rdap_server": "https://rdap.zdnsgtld.com/xn--ses554g", - "tld_created": "2014-03-13", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "web address", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] } } diff --git a/data/generated/tld/xn--t60b56a.json b/data/generated/tld/xn--t60b56a.json index 7d38623c..88a2e167 100644 --- a/data/generated/tld/xn--t60b56a.json +++ b/data/generated/tld/xn--t60b56a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--t60b56a", + "rdap_server": "https://tld-rdap.verisign.com/xn--t60b56a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--t60b56a", - "rdap_server": "https://tld-rdap.verisign.com/xn--t60b56a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--tckwe.json b/data/generated/tld/xn--tckwe.json index bcb91f6f..1d870030 100644 --- a/data/generated/tld/xn--tckwe.json +++ b/data/generated/tld/xn--tckwe.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,22 +30,53 @@ "date_removed": null } }, + "registry_url": "https://www.verisigninc.com", + "whois_server": "whois.nic.xn--tckwe", + "rdap_server": "https://tld-rdap.verisign.com/xn--tckwe/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -74,16 +105,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -107,35 +138,6 @@ } ] } - ], - "registry_url": "https://www.verisigninc.com", - "whois_server": "whois.nic.xn--tckwe", - "rdap_server": "https://tld-rdap.verisign.com/xn--tckwe/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] } } diff --git a/data/generated/tld/xn--tiq49xqyj.json b/data/generated/tld/xn--tiq49xqyj.json index aacd85ae..c3cc9aba 100644 --- a/data/generated/tld/xn--tiq49xqyj.json +++ b/data/generated/tld/xn--tiq49xqyj.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--tiq49xqyj", + "rdap_server": "https://rdap.nic.xn--tiq49xqyj/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--tiq49xqyj", @@ -55,7 +79,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93,7 +117,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101,7 +125,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112,7 +136,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120,7 +144,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131,7 +155,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -139,34 +163,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--tiq49xqyj", - "rdap_server": "https://rdap.nic.xn--tiq49xqyj/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xn--unup4y.json b/data/generated/tld/xn--unup4y.json index a9f5752d..c2f841f4 100644 --- a/data/generated/tld/xn--unup4y.json +++ b/data/generated/tld/xn--unup4y.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "game", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--unup4y", @@ -145,34 +175,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "game", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--vermgensberater-ctb.json b/data/generated/tld/xn--vermgensberater-ctb.json index 0f121cea..d2f4164b 100644 --- a/data/generated/tld/xn--vermgensberater-ctb.json +++ b/data/generated/tld/xn--vermgensberater-ctb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,31 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.xn--vermgensberater-ctb", + "rdap_server": "https://rdap.centralnic.com/xn--vermgensberater-ctb", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "financial adviser", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "de", + "language_name_en": "German" + }, "nameservers": [ { "hostname": "a.nic.xn--vermgensberater-ctb", @@ -107,29 +132,6 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.xn--vermgensberater-ctb", - "rdap_server": "https://rdap.centralnic.com/xn--vermgensberater-ctb", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "financial adviser", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--vermgensberatung-pwb.json b/data/generated/tld/xn--vermgensberatung-pwb.json index f0e9bd79..05d8d9c5 100644 --- a/data/generated/tld/xn--vermgensberatung-pwb.json +++ b/data/generated/tld/xn--vermgensberatung-pwb.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,31 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.xn--vermgensberatung-pwb", + "rdap_server": "https://rdap.centralnic.com/xn--vermgensberatung-pwb", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "financial advice", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "de", + "language_name_en": "German" + }, "nameservers": [ { "hostname": "a.nic.xn--vermgensberatung-pwb", @@ -107,29 +132,6 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.xn--vermgensberatung-pwb", - "rdap_server": "https://rdap.centralnic.com/xn--vermgensberatung-pwb", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "financial advice", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--vhquv.json b/data/generated/tld/xn--vhquv.json index 3b4c6c46..90ea4b5e 100644 --- a/data/generated/tld/xn--vhquv.json +++ b/data/generated/tld/xn--vhquv.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "enterprise", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--vhquv", @@ -145,34 +175,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "enterprise", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--vuq861b.json b/data/generated/tld/xn--vuq861b.json index 2b012d29..fdb11513 100644 --- a/data/generated/tld/xn--vuq861b.json +++ b/data/generated/tld/xn--vuq861b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,14 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "knowledge", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -93,27 +116,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "knowledge", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/xn--w4r85el8fhu5dnra.json b/data/generated/tld/xn--w4r85el8fhu5dnra.json index f20b42ed..02ae38a9 100644 --- a/data/generated/tld/xn--w4r85el8fhu5dnra.json +++ b/data/generated/tld/xn--w4r85el8fhu5dnra.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,37 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.xn--w4r85el8fhu5dnra", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "kerry hotels", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--w4r85el8fhu5dnra", @@ -145,35 +176,6 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.xn--w4r85el8fhu5dnra", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "kerry hotels", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--w4rs40l.json b/data/generated/tld/xn--w4rs40l.json index 54a37e5a..675683ed 100644 --- a/data/generated/tld/xn--w4rs40l.json +++ b/data/generated/tld/xn--w4rs40l.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,38 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.xn--w4rs40l", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "kerry", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--w4rs40l", @@ -145,36 +177,6 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.xn--w4rs40l", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "kerry", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/xn--wgbh1c.json b/data/generated/tld/xn--wgbh1c.json index 3d3694ba..5f1b7079 100644 --- a/data/generated/tld/xn--wgbh1c.json +++ b/data/generated/tld/xn--wgbh1c.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,22 @@ "tech": "National Telecommunication Regulatory Authority - NTRA" } }, + "tld_created": "2010-05-05", + "tld_updated": [ + "2023-07-25" + ], + "annotations": { + "country_name_iso": "Egypt", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.dotmasr.eg", @@ -69,20 +85,6 @@ ], "ipv6": [] } - ], - "tld_created": "2010-05-05", - "tld_updated": [ - "2023-07-25" - ], - "annotations": { - "country_name_iso": "Egypt", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--wgbl6a.json b/data/generated/tld/xn--wgbl6a.json index cd547bb5..bf50791f 100644 --- a/data/generated/tld/xn--wgbl6a.json +++ b/data/generated/tld/xn--wgbl6a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "Communications Regulatory Authority" } }, + "registry_url": "https://www.cra.gov.qa/", + "whois_server": "whois.registry.qa", + "tld_created": "2010-12-24", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Qatar", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.registry.qa", @@ -105,7 +125,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -157,24 +177,6 @@ } ] } - ], - "registry_url": "https://www.cra.gov.qa/", - "whois_server": "whois.registry.qa", - "tld_created": "2010-12-24", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Qatar", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--xhq521b.json b/data/generated/tld/xn--xhq521b.json index 2a76f3d3..d97e56b1 100644 --- a/data/generated/tld/xn--xhq521b.json +++ b/data/generated/tld/xn--xhq521b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,29 @@ "date_removed": null } }, + "registry_url": "http://www.yu-wei.cn/", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "guangdong", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ta.ngtld.cn", @@ -55,7 +78,7 @@ "ipv4": [ { "ip": "42.83.131.1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -93,7 +116,7 @@ "ipv4": [ { "ip": "42.83.133.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -112,27 +135,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.yu-wei.cn/", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "guangdong", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] } } diff --git a/data/generated/tld/xn--xkc2al3hye2a.json b/data/generated/tld/xn--xkc2al3hye2a.json index 70946c4e..54315de1 100644 --- a/data/generated/tld/xn--xkc2al3hye2a.json +++ b/data/generated/tld/xn--xkc2al3hye2a.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,25 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-08-01" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "h.nic.lk", @@ -128,23 +147,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.domains.lk", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-08-01" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--xkc2dl3a5ee0h.json b/data/generated/tld/xn--xkc2dl3a5ee0h.json index 1d58ff72..4302386a 100644 --- a/data/generated/tld/xn--xkc2dl3a5ee0h.json +++ b/data/generated/tld/xn--xkc2dl3a5ee0h.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97,30 +123,6 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--y9a3aq.json b/data/generated/tld/xn--y9a3aq.json index 20e5cacb..81242cf8 100644 --- a/data/generated/tld/xn--y9a3aq.json +++ b/data/generated/tld/xn--y9a3aq.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,26 @@ "tech": "\"Internet Society\" Non-governmental Organization" } }, + "registry_url": "https://www.amnic.net/", + "whois_server": "whois.amnic.net", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-11-25" + ], + "annotations": { + "country_name_iso": "Armenia", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "hy", + "language_name_en": "Armenian" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -97,24 +117,6 @@ } ] } - ], - "registry_url": "https://www.amnic.net/", - "whois_server": "whois.amnic.net", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-11-25" - ], - "annotations": { - "country_name_iso": "Armenia", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--yfro4i67o.json b/data/generated/tld/xn--yfro4i67o.json index b2276400..5bd16d99 100644 --- a/data/generated/tld/xn--yfro4i67o.json +++ b/data/generated/tld/xn--yfro4i67o.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T06:33:22Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,30 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd" } }, + "registry_url": "http://www.sgnic.sg/", + "whois_server": "whois.zh.sgnic.sg", + "rdap_server": "https://rdap.zh.sgnic.sg/rdap/", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hans", + "language_name_en": "Chinese (Simplified)" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -116,28 +140,6 @@ } ] } - ], - "registry_url": "http://www.sgnic.sg/", - "whois_server": "whois.zh.sgnic.sg", - "rdap_server": "https://rdap.zh.sgnic.sg/rdap/", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--ygbi2ammx.json b/data/generated/tld/xn--ygbi2ammx.json index b7430c8b..5624b372 100644 --- a/data/generated/tld/xn--ygbi2ammx.json +++ b/data/generated/tld/xn--ygbi2ammx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -20,6 +20,24 @@ "tech": "Palestinian National Internet Naming Authority (PNINA)" } }, + "registry_url": "http://www.pnina.ps", + "whois_server": "whois.pnina.ps", + "tld_created": "2010-08-20", + "tld_updated": [ + "2024-02-05" + ], + "annotations": { + "country_name_iso": "Palestine, State of", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "dns1.gov.ps", @@ -120,28 +138,12 @@ "ipv6": [ { "ip": "2001:67c:e0::105", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } - ], - "registry_url": "http://www.pnina.ps", - "whois_server": "whois.pnina.ps", - "tld_created": "2010-08-20", - "tld_updated": [ - "2024-02-05" - ], - "annotations": { - "country_name_iso": "Palestine, State of", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/xn--zckzah.json b/data/generated/tld/xn--zckzah.json index 219815ee..6dcc3e9b 100644 --- a/data/generated/tld/xn--zckzah.json +++ b/data/generated/tld/xn--zckzah.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-15T19:11:17Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -15,6 +15,10 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ja", + "language_name_en": "Japanese" + } } } diff --git a/data/generated/tld/xn--zfr164b.json b/data/generated/tld/xn--zfr164b.json index 5f1480e7..f8c275af 100644 --- a/data/generated/tld/xn--zfr164b.json +++ b/data/generated/tld/xn--zfr164b.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T04:50:15Z", + "publication": "2026-05-26T06:02:29Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -30,6 +30,24 @@ "date_removed": null } }, + "registry_url": "http://www.conac.cn", + "whois_server": "whois.conac.cn", + "rdap_server": "https://rdap.conac.cn", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "government", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.conac.cn", @@ -112,22 +130,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.conac.cn", - "whois_server": "whois.conac.cn", - "rdap_server": "https://rdap.conac.cn", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "government" - } + ] } } diff --git a/data/generated/tld/xxx.json b/data/generated/tld/xxx.json index 28540eb1..2b12bb15 100644 --- a/data/generated/tld/xxx.json +++ b/data/generated/tld/xxx.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.xxx", + "whois_server": "whois.nic.xxx", + "rdap_server": "https://rdap.nic.xxx/", + "tld_created": "2011-04-15", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.xxx", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.xxx", - "whois_server": "whois.nic.xxx", - "rdap_server": "https://rdap.nic.xxx/", - "tld_created": "2011-04-15", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/xyz.json b/data/generated/tld/xyz.json index 1cd0ee1b..31f92f4e 100644 --- a/data/generated/tld/xyz.json +++ b/data/generated/tld/xyz.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://nic.xyz", + "whois_server": "whois.nic.xyz", + "rdap_server": "https://rdap.centralnic.com/xyz", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "generationxyz.nic.xyz", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "https://nic.xyz", - "whois_server": "whois.nic.xyz", - "rdap_server": "https://rdap.centralnic.com/xyz", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/yachts.json b/data/generated/tld/yachts.json index cd72d558..fcabd42a 100644 --- a/data/generated/tld/yachts.json +++ b/data/generated/tld/yachts.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.yachts", + "whois_server": "whois.nic.yachts", + "rdap_server": "https://rdap.centralnic.com/yachts/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.yachts", @@ -105,34 +133,6 @@ } ] } - ], - "registry_url": "http://nic.yachts", - "whois_server": "whois.nic.yachts", - "rdap_server": "https://rdap.centralnic.com/yachts/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] } } diff --git a/data/generated/tld/yahoo.json b/data/generated/tld/yahoo.json index 1e9846fc..f40e741d 100644 --- a/data/generated/tld/yahoo.json +++ b/data/generated/tld/yahoo.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-28T02:11:16Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://nic.yahoo", + "whois_server": "whois.nic.yahoo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2026-05-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.yahoo", @@ -143,29 +166,6 @@ } ] } - ], - "registry_url": "http://nic.yahoo", - "whois_server": "whois.nic.yahoo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2026-05-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/yamaxun.json b/data/generated/tld/yamaxun.json index d4256c27..f5803867 100644 --- a/data/generated/tld/yamaxun.json +++ b/data/generated/tld/yamaxun.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.yamaxun", + "rdap_server": "https://rdap.nominet.uk/yamaxun/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.yamaxun", "ipv4": [ { "ip": "213.248.218.88", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.88", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.yamaxun", - "rdap_server": "https://rdap.nominet.uk/yamaxun/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/yandex.json b/data/generated/tld/yandex.json index 9adfada8..810c762a 100644 --- a/data/generated/tld/yandex.json +++ b/data/generated/tld/yandex.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.yandex.ru/", + "whois_server": "whois.nic.yandex", + "rdap_server": "https://rdap.nic.yandex/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -105,31 +130,6 @@ } ] } - ], - "registry_url": "http://www.yandex.ru/", - "whois_server": "whois.nic.yandex", - "rdap_server": "https://rdap.nic.yandex/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] } } diff --git a/data/generated/tld/ye.json b/data/generated/tld/ye.json index 64e83d53..d5813c3d 100644 --- a/data/generated/tld/ye.json +++ b/data/generated/tld/ye.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,25 @@ "tech": "TeleYemen" } }, + "whois_server": "whois.y.net.ye", + "rdap_server": "https://rdap.y.net.ye/", + "tld_created": "1996-08-19", + "tld_updated": [ + "2025-03-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Yemen", + "as_org_aliases": [ + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.tld.ye", @@ -113,25 +132,6 @@ } ] } - ], - "whois_server": "whois.y.net.ye", - "rdap_server": "https://rdap.y.net.ye/", - "tld_created": "1996-08-19", - "tld_updated": [ - "2025-03-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Yemen", - "as_org_aliases": [ - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "knipp-medien", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/yodobashi.json b/data/generated/tld/yodobashi.json index a245d243..4812a90a 100644 --- a/data/generated/tld/yodobashi.json +++ b/data/generated/tld/yodobashi.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +78,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,31 +123,6 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/yoga.json b/data/generated/tld/yoga.json index 0c5f18d4..4fc8e58b 100644 --- a/data/generated/tld/yoga.json +++ b/data/generated/tld/yoga.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://nic.yoga/", + "whois_server": "whois.nic.yoga", + "rdap_server": "https://rdap.nic.yoga/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.yoga", @@ -53,7 +81,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -91,7 +119,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99,7 +127,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110,7 +138,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118,7 +146,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129,7 +157,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137,40 +165,12 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.yoga/", - "whois_server": "whois.nic.yoga", - "rdap_server": "https://rdap.nic.yoga/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/yokohama.json b/data/generated/tld/yokohama.json index 224bde25..b1778922 100644 --- a/data/generated/tld/yokohama.json +++ b/data/generated/tld/yokohama.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.yokohama", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-03-27", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -53,7 +82,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -98,35 +127,6 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.yokohama", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-03-27", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/you.json b/data/generated/tld/you.json index b10121c8..71c3cea1 100644 --- a/data/generated/tld/you.json +++ b/data/generated/tld/you.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.you", + "rdap_server": "https://rdap.nominet.uk/you/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.you", "ipv4": [ { "ip": "213.248.218.89", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +82,8 @@ "ipv4": [ { "ip": "103.49.82.89", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,35 +210,6 @@ } ] } - ], - "registry_url": "http://www.nic.you", - "rdap_server": "https://rdap.nominet.uk/you/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/youtube.json b/data/generated/tld/youtube.json index 70aeda65..106b8457 100644 --- a/data/generated/tld/youtube.json +++ b/data/generated/tld/youtube.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,34 +152,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/yt.json b/data/generated/tld/yt.json index a230d1c6..e6b6192a 100644 --- a/data/generated/tld/yt.json +++ b/data/generated/tld/yt.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.yt", + "whois_server": "whois.nic.yt", + "rdap_server": "https://rdap.nic.yt/", + "tld_created": "1997-11-17", + "tld_updated": [ + "2026-03-23" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Mayotte", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -75,32 +101,6 @@ } ] } - ], - "registry_url": "http://www.nic.yt", - "whois_server": "whois.nic.yt", - "rdap_server": "https://rdap.nic.yt/", - "tld_created": "1997-11-17", - "tld_updated": [ - "2026-03-23" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Mayotte", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/yun.json b/data/generated/tld/yun.json index 04f4bb66..25c60aa3 100644 --- a/data/generated/tld/yun.json +++ b/data/generated/tld/yun.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -91,26 +111,6 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] } } diff --git a/data/generated/tld/za.json b/data/generated/tld/za.json index 50924749..28e8b2d3 100644 --- a/data/generated/tld/za.json +++ b/data/generated/tld/za.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,21 @@ "tech": "ZA Domain Name Authority" } }, + "registry_url": "http://www.zadna.org.za/", + "tld_created": "1990-11-07", + "tld_updated": [ + "2025-04-16" + ], + "annotations": { + "country_name_iso": "South Africa", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nsza.is.co.za", @@ -68,21 +83,6 @@ } ] } - ], - "registry_url": "http://www.zadna.org.za/", - "tld_created": "1990-11-07", - "tld_updated": [ - "2025-04-16" - ], - "annotations": { - "country_name_iso": "South Africa", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/zappos.json b/data/generated/tld/zappos.json index 93bb7bb3..c9655247 100644 --- a/data/generated/tld/zappos.json +++ b/data/generated/tld/zappos.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-26T03:41:36Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,14 +28,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.zappos", + "rdap_server": "https://rdap.nominet.uk/zappos/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.zappos", "ipv4": [ { "ip": "213.248.218.52", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -53,8 +83,8 @@ "ipv4": [ { "ip": "103.49.82.52", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181,36 +211,6 @@ } ] } - ], - "registry_url": "http://www.nic.zappos", - "rdap_server": "https://rdap.nominet.uk/zappos/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] } } diff --git a/data/generated/tld/zara.json b/data/generated/tld/zara.json index 225e9f58..af0cfeac 100644 --- a/data/generated/tld/zara.json +++ b/data/generated/tld/zara.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "http://www.zara.com", + "whois_server": "whois.nic.zara", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2023-08-04" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.zara", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "http://www.zara.com", - "whois_server": "whois.nic.zara", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2023-08-04" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/zero.json b/data/generated/tld/zero.json index 80d03fe7..f534c935 100644 --- a/data/generated/tld/zero.json +++ b/data/generated/tld/zero.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.zero", + "whois_server": "whois.nic.zero", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.zero", @@ -143,34 +171,6 @@ } ] } - ], - "registry_url": "http://www.nic.zero", - "whois_server": "whois.nic.zero", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/zip.json b/data/generated/tld/zip.json index cb5b273d..b21dd8d1 100644 --- a/data/generated/tld/zip.json +++ b/data/generated/tld/zip.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -124,33 +151,6 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] } } diff --git a/data/generated/tld/zm.json b/data/generated/tld/zm.json index 16ddc52d..975915d3 100644 --- a/data/generated/tld/zm.json +++ b/data/generated/tld/zm.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,24 @@ "tech": "Zambia Information and Communications Technology Authority (ZICTA)" } }, + "registry_url": "https://registry.zicta.zm", + "whois_server": "whois.zicta.zm", + "rdap_server": "https://rdap.nic.zm", + "tld_created": "1994-03-25", + "tld_updated": [ + "2024-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Zambia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gransy.nic.zm", @@ -74,24 +92,6 @@ } ] } - ], - "registry_url": "https://registry.zicta.zm", - "whois_server": "whois.zicta.zm", - "rdap_server": "https://rdap.nic.zm", - "tld_created": "1994-03-25", - "tld_updated": [ - "2024-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Zambia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tld/zone.json b/data/generated/tld/zone.json index 27098139..cf9da7b4 100644 --- a/data/generated/tld/zone.json +++ b/data/generated/tld/zone.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.zone", @@ -143,33 +170,6 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] } } diff --git a/data/generated/tld/zuerich.json b/data/generated/tld/zuerich.json index aef7fd19..0d0d7d5b 100644 --- a/data/generated/tld/zuerich.json +++ b/data/generated/tld/zuerich.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -28,6 +28,29 @@ "date_removed": null } }, + "registry_url": "https://nic.zuerich", + "whois_server": "whois.nic.zuerich", + "rdap_server": "https://rdap.centralnic.com/zuerich", + "tld_created": "2014-12-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.zuerich", @@ -105,29 +128,6 @@ } ] } - ], - "registry_url": "https://nic.zuerich", - "whois_server": "whois.nic.zuerich", - "rdap_server": "https://rdap.centralnic.com/zuerich", - "tld_created": "2014-12-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] } } diff --git a/data/generated/tld/zw.json b/data/generated/tld/zw.json index c1125be7..8856fda3 100644 --- a/data/generated/tld/zw.json +++ b/data/generated/tld/zw.json @@ -1,6 +1,6 @@ { "description": "Per-TLD bootstrap data, from IANA sources", - "publication": "2026-05-25T17:27:52Z", + "publication": "2026-05-26T05:23:55Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -17,6 +17,20 @@ "tech": "TelOne Pvt Ltd" } }, + "tld_created": "1991-11-06", + "tld_updated": [ + "2021-03-11" + ], + "annotations": { + "country_name_iso": "Zimbabwe", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.liquidtelecom.net", @@ -113,20 +127,6 @@ } ] } - ], - "tld_created": "1991-11-06", - "tld_updated": [ - "2021-03-11" - ], - "annotations": { - "country_name_iso": "Zimbabwe", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } } diff --git a/data/generated/tlds.json b/data/generated/tlds.json index 855ea6eb..669fb737 100644 --- a/data/generated/tlds.json +++ b/data/generated/tlds.json @@ -1,6 +1,6 @@ { "description": "Enhanced TLD bootstrap data, from IANA sources", - "publication": "2026-05-27T03:42:17Z", + "publication": "2026-05-28T02:11:16Z", "sources": { "iana_root_db": "https://www.iana.org/domains/root/db", "iana_rdap": "https://data.iana.org/rdap/dns.json" @@ -29,6 +29,29 @@ "date_removed": null } }, + "registry_url": "http://www.aaa.com", + "whois_server": "whois.nic.aaa", + "rdap_server": "https://rdap.nic.aaa/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2024-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aaa", @@ -54,7 +77,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144,30 +167,7 @@ } ] } - ], - "registry_url": "http://www.aaa.com", - "whois_server": "whois.nic.aaa", - "rdap_server": "https://rdap.nic.aaa/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2024-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "aarp", @@ -192,6 +192,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.aarp", + "rdap_server": "https://rdap.nic.aarp", + "tld_created": "2015-10-22", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aarp", @@ -217,7 +239,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -255,7 +277,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -263,7 +285,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -274,7 +296,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -282,7 +304,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -293,7 +315,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -301,35 +323,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.aarp", - "rdap_server": "https://rdap.nic.aarp", - "tld_created": "2015-10-22", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "abarth", @@ -384,6 +384,29 @@ "date_removed": null } }, + "registry_url": "http://abb.com", + "whois_server": "whois.nic.abb", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.abb", @@ -461,30 +484,7 @@ } ] } - ], - "registry_url": "http://abb.com", - "whois_server": "whois.nic.abb", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "abbott", @@ -509,6 +509,29 @@ "date_removed": null } }, + "registry_url": "http://www.abbott.com", + "whois_server": "whois.nic.abbott", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2026-01-26" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.abbott", @@ -586,30 +609,7 @@ } ] } - ], - "registry_url": "http://www.abbott.com", - "whois_server": "whois.nic.abbott", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2026-01-26" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "abbvie", @@ -634,14 +634,38 @@ "date_removed": null } }, + "registry_url": "http://www.abbvie.com", + "rdap_server": "https://rdap.nominet.uk/abbvie/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.abbvie", "ipv4": [ { "ip": "213.248.219.41", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -659,8 +683,8 @@ "ipv4": [ { "ip": "103.49.83.41", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -787,31 +811,7 @@ } ] } - ], - "registry_url": "http://www.abbvie.com", - "rdap_server": "https://rdap.nominet.uk/abbvie/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "abc", @@ -836,6 +836,29 @@ "date_removed": null } }, + "registry_url": "http://abc.com", + "whois_server": "whois.nic.abc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.abc", @@ -951,30 +974,7 @@ } ] } - ], - "registry_url": "http://abc.com", - "whois_server": "whois.nic.abc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "able", @@ -999,6 +999,27 @@ "date_removed": null } }, + "registry_url": "http://www.able.co.jp", + "rdap_server": "https://rdap.nic.able/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.able", @@ -1024,7 +1045,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1114,28 +1135,7 @@ } ] } - ], - "registry_url": "http://www.able.co.jp", - "rdap_server": "https://rdap.nic.able/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "abogado", @@ -1160,6 +1160,34 @@ "date_removed": null } }, + "registry_url": "http://nic.abogado/", + "whois_server": "whois.nic.abogado", + "rdap_server": "https://rdap.nic.abogado/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.abogado", @@ -1185,7 +1213,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1223,7 +1251,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1231,7 +1259,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1242,7 +1270,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1250,7 +1278,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1261,7 +1289,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1269,41 +1297,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.abogado/", - "whois_server": "whois.nic.abogado", - "rdap_server": "https://rdap.nic.abogado/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "abudhabi", @@ -1328,6 +1328,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.abudhabi", + "rdap_server": "https://rdap.nic.abudhabi", + "tld_created": "2016-02-26", + "tld_updated": [ + "2019-11-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -1353,7 +1373,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -1405,27 +1425,7 @@ } ] } - ], - "whois_server": "whois.nic.abudhabi", - "rdap_server": "https://rdap.nic.abudhabi", - "tld_created": "2016-02-26", - "tld_updated": [ - "2019-11-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "ac", @@ -1439,6 +1439,30 @@ "tech": "Internet Computer Bureau Limited" } }, + "registry_url": "http://www.nic.ac/", + "whois_server": "whois.nic.ac", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-12-19", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Ascension Island", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.ac", @@ -1516,31 +1540,7 @@ } ] } - ], - "registry_url": "http://www.nic.ac/", - "whois_server": "whois.nic.ac", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-12-19", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Ascension Island", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "academy", @@ -1565,6 +1565,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.academy", @@ -1680,34 +1707,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "accenture", @@ -1732,6 +1732,29 @@ "date_removed": null } }, + "registry_url": "http://www.accenture.com", + "whois_server": "whois.nic.accenture", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.accenture", @@ -1847,30 +1870,7 @@ } ] } - ], - "registry_url": "http://www.accenture.com", - "whois_server": "whois.nic.accenture", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "accountant", @@ -1895,6 +1895,32 @@ "date_removed": null } }, + "registry_url": "http://nic.accountant", + "whois_server": "whois.nic.accountant", + "rdap_server": "https://rdap.nic.accountant/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.accountant", @@ -1920,7 +1946,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2010,33 +2036,7 @@ } ] } - ], - "registry_url": "http://nic.accountant", - "whois_server": "whois.nic.accountant", - "rdap_server": "https://rdap.nic.accountant/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "accountants", @@ -2061,6 +2061,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.accountants", @@ -2176,34 +2203,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "aco", @@ -2228,6 +2228,28 @@ "date_removed": null } }, + "registry_url": "http://www.aco.com", + "whois_server": "whois.nic.aco", + "rdap_server": "https://rdap.nic.aco/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2022-06-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.aco", @@ -2286,29 +2308,7 @@ } ] } - ], - "registry_url": "http://www.aco.com", - "whois_server": "whois.nic.aco", - "rdap_server": "https://rdap.nic.aco/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2022-06-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "active", @@ -2363,6 +2363,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.actor", @@ -2478,34 +2505,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ad", @@ -2519,6 +2519,26 @@ "tech": "Andorra Telecom" } }, + "registry_url": "https://www.domini.ad", + "whois_server": "whois.nic.ad", + "rdap_server": "https://rdap.nic.ad", + "tld_created": "1996-01-09", + "tld_updated": [ + "2025-11-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Andorra", + "as_org_aliases": [ + "AFNIC", + "Knipp Medien" + ], + "as_org_slugs": [ + "afnic", + "knipp-medien" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ad.ns.nic.es", @@ -2596,27 +2616,7 @@ } ] } - ], - "registry_url": "https://www.domini.ad", - "whois_server": "whois.nic.ad", - "rdap_server": "https://rdap.nic.ad", - "tld_created": "1996-01-09", - "tld_updated": [ - "2025-11-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Andorra", - "as_org_aliases": [ - "AFNIC", - "Knipp Medien" - ], - "as_org_slugs": [ - "afnic", - "knipp-medien" - ], - "geographic_scope": "country" - } + ] }, { "tld": "adac", @@ -2672,6 +2672,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -2768,34 +2795,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "adult", @@ -2820,6 +2820,34 @@ "date_removed": null } }, + "registry_url": "http://nic.adult", + "whois_server": "whois.nic.adult", + "rdap_server": "https://rdap.nic.adult/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.adult", @@ -2845,7 +2873,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2883,7 +2911,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2891,7 +2919,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2902,7 +2930,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2910,7 +2938,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2921,7 +2949,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -2929,41 +2957,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.adult", - "whois_server": "whois.nic.adult", - "rdap_server": "https://rdap.nic.adult/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ae", @@ -2977,6 +2977,22 @@ "tech": ".ae Domain Administration (.aeDA)" } }, + "registry_url": "http://aeda.ae/", + "whois_server": "whois.aeda.net.ae", + "tld_created": "1992-12-01", + "tld_updated": [ + "2021-10-19" + ], + "annotations": { + "country_name_iso": "United Arab Emirates", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.aedns.ae", @@ -3055,22 +3071,6 @@ ] } ], - "registry_url": "http://aeda.ae/", - "whois_server": "whois.aeda.net.ae", - "tld_created": "1992-12-01", - "tld_updated": [ - "2021-10-19" - ], - "annotations": { - "country_name_iso": "United Arab Emirates", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbaam7a8h" ] @@ -3098,6 +3098,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.aeg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.aeg", @@ -3213,29 +3235,7 @@ } ] } - ], - "whois_server": "whois.nic.aeg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "aero", @@ -3260,6 +3260,29 @@ "date_removed": null } }, + "registry_url": "http://www.information.aero", + "whois_server": "whois.aero", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2001-12-21", + "tld_updated": [ + "2026-05-21" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.aero", @@ -3356,30 +3379,7 @@ } ] } - ], - "registry_url": "http://www.information.aero", - "whois_server": "whois.aero", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2001-12-21", - "tld_updated": [ - "2026-05-21" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "aetna", @@ -3404,6 +3404,28 @@ "date_removed": null } }, + "registry_url": "https://www.aetna.com", + "rdap_server": "https://rdap.nic.aetna/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aetna", @@ -3429,7 +3451,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3519,29 +3541,7 @@ } ] } - ], - "registry_url": "https://www.aetna.com", - "rdap_server": "https://rdap.nic.aetna/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "af", @@ -3555,6 +3555,22 @@ "tech": "Ministry of Communications and IT" } }, + "registry_url": "http://www.nic.af", + "whois_server": "whois.nic.af", + "tld_created": "1997-10-16", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Afghanistan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.af", @@ -3606,23 +3622,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.af", - "whois_server": "whois.nic.af", - "tld_created": "1997-10-16", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Afghanistan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "afamilycompany", @@ -3677,6 +3677,27 @@ "date_removed": null } }, + "registry_url": "http://nic.afl", + "whois_server": "whois.nic.afl", + "rdap_server": "https://rdap.nic.afl/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.afl", @@ -3702,7 +3723,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3740,7 +3761,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3748,7 +3769,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3759,7 +3780,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3767,7 +3788,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3778,7 +3799,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -3786,34 +3807,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.afl", - "whois_server": "whois.nic.afl", - "rdap_server": "https://rdap.nic.afl/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "africa", @@ -3838,6 +3838,31 @@ "date_removed": null } }, + "registry_url": "http://nic.africa", + "whois_server": "whois.nic.africa", + "rdap_server": "https://rdap.nic.africa/rdap/", + "tld_created": "2017-02-11", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -3896,32 +3921,7 @@ } ] } - ], - "registry_url": "http://nic.africa", - "whois_server": "whois.nic.africa", - "rdap_server": "https://rdap.nic.africa/rdap/", - "tld_created": "2017-02-11", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "supranational" - } + ] }, { "tld": "ag", @@ -3935,6 +3935,26 @@ "tech": "Afilias Limited" } }, + "registry_url": "http://www.nic.ag", + "whois_server": "whois.nic.ag", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2021-02-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Antigua and Barbuda", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -4050,27 +4070,7 @@ } ] } - ], - "registry_url": "http://www.nic.ag", - "whois_server": "whois.nic.ag", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2021-02-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Antigua and Barbuda", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "agakhan", @@ -4095,6 +4095,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.agakhan", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.agakhan", @@ -4172,29 +4194,7 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.agakhan", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "agency", @@ -4219,6 +4219,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.agency", @@ -4334,34 +4361,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ai", @@ -4375,6 +4375,24 @@ "tech": "Government of Anguilla" } }, + "registry_url": "https://nic.ai", + "whois_server": "whois.nic.ai", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-02-16", + "tld_updated": [ + "2025-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Anguilla", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "v0n0.nic.ai", @@ -4490,25 +4508,7 @@ } ] } - ], - "registry_url": "https://nic.ai", - "whois_server": "whois.nic.ai", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-02-16", - "tld_updated": [ - "2025-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Anguilla", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "aig", @@ -4533,6 +4533,28 @@ "date_removed": null } }, + "registry_url": "http://www.aig.com", + "rdap_server": "https://rdap.nic.aig/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aig", @@ -4558,7 +4580,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -4648,29 +4670,7 @@ } ] } - ], - "registry_url": "http://www.aig.com", - "rdap_server": "https://rdap.nic.aig/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "aigo", @@ -4725,122 +4725,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "v0n0.nic.airbus", - "ipv4": [ - { - "ip": "65.22.108.10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6a::10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n1.nic.airbus", - "ipv4": [ - { - "ip": "65.22.109.10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6b::10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n2.nic.airbus", - "ipv4": [ - { - "ip": "65.22.110.10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6c::10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n3.nic.airbus", - "ipv4": [ - { - "ip": "161.232.32.10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:108::10", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v2n0.nic.airbus", - "ipv4": [ - { - "ip": "65.22.111.10", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6d::10", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "v2n1.nic.airbus", - "ipv4": [ - { - "ip": "161.232.33.10", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:109::10", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - } - ], "whois_server": "whois.nic.airbus", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2016-05-26", @@ -4862,7 +4746,123 @@ "as_org_slugs": [ "identity-digital" ] - } + }, + "nameservers": [ + { + "hostname": "v0n0.nic.airbus", + "ipv4": [ + { + "ip": "65.22.108.10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6a::10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n1.nic.airbus", + "ipv4": [ + { + "ip": "65.22.109.10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6b::10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n2.nic.airbus", + "ipv4": [ + { + "ip": "65.22.110.10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6c::10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n3.nic.airbus", + "ipv4": [ + { + "ip": "161.232.32.10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:108::10", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v2n0.nic.airbus", + "ipv4": [ + { + "ip": "65.22.111.10", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6d::10", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "v2n1.nic.airbus", + "ipv4": [ + { + "ip": "161.232.33.10", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:109::10", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + } + ] }, { "tld": "airforce", @@ -4887,6 +4887,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.airforce", @@ -5002,34 +5029,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "airtel", @@ -5054,6 +5054,29 @@ "date_removed": null } }, + "registry_url": "http://www.airtel.in", + "whois_server": "whois.nic.airtel", + "rdap_server": "https://rdap.nic.airtel", + "tld_created": "2015-06-18", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.airtel", @@ -5079,7 +5102,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5117,7 +5140,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5125,7 +5148,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5136,7 +5159,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5144,7 +5167,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5155,7 +5178,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -5163,36 +5186,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.airtel.in", - "whois_server": "whois.nic.airtel", - "rdap_server": "https://rdap.nic.airtel", - "tld_created": "2015-06-18", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "akdn", @@ -5217,6 +5217,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.akdn", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.akdn", @@ -5294,29 +5316,7 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.akdn", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "al", @@ -5330,6 +5330,21 @@ "tech": "Electronic and Postal Communications Authority - AKEP" } }, + "registry_url": "https://akep.al/e-aplikime-domain/", + "tld_created": "1992-04-21", + "tld_updated": [ + "2023-10-12" + ], + "annotations": { + "country_name_iso": "Albania", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "munnari.oz.au", @@ -5406,22 +5421,7 @@ } ] } - ], - "registry_url": "https://akep.al/e-aplikime-domain/", - "tld_created": "1992-04-21", - "tld_updated": [ - "2023-10-12" - ], - "annotations": { - "country_name_iso": "Albania", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "alfaromeo", @@ -5476,22 +5476,37 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.alibaba", + "rdap_server": "https://rdap.aliregistry.cn/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2026-05-20" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "ns1.nic.alibaba", "ipv4": [ { "ip": "203.107.2.1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:101::1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -5501,16 +5516,16 @@ "ipv4": [ { "ip": "203.107.2.2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:101::2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -5520,16 +5535,16 @@ "ipv4": [ { "ip": "203.107.3.1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:102::1", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] @@ -5539,36 +5554,21 @@ "ipv4": [ { "ip": "203.107.3.2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2408:4000:102::2", - "asn": 45102, - "as_org": "ALIBABA-CN-NET Alibaba US Technology Co., Ltd.", + "asn": 37963, + "as_org": "ALIBABA-CN-NET Hangzhou Alibaba Advertising Co.,Ltd.", "as_country": "CN" } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.alibaba", - "rdap_server": "https://rdap.aliregistry.cn/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2026-05-20" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] }, { "tld": "alipay", @@ -5593,6 +5593,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.alipay", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.alipay", @@ -5670,30 +5693,7 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.alipay", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "allfinanz", @@ -5718,6 +5718,28 @@ "date_removed": null } }, + "registry_url": "http://www.allfinanz-registry.de", + "whois_server": "whois.nic.allfinanz", + "rdap_server": "https://rdap.centralnic.com/allfinanz", + "tld_created": "2014-09-25", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.allfinanz", @@ -5795,29 +5817,7 @@ } ] } - ], - "registry_url": "http://www.allfinanz-registry.de", - "whois_server": "whois.nic.allfinanz", - "rdap_server": "https://rdap.centralnic.com/allfinanz", - "tld_created": "2014-09-25", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "allstate", @@ -5842,6 +5842,29 @@ "date_removed": null } }, + "registry_url": "https://www.allstate.com/", + "whois_server": "whois.nic.allstate", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.allstate", @@ -5919,30 +5942,7 @@ } ] } - ], - "registry_url": "https://www.allstate.com/", - "whois_server": "whois.nic.allstate", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ally", @@ -5967,6 +5967,29 @@ "date_removed": null } }, + "registry_url": "http://www.ally.com", + "whois_server": "whois.nic.ally", + "rdap_server": "https://rdap.nic.ally", + "tld_created": "2015-10-22", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ally", @@ -5992,7 +6015,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6030,7 +6053,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6038,7 +6061,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6049,7 +6072,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6057,7 +6080,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6068,7 +6091,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6076,36 +6099,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.ally.com", - "whois_server": "whois.nic.ally", - "rdap_server": "https://rdap.nic.ally", - "tld_created": "2015-10-22", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "alsace", @@ -6130,6 +6130,31 @@ "date_removed": null } }, + "registry_url": "https://www.mondomaine.alsace", + "whois_server": "whois.nic.alsace", + "rdap_server": "https://rdap.nic.alsace", + "tld_created": "2014-09-18", + "tld_updated": [ + "2024-09-16" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -6188,32 +6213,7 @@ } ] } - ], - "registry_url": "https://www.mondomaine.alsace", - "whois_server": "whois.nic.alsace", - "rdap_server": "https://rdap.nic.alsace", - "tld_created": "2014-09-18", - "tld_updated": [ - "2024-09-16" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "alstom", @@ -6238,6 +6238,27 @@ "date_removed": null } }, + "registry_url": "http://www.alstom.com", + "whois_server": "whois.nic.alstom", + "rdap_server": "https://rdap.nic.alstom/", + "tld_created": "2015-12-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -6315,28 +6336,7 @@ } ] } - ], - "registry_url": "http://www.alstom.com", - "whois_server": "whois.nic.alstom", - "rdap_server": "https://rdap.nic.alstom/", - "tld_created": "2015-12-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "am", @@ -6350,6 +6350,24 @@ "tech": "\"Internet Society\" Non-governmental Organization" } }, + "registry_url": "https://www.amnic.net/", + "whois_server": "whois.amnic.net", + "tld_created": "1994-08-26", + "tld_updated": [ + "2024-11-27" + ], + "annotations": { + "country_name_iso": "Armenia", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -6428,24 +6446,6 @@ ] } ], - "registry_url": "https://www.amnic.net/", - "whois_server": "whois.amnic.net", - "tld_created": "1994-08-26", - "tld_updated": [ - "2024-11-27" - ], - "annotations": { - "country_name_iso": "Armenia", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--y9a3aq" ] @@ -6473,14 +6473,42 @@ "date_removed": null } }, + "registry_url": "http://www.nic.amazon", + "rdap_server": "https://rdap.nominet.uk/amazon/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.amazon", "ipv4": [ { "ip": "213.248.218.90", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -6498,8 +6526,8 @@ "ipv4": [ { "ip": "103.49.82.90", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -6626,35 +6654,7 @@ } ] } - ], - "registry_url": "http://www.nic.amazon", - "rdap_server": "https://rdap.nominet.uk/amazon/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "americanexpress", @@ -6679,6 +6679,28 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "rdap_server": "https://rdap.nic.americanexpress/", + "tld_created": "2016-07-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.americanexpress", @@ -6704,7 +6726,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6794,29 +6816,7 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "rdap_server": "https://rdap.nic.americanexpress/", - "tld_created": "2016-07-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "americanfamily", @@ -6841,6 +6841,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.americanfamily", + "rdap_server": "https://rdap.nic.americanfamily", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.americanfamily", @@ -6866,7 +6888,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6904,7 +6926,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6912,7 +6934,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6923,7 +6945,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6931,7 +6953,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6942,7 +6964,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -6950,35 +6972,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.americanfamily", - "rdap_server": "https://rdap.nic.americanfamily", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "amex", @@ -7003,6 +7003,28 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "rdap_server": "https://rdap.nic.amex/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amex", @@ -7028,7 +7050,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7118,29 +7140,7 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "rdap_server": "https://rdap.nic.amex/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "amfam", @@ -7165,6 +7165,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.amfam", + "rdap_server": "https://rdap.nic.amfam", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-08-23" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amfam", @@ -7190,7 +7212,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7228,7 +7250,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7236,7 +7258,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7247,7 +7269,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7255,7 +7277,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7266,7 +7288,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7274,35 +7296,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.amfam", - "rdap_server": "https://rdap.nic.amfam", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-08-23" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "amica", @@ -7327,6 +7327,28 @@ "date_removed": null } }, + "registry_url": "http://www.amica.com", + "rdap_server": "https://rdap.nic.amica/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.amica", @@ -7352,7 +7374,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7442,29 +7464,7 @@ } ] } - ], - "registry_url": "http://www.amica.com", - "rdap_server": "https://rdap.nic.amica/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "amsterdam", @@ -7489,6 +7489,31 @@ "date_removed": null } }, + "registry_url": "http://www.nic.amsterdam", + "whois_server": "whois.nic.amsterdam", + "rdap_server": "https://rdap.nic.amsterdam", + "tld_created": "2014-11-20", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "ns1.dns.amsterdam", @@ -7547,32 +7572,7 @@ } ] } - ], - "registry_url": "http://www.nic.amsterdam", - "whois_server": "whois.nic.amsterdam", - "rdap_server": "https://rdap.nic.amsterdam", - "tld_created": "2014-11-20", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "city" - } + ] }, { "tld": "an", @@ -7610,6 +7610,27 @@ "date_removed": null } }, + "registry_url": "http://www.sas.com", + "rdap_server": "https://rdap.nic.analytics/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.analytics", @@ -7635,7 +7656,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -7725,28 +7746,7 @@ } ] } - ], - "registry_url": "http://www.sas.com", - "rdap_server": "https://rdap.nic.analytics/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "android", @@ -7771,6 +7771,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -7867,35 +7895,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "anquan", @@ -7920,14 +7920,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -7983,27 +8003,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "anz", @@ -8028,6 +8028,27 @@ "date_removed": null } }, + "registry_url": "http://www.anz.com/", + "whois_server": "whois.nic.anz", + "rdap_server": "https://rdap.nic.anz/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.anz", @@ -8053,7 +8074,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8091,7 +8112,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8099,7 +8120,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8110,7 +8131,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8118,7 +8139,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8129,7 +8150,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -8137,34 +8158,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.anz.com/", - "whois_server": "whois.nic.anz", - "rdap_server": "https://rdap.nic.anz/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ao", @@ -8178,6 +8178,23 @@ "tech": "INSTITUTO NACIONAL DE FOMENTO DA SOCIEDADE DA INFORMACAO-INFOSI" } }, + "registry_url": "http://www.dns.ao/", + "tld_created": "1995-11-15", + "tld_updated": [ + "2024-09-09" + ], + "annotations": { + "country_name_iso": "Angola", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.ao", @@ -8255,24 +8272,7 @@ } ] } - ], - "registry_url": "http://www.dns.ao/", - "tld_created": "1995-11-15", - "tld_updated": [ - "2024-09-09" - ], - "annotations": { - "country_name_iso": "Angola", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "aol", @@ -8297,6 +8297,29 @@ "date_removed": null } }, + "registry_url": "http://www.aol.com", + "whois_server": "whois.nic.aol", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2026-05-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.aol", @@ -8374,30 +8397,7 @@ } ] } - ], - "registry_url": "http://www.aol.com", - "whois_server": "whois.nic.aol", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2026-05-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "apartments", @@ -8422,6 +8422,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.apartments", @@ -8537,34 +8564,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "app", @@ -8589,103 +8589,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "ns-tld1.charlestonroadregistry.com", - "ipv4": [ - { - "ip": "216.239.32.105", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:4860:4802:32::69", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ] - }, - { - "hostname": "ns-tld2.charlestonroadregistry.com", - "ipv4": [ - { - "ip": "216.239.34.105", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:4860:4802:34::69", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ] - }, - { - "hostname": "ns-tld3.charlestonroadregistry.com", - "ipv4": [ - { - "ip": "216.239.36.105", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:4860:4802:36::69", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ] - }, - { - "hostname": "ns-tld4.charlestonroadregistry.com", - "ipv4": [ - { - "ip": "216.239.38.105", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:4860:4802:38::69", - "asn": 15169, - "as_org": "GOOGLE", - "as_country": "US" - } - ] - }, - { - "hostname": "ns-tld5.charlestonroadregistry.com", - "ipv4": [ - { - "ip": "216.239.60.105", - "asn": 43515, - "as_org": "YOUTUBE YOUTUBE", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2001:4860:4805::69", - "asn": 43515, - "as_org": "YOUTUBE YOUTUBE", - "as_country": "IE" - } - ] - } - ], "registry_url": "https://www.registry.google", "rdap_server": "https://pubapi.registry.google/rdap/", "tld_created": "2015-06-25", @@ -8712,7 +8615,104 @@ "as_org_slugs": [ "google" ] - } + }, + "nameservers": [ + { + "hostname": "ns-tld1.charlestonroadregistry.com", + "ipv4": [ + { + "ip": "216.239.32.105", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:4860:4802:32::69", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ] + }, + { + "hostname": "ns-tld2.charlestonroadregistry.com", + "ipv4": [ + { + "ip": "216.239.34.105", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:4860:4802:34::69", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ] + }, + { + "hostname": "ns-tld3.charlestonroadregistry.com", + "ipv4": [ + { + "ip": "216.239.36.105", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:4860:4802:36::69", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ] + }, + { + "hostname": "ns-tld4.charlestonroadregistry.com", + "ipv4": [ + { + "ip": "216.239.38.105", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:4860:4802:38::69", + "asn": 15169, + "as_org": "GOOGLE", + "as_country": "US" + } + ] + }, + { + "hostname": "ns-tld5.charlestonroadregistry.com", + "ipv4": [ + { + "ip": "216.239.60.105", + "asn": 43515, + "as_org": "YOUTUBE YOUTUBE", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2001:4860:4805::69", + "asn": 43515, + "as_org": "YOUTUBE YOUTUBE", + "as_country": "IE" + } + ] + } + ] }, { "tld": "apple", @@ -8737,6 +8737,32 @@ "date_removed": null } }, + "registry_url": "https://www.nic.apple/", + "rdap_server": "https://rdap.nic.apple/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2025-11-10" + ], + "annotations": { + "iana_sponsor_alias": "Apple", + "iana_sponsor_slug": "apple", + "iana_tech_alias": "Packet Clearing House", + "iana_tech_slug": "packet-clearing-house", + "icann_registry_operator_alias": "Apple", + "icann_registry_operator_slug": "apple", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "apple-ns.pch.net", @@ -8795,33 +8821,7 @@ } ] } - ], - "registry_url": "https://www.nic.apple/", - "rdap_server": "https://rdap.nic.apple/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2025-11-10" - ], - "annotations": { - "iana_sponsor_alias": "Apple", - "iana_sponsor_slug": "apple", - "iana_tech_alias": "Packet Clearing House", - "iana_tech_slug": "packet-clearing-house", - "icann_registry_operator_alias": "Apple", - "icann_registry_operator_slug": "apple", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] }, { "tld": "aq", @@ -8835,6 +8835,20 @@ "tech": "InternetNZ" } }, + "tld_created": "1992-02-26", + "tld_updated": [ + "2025-01-21" + ], + "annotations": { + "country_name_iso": "Antarctica", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -8893,21 +8907,7 @@ } ] } - ], - "tld_created": "1992-02-26", - "tld_updated": [ - "2025-01-21" - ], - "annotations": { - "country_name_iso": "Antarctica", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "aquarelle", @@ -8932,6 +8932,29 @@ "date_removed": null } }, + "registry_url": "https://www.aquarelle.com", + "whois_server": "whois.nic.aquarelle", + "rdap_server": "https://rdap.nic.aquarelle", + "tld_created": "2014-11-06", + "tld_updated": [ + "2024-11-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.aquarelle", @@ -9009,30 +9032,7 @@ } ] } - ], - "registry_url": "https://www.aquarelle.com", - "whois_server": "whois.nic.aquarelle", - "rdap_server": "https://rdap.nic.aquarelle", - "tld_created": "2014-11-06", - "tld_updated": [ - "2024-11-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "ar", @@ -9046,6 +9046,26 @@ "tech": "Dirección Nacional del Registro de Nombres de Dominio de Internet - NIC Argentina" } }, + "registry_url": "https://nic.ar", + "whois_server": "whois.nic.ar", + "rdap_server": "https://rdap.nic.ar", + "tld_created": "1987-09-23", + "tld_updated": [ + "2025-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Argentina", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -9142,27 +9162,7 @@ } ] } - ], - "registry_url": "https://nic.ar", - "whois_server": "whois.nic.ar", - "rdap_server": "https://rdap.nic.ar", - "tld_created": "1987-09-23", - "tld_updated": [ - "2025-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Argentina", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "arab", @@ -9187,6 +9187,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.arab", + "rdap_server": "https://rdap.nic.arab/", + "tld_created": "2017-05-11", + "tld_updated": [ + "2020-05-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "arab" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -9212,7 +9232,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -9264,27 +9284,7 @@ } ] } - ], - "whois_server": "whois.nic.arab", - "rdap_server": "https://rdap.nic.arab/", - "tld_created": "2017-05-11", - "tld_updated": [ - "2020-05-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "cultural_affiliation": "arab" - } + ] }, { "tld": "aramco", @@ -9309,6 +9309,27 @@ "date_removed": null } }, + "registry_url": "http://www.aramco.com", + "rdap_server": "https://rdap.nic.aramco/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.aramco", @@ -9334,7 +9355,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -9380,7 +9401,7 @@ "ipv6": [ { "ip": "2610:a1:1074::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -9399,7 +9420,7 @@ "ipv6": [ { "ip": "2610:a1:1075::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -9418,34 +9439,13 @@ "ipv6": [ { "ip": "2610:a1:1076::e", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.aramco.com", - "rdap_server": "https://rdap.nic.aramco/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "archi", @@ -9470,6 +9470,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.archi", @@ -9547,12 +9575,36 @@ } ] } - ], + ] + }, + { + "tld": "army", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1255-29986", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-06-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", + "tld_created": "2014-05-29", "tld_updated": [ - "2025-09-04" + "2025-10-07" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -9566,7 +9618,6 @@ "rdap_source": "IANA", "registry_agreement_types": [ "base", - "community", "non_sponsored" ], "as_org_aliases": [ @@ -9575,30 +9626,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "army", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1255-29986", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-06-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -9715,34 +9742,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "arpa", @@ -9756,6 +9756,20 @@ "tech": "Internet Corporation for Assigned Names and Numbers (ICANN)" } }, + "registry_url": "https://www.iana.org/domains/arpa", + "whois_server": "whois.iana.org", + "tld_created": "1985-01-01", + "tld_updated": [ + "2023-11-27" + ], + "annotations": { + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.ns.arpa", @@ -9985,21 +9999,7 @@ } ] } - ], - "registry_url": "https://www.iana.org/domains/arpa", - "whois_server": "whois.iana.org", - "tld_created": "1985-01-01", - "tld_updated": [ - "2023-11-27" - ], - "annotations": { - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "art", @@ -10024,6 +10024,28 @@ "date_removed": null } }, + "registry_url": "http://art.art/", + "whois_server": "whois.nic.art", + "rdap_server": "https://rdap.centralnic.com/art", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-04-30" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.art", @@ -10101,29 +10123,7 @@ } ] } - ], - "registry_url": "http://art.art/", - "whois_server": "whois.nic.art", - "rdap_server": "https://rdap.centralnic.com/art", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-04-30" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "arte", @@ -10148,6 +10148,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.arte", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.arte", @@ -10263,29 +10285,7 @@ } ] } - ], - "whois_server": "whois.nic.arte", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "as", @@ -10299,14 +10299,32 @@ "tech": "GDNS, LLC" } }, + "registry_url": "http://www.nic.as", + "whois_server": "whois.nic.as", + "rdap_server": "https://rdap.nic.as", + "tld_created": "1997-06-12", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "American Samoa", + "as_org_aliases": [ + "Nominet" + ], + "as_org_slugs": [ + "nominet" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.asnic.biz", "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -10324,8 +10342,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -10395,25 +10413,7 @@ } ] } - ], - "registry_url": "http://www.nic.as", - "whois_server": "whois.nic.as", - "rdap_server": "https://rdap.nic.as", - "tld_created": "1997-06-12", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "American Samoa", - "as_org_aliases": [ - "Nominet" - ], - "as_org_slugs": [ - "nominet" - ], - "geographic_scope": "country" - } + ] }, { "tld": "asda", @@ -10438,6 +10438,29 @@ "date_removed": null } }, + "registry_url": "http://www.asda.com", + "whois_server": "whois.nic.asda", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.asda", @@ -10515,30 +10538,7 @@ } ] } - ], - "registry_url": "http://www.asda.com", - "whois_server": "whois.nic.asda", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "asia", @@ -10563,6 +10563,30 @@ "date_removed": null } }, + "registry_url": "http://www.registry.asia", + "whois_server": "whois.nic.asia", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2007-05-02", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "a0.asia.afilias-nst.info", @@ -10678,31 +10702,7 @@ } ] } - ], - "registry_url": "http://www.registry.asia", - "whois_server": "whois.nic.asia", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2007-05-02", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "supranational" - } + ] }, { "tld": "associates", @@ -10727,6 +10727,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.associates", @@ -10842,34 +10869,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "at", @@ -10883,6 +10883,22 @@ "tech": "nic.at GmbH c/o Vienna University Computer Center" } }, + "registry_url": "http://www.nic.at/", + "whois_server": "whois.nic.at", + "tld_created": "1988-01-20", + "tld_updated": [ + "2025-05-14" + ], + "annotations": { + "country_name_iso": "Austria", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.ns.at", @@ -11017,23 +11033,7 @@ } ] } - ], - "registry_url": "http://www.nic.at/", - "whois_server": "whois.nic.at", - "tld_created": "1988-01-20", - "tld_updated": [ - "2025-05-14" - ], - "annotations": { - "country_name_iso": "Austria", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "athleta", @@ -11058,6 +11058,28 @@ "date_removed": null } }, + "registry_url": "http://www.gap.com", + "rdap_server": "https://rdap.nic.athleta/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.athleta", @@ -11083,7 +11105,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -11173,29 +11195,7 @@ } ] } - ], - "registry_url": "http://www.gap.com", - "rdap_server": "https://rdap.nic.athleta/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "attorney", @@ -11220,6 +11220,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.attorney", @@ -11335,34 +11362,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "au", @@ -11376,6 +11376,24 @@ "tech": ".au Domain Administration (auDA)" } }, + "registry_url": "https://www.auda.org.au/domains/au-domains/", + "whois_server": "whois.auda.org.au", + "rdap_server": "https://rdap.cctld.au/rdap/", + "tld_created": "1986-03-05", + "tld_updated": [ + "2026-02-09" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Australia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.au", @@ -11472,25 +11490,7 @@ } ] } - ], - "registry_url": "https://www.auda.org.au/domains/au-domains/", - "whois_server": "whois.auda.org.au", - "rdap_server": "https://rdap.cctld.au/rdap/", - "tld_created": "1986-03-05", - "tld_updated": [ - "2026-02-09" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Australia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "auction", @@ -11515,6 +11515,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.auction", @@ -11630,34 +11657,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "audi", @@ -11682,6 +11682,34 @@ "date_removed": null } }, + "registry_url": "http://www.audi.com", + "whois_server": "whois.nic.audi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Audi", + "iana_sponsor_slug": "audi", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Audi", + "icann_registry_operator_slug": "audi", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.audi", @@ -11759,35 +11787,7 @@ } ] } - ], - "registry_url": "http://www.audi.com", - "whois_server": "whois.nic.audi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Audi", - "iana_sponsor_slug": "audi", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Audi", - "icann_registry_operator_slug": "audi", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "audible", @@ -11812,14 +11812,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.audible", + "rdap_server": "https://rdap.nominet.uk/audible/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.audible", "ipv4": [ { "ip": "213.248.218.56", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -11837,8 +11867,8 @@ "ipv4": [ { "ip": "103.49.82.56", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -11965,37 +11995,7 @@ } ] } - ], - "registry_url": "http://www.nic.audible", - "rdap_server": "https://rdap.nominet.uk/audible/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "audio", @@ -12020,6 +12020,34 @@ "date_removed": null } }, + "registry_url": "https://nic.audio", + "whois_server": "whois.nic.audio", + "rdap_server": "https://rdap.centralnic.com/audio/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.audio", @@ -12097,35 +12125,7 @@ } ] } - ], - "registry_url": "https://nic.audio", - "whois_server": "whois.nic.audio", - "rdap_server": "https://rdap.centralnic.com/audio/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "auspost", @@ -12150,6 +12150,27 @@ "date_removed": null } }, + "registry_url": "https://auspost.com.au", + "whois_server": "whois.nic.auspost", + "rdap_server": "https://rdap.nic.auspost/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.auspost", @@ -12175,7 +12196,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12213,7 +12234,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12221,7 +12242,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12232,7 +12253,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12240,7 +12261,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12251,7 +12272,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -12259,34 +12280,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://auspost.com.au", - "whois_server": "whois.nic.auspost", - "rdap_server": "https://rdap.nic.auspost/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "author", @@ -12311,14 +12311,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.author", + "rdap_server": "https://rdap.nominet.uk/author/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.author", "ipv4": [ { "ip": "213.248.218.60", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -12336,8 +12365,8 @@ "ipv4": [ { "ip": "103.49.82.60", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -12464,36 +12493,7 @@ } ] } - ], - "registry_url": "http://www.nic.author", - "rdap_server": "https://rdap.nominet.uk/author/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "auto", @@ -12518,6 +12518,34 @@ "date_removed": null } }, + "registry_url": "https://www.nic.auto", + "whois_server": "whois.nic.auto", + "rdap_server": "https://rdap.centralnic.com/auto/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.auto", @@ -12595,35 +12623,7 @@ } ] } - ], - "registry_url": "https://www.nic.auto", - "whois_server": "whois.nic.auto", - "rdap_server": "https://rdap.centralnic.com/auto/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "autos", @@ -12648,6 +12648,34 @@ "date_removed": null } }, + "registry_url": "http://nic.autos", + "whois_server": "whois.nic.autos", + "rdap_server": "https://rdap.centralnic.com/autos/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.autos", @@ -12725,35 +12753,7 @@ } ] } - ], - "registry_url": "http://nic.autos", - "whois_server": "whois.nic.autos", - "rdap_server": "https://rdap.centralnic.com/autos/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "avianca", @@ -12796,6 +12796,25 @@ "tech": "SETAR" } }, + "whois_server": "whois.nic.aw", + "tld_created": "1996-02-20", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "country_name_iso": "Aruba", + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "aw01.setarnet.aw", @@ -12878,26 +12897,7 @@ } ] } - ], - "whois_server": "whois.nic.aw", - "tld_created": "1996-02-20", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "country_name_iso": "Aruba", - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "country" - } + ] }, { "tld": "aws", @@ -12922,14 +12922,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.aws", + "rdap_server": "https://rdap.nominet.uk/aws/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.aws", "ipv4": [ { "ip": "213.248.218.53", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -12947,8 +12977,8 @@ "ipv4": [ { "ip": "103.49.82.53", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -13075,37 +13105,7 @@ } ] } - ], - "registry_url": "http://www.nic.aws", - "rdap_server": "https://rdap.nominet.uk/aws/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "ax", @@ -13119,6 +13119,16 @@ "tech": "Ålands Telekommunikation Ab" } }, + "registry_url": "http://www.whois.ax", + "whois_server": "whois.ax", + "tld_created": "2006-06-21", + "tld_updated": [ + "2017-08-04" + ], + "annotations": { + "country_name_iso": "Åland Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.aland.net", @@ -13182,17 +13192,7 @@ } ] } - ], - "registry_url": "http://www.whois.ax", - "whois_server": "whois.ax", - "tld_created": "2006-06-21", - "tld_updated": [ - "2017-08-04" - ], - "annotations": { - "country_name_iso": "Åland Islands", - "geographic_scope": "country" - } + ] }, { "tld": "axa", @@ -13217,6 +13217,28 @@ "date_removed": null } }, + "registry_url": "https://domains.axa/", + "rdap_server": "https://rdap.nic.axa/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.axa", @@ -13242,7 +13264,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -13332,29 +13354,7 @@ } ] } - ], - "registry_url": "https://domains.axa/", - "rdap_server": "https://rdap.nic.axa/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "az", @@ -13368,6 +13368,21 @@ "tech": "IntraNS" } }, + "registry_url": "http://www.whois.az/", + "tld_created": "1993-08-25", + "tld_updated": [ + "2025-11-21" + ], + "annotations": { + "country_name_iso": "Azerbaijan", + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "az.hostmaster.ua", @@ -13431,22 +13446,7 @@ } ] } - ], - "registry_url": "http://www.whois.az/", - "tld_created": "1993-08-25", - "tld_updated": [ - "2025-11-21" - ], - "annotations": { - "country_name_iso": "Azerbaijan", - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ], - "geographic_scope": "country" - } + ] }, { "tld": "azure", @@ -13471,14 +13471,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/azure/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.azure", "ipv4": [ { "ip": "213.248.219.129", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -13496,8 +13526,8 @@ "ipv4": [ { "ip": "103.49.83.129", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -13624,37 +13654,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/azure/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "ba", @@ -13668,6 +13668,23 @@ "tech": "University Tele-Informatic Center (UTIC)" } }, + "registry_url": "http://www.nic.ba", + "tld_created": "1996-08-14", + "tld_updated": [ + "2025-12-26" + ], + "annotations": { + "country_name_iso": "Bosnia and Herzegovina", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bosna.utic.net.ba", @@ -13731,24 +13748,7 @@ } ] } - ], - "registry_url": "http://www.nic.ba", - "tld_created": "1996-08-14", - "tld_updated": [ - "2025-12-26" - ], - "annotations": { - "country_name_iso": "Bosnia and Herzegovina", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "baby", @@ -13773,6 +13773,34 @@ "date_removed": null } }, + "registry_url": "https://nic.baby/", + "whois_server": "whois.nic.baby", + "rdap_server": "https://rdap.centralnic.com/baby/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.baby", @@ -13850,35 +13878,7 @@ } ] } - ], - "registry_url": "https://nic.baby/", - "whois_server": "whois.nic.baby", - "rdap_server": "https://rdap.centralnic.com/baby/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "baidu", @@ -13903,6 +13903,29 @@ "date_removed": null } }, + "registry_url": "http://www.zdns.cn", + "whois_server": "whois.gtld.knet.cn", + "rdap_server": "https://rdap.zdnsgtld.com/baidu", + "tld_created": "2015-12-17", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -14000,30 +14023,7 @@ } ] } - ], - "registry_url": "http://www.zdns.cn", - "whois_server": "whois.gtld.knet.cn", - "rdap_server": "https://rdap.zdnsgtld.com/baidu", - "tld_created": "2015-12-17", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "banamex", @@ -14048,6 +14048,28 @@ "date_removed": null } }, + "registry_url": "http://www.citigroup.com", + "rdap_server": "https://rdap.nic.banamex/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.banamex", @@ -14073,7 +14095,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -14163,29 +14185,7 @@ } ] } - ], - "registry_url": "http://www.citigroup.com", - "rdap_server": "https://rdap.nic.banamex/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bananarepublic", @@ -14240,6 +14240,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-01", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.band", @@ -14355,34 +14382,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-01", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bank", @@ -14407,6 +14407,35 @@ "date_removed": null } }, + "registry_url": "https://www.ftld.com/", + "whois_server": "whois.nic.bank", + "rdap_server": "https://rdap.nic.bank/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_sponsor_alias": "fTLD Registry", + "iana_sponsor_slug": "ftld-registry", + "iana_admin_alias": "fTLD Registry", + "iana_admin_slug": "ftld-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "fTLD Registry", + "icann_registry_operator_slug": "ftld-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "d.nic.bank", @@ -14489,7 +14518,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -14522,36 +14551,7 @@ } ] } - ], - "registry_url": "https://www.ftld.com/", - "whois_server": "whois.nic.bank", - "rdap_server": "https://rdap.nic.bank/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_sponsor_alias": "fTLD Registry", - "iana_sponsor_slug": "ftld-registry", - "iana_admin_alias": "fTLD Registry", - "iana_admin_slug": "ftld-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "fTLD Registry", - "icann_registry_operator_slug": "ftld-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bar", @@ -14576,6 +14576,30 @@ "date_removed": null } }, + "registry_url": "http://nic.bar", + "whois_server": "whois.nic.bar", + "rdap_server": "https://rdap.registry.bar/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -14653,31 +14677,7 @@ } ] } - ], - "registry_url": "http://nic.bar", - "whois_server": "whois.nic.bar", - "rdap_server": "https://rdap.registry.bar/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "barcelona", @@ -14702,6 +14702,28 @@ "date_removed": null } }, + "registry_url": "http://www.barcelona.cat", + "whois_server": "whois.nic.barcelona", + "rdap_server": "https://rdap.nic.barcelona/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -14779,29 +14801,7 @@ } ] } - ], - "registry_url": "http://www.barcelona.cat", - "whois_server": "whois.nic.barcelona", - "rdap_server": "https://rdap.nic.barcelona/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] }, { "tld": "barclaycard", @@ -14826,6 +14826,29 @@ "date_removed": null } }, + "registry_url": "http://www.barclaycard.com/", + "whois_server": "whois.nic.barclaycard", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barclaycard", @@ -14903,30 +14926,7 @@ } ] } - ], - "registry_url": "http://www.barclaycard.com/", - "whois_server": "whois.nic.barclaycard", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "barclays", @@ -14951,6 +14951,29 @@ "date_removed": null } }, + "registry_url": "http://www.barclays.com/", + "whois_server": "whois.nic.barclays", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barclays", @@ -15028,30 +15051,7 @@ } ] } - ], - "registry_url": "http://www.barclays.com/", - "whois_server": "whois.nic.barclays", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "barefoot", @@ -15076,6 +15076,29 @@ "date_removed": null } }, + "registry_url": "http://www.barefootwine.com", + "whois_server": "whois.nic.barefoot", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.barefoot", @@ -15153,30 +15176,7 @@ } ] } - ], - "registry_url": "http://www.barefootwine.com", - "whois_server": "whois.nic.barefoot", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bargains", @@ -15201,6 +15201,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bargains", @@ -15316,34 +15343,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "baseball", @@ -15368,6 +15368,28 @@ "date_removed": null } }, + "registry_url": "http://www.mlb.com", + "whois_server": "whois.nic.baseball", + "rdap_server": "https://rdap.nic.baseball/", + "tld_created": "2016-09-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.baseball", @@ -15393,7 +15415,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15483,29 +15505,7 @@ } ] } - ], - "registry_url": "http://www.mlb.com", - "whois_server": "whois.nic.baseball", - "rdap_server": "https://rdap.nic.baseball/", - "tld_created": "2016-09-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "basketball", @@ -15530,6 +15530,28 @@ "date_removed": null } }, + "registry_url": "http://www.fiba.com/", + "whois_server": "whois.nic.basketball", + "rdap_server": "https://rdap.nic.basketball", + "tld_created": "2016-10-13", + "tld_updated": [ + "2024-11-14" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.basketball", @@ -15555,7 +15577,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15593,7 +15615,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15601,7 +15623,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15612,7 +15634,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15620,7 +15642,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15631,7 +15653,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15639,35 +15661,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.fiba.com/", - "whois_server": "whois.nic.basketball", - "rdap_server": "https://rdap.nic.basketball", - "tld_created": "2016-10-13", - "tld_updated": [ - "2024-11-14" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bauhaus", @@ -15692,84 +15692,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "anycast10.irondns.net", - "ipv4": [ - { - "ip": "195.253.64.12", - "asn": 8561, - "as_org": "KNIPPWORLDWI", - "as_country": "DE" - } - ], - "ipv6": [ - { - "ip": "2a01:5b0:4::c", - "asn": 8561, - "as_org": "KNIPPWORLDWI", - "as_country": "DE" - } - ] - }, - { - "hostname": "anycast23.irondns.net", - "ipv4": [ - { - "ip": "195.253.65.11", - "asn": 50611, - "as_org": "KNIPP-IRONDNS1-AS Technologiepark", - "as_country": "DE" - } - ], - "ipv6": [ - { - "ip": "2a01:5b0:5::b", - "asn": 50611, - "as_org": "KNIPP-IRONDNS1-AS Technologiepark", - "as_country": "DE" - } - ] - }, - { - "hostname": "anycast24.irondns.net", - "ipv4": [ - { - "ip": "195.253.65.12", - "asn": 50611, - "as_org": "KNIPP-IRONDNS1-AS Technologiepark", - "as_country": "DE" - } - ], - "ipv6": [ - { - "ip": "2a01:5b0:5::c", - "asn": 50611, - "as_org": "KNIPP-IRONDNS1-AS Technologiepark", - "as_country": "DE" - } - ] - }, - { - "hostname": "anycast9.irondns.net", - "ipv4": [ - { - "ip": "195.253.64.11", - "asn": 8561, - "as_org": "KNIPPWORLDWI", - "as_country": "DE" - } - ], - "ipv6": [ - { - "ip": "2a01:5b0:4::b", - "asn": 8561, - "as_org": "KNIPPWORLDWI", - "as_country": "DE" - } - ] - } - ], "registry_url": "http://www.bauhaus.info", "whois_server": "whois.nic.bauhaus", "rdap_server": "https://rdap.nic.bauhaus/", @@ -15792,30 +15714,135 @@ "as_org_slugs": [ "knipp-medien" ] - } - }, - { - "tld": "bayern", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Bayern Connect GmbH", - "admin": "GoDaddy Registry", - "tech": "Knipp Medien und Kommunikation GmbH" - }, - "icann": { - "registry_operator": "Bayern Connect GmbH", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-994-73142", - "registry_operator_country_code": null, - "date_contract_signed": "2014-01-23", - "date_delegated": "2014-05-03", - "contract_terminated": false, - "date_removed": null - } + }, + "nameservers": [ + { + "hostname": "anycast10.irondns.net", + "ipv4": [ + { + "ip": "195.253.64.12", + "asn": 8561, + "as_org": "KNIPPWORLDWI", + "as_country": "DE" + } + ], + "ipv6": [ + { + "ip": "2a01:5b0:4::c", + "asn": 8561, + "as_org": "KNIPPWORLDWI", + "as_country": "DE" + } + ] + }, + { + "hostname": "anycast23.irondns.net", + "ipv4": [ + { + "ip": "195.253.65.11", + "asn": 50611, + "as_org": "KNIPP-IRONDNS1-AS Technologiepark", + "as_country": "DE" + } + ], + "ipv6": [ + { + "ip": "2a01:5b0:5::b", + "asn": 50611, + "as_org": "KNIPP-IRONDNS1-AS Technologiepark", + "as_country": "DE" + } + ] + }, + { + "hostname": "anycast24.irondns.net", + "ipv4": [ + { + "ip": "195.253.65.12", + "asn": 50611, + "as_org": "KNIPP-IRONDNS1-AS Technologiepark", + "as_country": "DE" + } + ], + "ipv6": [ + { + "ip": "2a01:5b0:5::c", + "asn": 50611, + "as_org": "KNIPP-IRONDNS1-AS Technologiepark", + "as_country": "DE" + } + ] + }, + { + "hostname": "anycast9.irondns.net", + "ipv4": [ + { + "ip": "195.253.64.11", + "asn": 8561, + "as_org": "KNIPPWORLDWI", + "as_country": "DE" + } + ], + "ipv6": [ + { + "ip": "2a01:5b0:4::b", + "asn": 8561, + "as_org": "KNIPPWORLDWI", + "as_country": "DE" + } + ] + } + ] + }, + { + "tld": "bayern", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Bayern Connect GmbH", + "admin": "GoDaddy Registry", + "tech": "Knipp Medien und Kommunikation GmbH" + }, + "icann": { + "registry_operator": "Bayern Connect GmbH", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-994-73142", + "registry_operator_country_code": null, + "date_contract_signed": "2014-01-23", + "date_delegated": "2014-05-03", + "contract_terminated": false, + "date_removed": null + } + }, + "registry_url": "http://nic.bayern", + "whois_server": "whois.nic.bayern", + "rdap_server": "https://rdap.nic.bayern/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2023-06-13" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "UltraDNS" + ], + "as_org_slugs": [ + "knipp-medien", + "ultradns" + ], + "geographic_scope": "subdivision" }, "nameservers": [ { @@ -15918,7 +15945,7 @@ "ipv4": [ { "ip": "37.209.194.2", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -15970,33 +15997,7 @@ } ] } - ], - "registry_url": "http://nic.bayern", - "whois_server": "whois.nic.bayern", - "rdap_server": "https://rdap.nic.bayern/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2023-06-13" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "UltraDNS" - ], - "as_org_slugs": [ - "knipp-medien", - "ultradns" - ] - } + ] }, { "tld": "bb", @@ -16010,6 +16011,15 @@ "tech": "Ministry of Innovation, Science and Smart Technology" } }, + "registry_url": "http://www.whois.telecoms.gov.bb/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "country_name_iso": "Barbados", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.bb", @@ -16087,16 +16097,7 @@ } ] } - ], - "registry_url": "http://www.whois.telecoms.gov.bb/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "country_name_iso": "Barbados", - "geographic_scope": "country" - } + ] }, { "tld": "bbc", @@ -16121,14 +16122,37 @@ "date_removed": null } }, + "registry_url": "http://www.bbc.co.uk", + "whois_server": "whois.nic.bbc", + "rdap_server": "https://rdap.nominet.uk/bbc/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2021-11-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bbc", "ipv4": [ { "ip": "213.248.219.4", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -16146,8 +16170,8 @@ "ipv4": [ { "ip": "103.49.83.4", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -16274,30 +16298,7 @@ } ] } - ], - "registry_url": "http://www.bbc.co.uk", - "whois_server": "whois.nic.bbc", - "rdap_server": "https://rdap.nominet.uk/bbc/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2021-11-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "bbt", @@ -16322,6 +16323,29 @@ "date_removed": null } }, + "registry_url": "http://bbt.com", + "whois_server": "whois.nic.bbt", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-12", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bbt", @@ -16399,30 +16423,7 @@ } ] } - ], - "registry_url": "http://bbt.com", - "whois_server": "whois.nic.bbt", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-12", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bbva", @@ -16447,14 +16448,37 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/bbva/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bbva", "ipv4": [ { "ip": "213.248.219.44", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -16472,8 +16496,8 @@ "ipv4": [ { "ip": "103.49.83.44", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -16600,30 +16624,7 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/bbva/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "bcg", @@ -16648,6 +16649,29 @@ "date_removed": null } }, + "registry_url": "http://www.bcg.com", + "whois_server": "whois.nic.bcg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-11", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bcg", @@ -16725,30 +16749,7 @@ } ] } - ], - "registry_url": "http://www.bcg.com", - "whois_server": "whois.nic.bcg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-11", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bcn", @@ -16773,6 +16774,27 @@ "date_removed": null } }, + "registry_url": "http://www.barcelona.cat", + "whois_server": "whois.nic.bcn", + "rdap_server": "https://rdap.nic.bcn/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -16850,28 +16872,7 @@ } ] } - ], - "registry_url": "http://www.barcelona.cat", - "whois_server": "whois.nic.bcn", - "rdap_server": "https://rdap.nic.bcn/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] }, { "tld": "bd", @@ -16885,6 +16886,21 @@ "tech": "Bangladesh Telecommunications\nCompany Limited (BTCL)" } }, + "registry_url": "https://bdia.btcl.com.bd/", + "tld_created": "1999-05-20", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "country_name_iso": "Bangladesh", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bd-ns.anycast.pch.net", @@ -16963,21 +16979,6 @@ ] } ], - "registry_url": "https://bdia.btcl.com.bd/", - "tld_created": "1999-05-20", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "country_name_iso": "Bangladesh", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--54b7fta0cc" ] @@ -16994,6 +16995,30 @@ "tech": "DNS Belgium vzw/asbl" } }, + "registry_url": "https://www.dnsbelgium.be", + "whois_server": "whois.dns.be", + "tld_created": "1988-08-05", + "tld_updated": [ + "2026-01-12" + ], + "annotations": { + "iana_sponsor_alias": "DNS Belgium", + "iana_sponsor_slug": "dns-belgium", + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "country_name_iso": "Belgium", + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nsset.be", @@ -17109,31 +17134,7 @@ } ] } - ], - "registry_url": "https://www.dnsbelgium.be", - "whois_server": "whois.dns.be", - "tld_created": "1988-08-05", - "tld_updated": [ - "2026-01-12" - ], - "annotations": { - "iana_sponsor_alias": "DNS Belgium", - "iana_sponsor_slug": "dns-belgium", - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "country_name_iso": "Belgium", - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "beats", @@ -17158,84 +17159,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a0.nic.beats", - "ipv4": [ - { - "ip": "65.22.60.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:3a::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "a2.nic.beats", - "ipv4": [ - { - "ip": "65.22.63.9", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:3d::9", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "b0.nic.beats", - "ipv4": [ - { - "ip": "65.22.61.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:3b::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "c0.nic.beats", - "ipv4": [ - { - "ip": "65.22.62.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:3c::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - } - ], "registry_url": "http://beatsbydre.com", "whois_server": "whois.nic.beats", "rdap_server": "https://rdap.identitydigital.services/rdap/", @@ -17262,7 +17185,85 @@ "as_org_slugs": [ "identity-digital" ] - } + }, + "nameservers": [ + { + "hostname": "a0.nic.beats", + "ipv4": [ + { + "ip": "65.22.60.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:3a::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "a2.nic.beats", + "ipv4": [ + { + "ip": "65.22.63.9", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:3d::9", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "b0.nic.beats", + "ipv4": [ + { + "ip": "65.22.61.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:3b::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "c0.nic.beats", + "ipv4": [ + { + "ip": "65.22.62.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:3c::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + } + ] }, { "tld": "beauty", @@ -17287,6 +17288,34 @@ "date_removed": null } }, + "registry_url": "https://nic.beauty/", + "whois_server": "whois.nic.beauty", + "rdap_server": "https://rdap.centralnic.com/beauty/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.beauty", @@ -17364,35 +17393,7 @@ } ] } - ], - "registry_url": "https://nic.beauty/", - "whois_server": "whois.nic.beauty", - "rdap_server": "https://rdap.centralnic.com/beauty/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "beer", @@ -17417,6 +17418,34 @@ "date_removed": null } }, + "registry_url": "http://nic.beer/", + "whois_server": "whois.nic.beer", + "rdap_server": "https://rdap.nic.beer/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.beer", @@ -17442,7 +17471,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17480,7 +17509,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17488,7 +17517,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17499,7 +17528,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17507,7 +17536,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17518,7 +17547,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -17526,41 +17555,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.beer/", - "whois_server": "whois.nic.beer", - "rdap_server": "https://rdap.nic.beer/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bentley", @@ -17615,6 +17616,28 @@ "date_removed": null } }, + "registry_url": "http://nic.berlin/", + "whois_server": "whois.nic.berlin", + "rdap_server": "https://rdap.nic.berlin/v1/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.nic.berlin", @@ -17673,29 +17696,7 @@ } ] } - ], - "registry_url": "http://nic.berlin/", - "whois_server": "whois.nic.berlin", - "rdap_server": "https://rdap.nic.berlin/v1/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "city" - } + ] }, { "tld": "best", @@ -17720,6 +17721,28 @@ "date_removed": null } }, + "registry_url": "https://www.domains.best", + "whois_server": "whois.nic.best", + "rdap_server": "https://rdap.centralnic.com/best/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.best", @@ -17797,29 +17820,7 @@ } ] } - ], - "registry_url": "https://www.domains.best", - "whois_server": "whois.nic.best", - "rdap_server": "https://rdap.centralnic.com/best/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "bestbuy", @@ -17844,6 +17845,29 @@ "date_removed": null } }, + "registry_url": "http://nic.bestbuy", + "whois_server": "whois.nic.bestbuy", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-01-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bestbuy", @@ -17921,30 +17945,7 @@ } ] } - ], - "registry_url": "http://nic.bestbuy", - "whois_server": "whois.nic.bestbuy", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-01-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bet", @@ -17969,6 +17970,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bet", @@ -18046,34 +18074,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bf", @@ -18087,6 +18088,26 @@ "tech": "Association Burkinabè des Domaines Internet (A.B.D.I.)" } }, + "registry_url": "https://www.registre.bf", + "whois_server": "whois.registre.bf", + "tld_created": "1993-03-29", + "tld_updated": [ + "2025-04-30" + ], + "annotations": { + "country_name_iso": "Burkina Faso", + "as_org_aliases": [ + "AFNIC", + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registre.bf", @@ -18150,27 +18171,7 @@ } ] } - ], - "registry_url": "https://www.registre.bf", - "whois_server": "whois.registre.bf", - "tld_created": "1993-03-29", - "tld_updated": [ - "2025-04-30" - ], - "annotations": { - "country_name_iso": "Burkina Faso", - "as_org_aliases": [ - "AFNIC", - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bg", @@ -18184,6 +18185,22 @@ "tech": "Register.BG" } }, + "registry_url": "http://www.register.bg", + "whois_server": "whois.register.bg", + "tld_created": "1995-01-03", + "tld_updated": [ + "2021-02-24" + ], + "annotations": { + "country_name_iso": "Bulgaria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bg", @@ -18300,22 +18317,6 @@ ] } ], - "registry_url": "http://www.register.bg", - "whois_server": "whois.register.bg", - "tld_created": "1995-01-03", - "tld_updated": [ - "2021-02-24" - ], - "annotations": { - "country_name_iso": "Bulgaria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--90ae" ] @@ -18332,6 +18333,25 @@ "tech": "CentralNic" } }, + "whois_server": "whois.nic.bh", + "rdap_server": "https://rdap.centralnic.com/bh/", + "tld_created": "1994-02-01", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "supplemental", + "country_name_iso": "Bahrain", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bh", @@ -18410,25 +18430,6 @@ ] } ], - "whois_server": "whois.nic.bh", - "rdap_server": "https://rdap.centralnic.com/bh/", - "tld_created": "1994-02-01", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "supplemental", - "country_name_iso": "Bahrain", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbcpq6gpa1a" ] @@ -18456,6 +18457,29 @@ "date_removed": null } }, + "registry_url": "http://www.bharti.com/wps/wcm/connect/BhartiPortal/Bharti/home", + "whois_server": "whois.nic.bharti", + "rdap_server": "https://rdap.nic.bharti", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bharti", @@ -18481,7 +18505,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18519,7 +18543,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18527,7 +18551,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18538,7 +18562,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18546,7 +18570,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18557,7 +18581,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18565,36 +18589,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.bharti.com/wps/wcm/connect/BhartiPortal/Bharti/home", - "whois_server": "whois.nic.bharti", - "rdap_server": "https://rdap.nic.bharti", - "tld_created": "2015-05-08", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bi", @@ -18608,6 +18609,22 @@ "tech": "Centre National de l'Informatique" } }, + "registry_url": "http://www.nic.bi", + "whois_server": "whois1.nic.bi", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-09-05" + ], + "annotations": { + "country_name_iso": "Burundi", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.nic.bi", @@ -18690,23 +18707,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.bi", - "whois_server": "whois1.nic.bi", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-09-05" - ], - "annotations": { - "country_name_iso": "Burundi", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bible", @@ -18731,6 +18732,28 @@ "date_removed": null } }, + "registry_url": "http://get.bible", + "whois_server": "whois.nic.bible", + "rdap_server": "https://rdap.nic.bible/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bible", @@ -18756,7 +18779,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -18846,29 +18869,7 @@ } ] } - ], - "registry_url": "http://get.bible", - "whois_server": "whois.nic.bible", - "rdap_server": "https://rdap.nic.bible/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bid", @@ -18893,6 +18894,32 @@ "date_removed": null } }, + "registry_url": "http://nic.bid", + "whois_server": "whois.nic.bid", + "rdap_server": "https://rdap.nic.bid/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.bid", @@ -18918,7 +18945,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -19008,33 +19035,7 @@ } ] } - ], - "registry_url": "http://nic.bid", - "whois_server": "whois.nic.bid", - "rdap_server": "https://rdap.nic.bid/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bike", @@ -19059,6 +19060,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bike", @@ -19174,34 +19202,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bing", @@ -19226,14 +19227,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/bing/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bing", "ipv4": [ { "ip": "213.248.219.130", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -19251,8 +19282,8 @@ "ipv4": [ { "ip": "103.49.83.130", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -19379,37 +19410,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/bing/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "bingo", @@ -19434,6 +19435,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bingo", @@ -19549,12 +19577,36 @@ } ] } - ], + ] + }, + { + "tld": "bio", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Identity Digital Limited", + "admin": "Identity Digital Limited", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Identity Digital Domains Limited", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1000-94806", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-06-02", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", + "tld_created": "2014-05-15", "tld_updated": [ - "2025-10-07" + "2025-09-04" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -19576,30 +19628,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "bio", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Identity Digital Limited", - "admin": "Identity Digital Limited", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Identity Digital Domains Limited", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1000-94806", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-06-02", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -19678,34 +19706,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "biz", @@ -19730,6 +19731,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.biz", + "whois_server": "whois.nic.biz", + "rdap_server": "https://rdap.nic.biz/", + "tld_created": "2001-06-26", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gtld.biz", @@ -19836,7 +19865,7 @@ "ipv4": [ { "ip": "37.209.194.13", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -19869,35 +19898,7 @@ } ] } - ], - "registry_url": "http://www.nic.biz", - "whois_server": "whois.nic.biz", - "rdap_server": "https://rdap.nic.biz/", - "tld_created": "2001-06-26", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bj", @@ -19911,6 +19912,24 @@ "tech": "JENY SAS" } }, + "registry_url": "http://www.nic.bj", + "whois_server": "whois.nic.bj", + "tld_created": "1996-01-18", + "tld_updated": [ + "2023-04-14" + ], + "annotations": { + "country_name_iso": "Benin", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-bj.afrinic.net", @@ -19993,25 +20012,7 @@ } ] } - ], - "registry_url": "http://www.nic.bj", - "whois_server": "whois.nic.bj", - "tld_created": "1996-01-18", - "tld_updated": [ - "2023-04-14" - ], - "annotations": { - "country_name_iso": "Benin", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bl", @@ -20056,6 +20057,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.black", @@ -20133,34 +20161,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "blackfriday", @@ -20185,6 +20186,34 @@ "date_removed": null } }, + "registry_url": "http://nic.blackfriday/", + "whois_server": "whois.nic.blackfriday", + "rdap_server": "https://rdap.nic.blackfriday/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.blackfriday", @@ -20210,7 +20239,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20248,7 +20277,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20256,7 +20285,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20267,7 +20296,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20275,7 +20304,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20286,7 +20315,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -20294,41 +20323,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.blackfriday/", - "whois_server": "whois.nic.blackfriday", - "rdap_server": "https://rdap.nic.blackfriday/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "blanco", @@ -20383,6 +20384,35 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.blockbuster", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -20460,36 +20490,7 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.blockbuster", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "blog", @@ -20514,6 +20515,30 @@ "date_removed": null } }, + "registry_url": "http://nic.blog", + "whois_server": "whois.nic.blog", + "rdap_server": "https://rdap.blog.fury.ca/rdap/", + "tld_created": "2016-05-12", + "tld_updated": [ + "2026-05-05" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.blog", @@ -20591,31 +20616,7 @@ } ] } - ], - "registry_url": "http://nic.blog", - "whois_server": "whois.nic.blog", - "rdap_server": "https://rdap.blog.fury.ca/rdap/", - "tld_created": "2016-05-12", - "tld_updated": [ - "2026-05-05" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] }, { "tld": "bloomberg", @@ -20640,6 +20641,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bloomberg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bloomberg", @@ -20755,29 +20778,7 @@ } ] } - ], - "whois_server": "whois.nic.bloomberg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "blue", @@ -20802,6 +20803,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.blue", @@ -20898,34 +20926,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bm", @@ -20939,6 +20940,26 @@ "tech": "Afilias" } }, + "registry_url": "http://www.bermudanic.bm", + "whois_server": "whois.nic.bm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1993-03-31", + "tld_updated": [ + "2024-03-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "country_name_iso": "Bermuda", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.bm.afilias-nst.info", @@ -21054,27 +21075,7 @@ } ] } - ], - "registry_url": "http://www.bermudanic.bm", - "whois_server": "whois.nic.bm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1993-03-31", - "tld_updated": [ - "2024-03-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "country_name_iso": "Bermuda", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bms", @@ -21099,6 +21100,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bms", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bms", @@ -21176,29 +21199,7 @@ } ] } - ], - "whois_server": "whois.nic.bms", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bmw", @@ -21223,6 +21224,35 @@ "date_removed": null } }, + "registry_url": "http://nic.bmw.com", + "whois_server": "whois.nic.bmw", + "rdap_server": "https://rdap.centralnic.com/bmw", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_sponsor_alias": "BMW", + "iana_sponsor_slug": "bmw", + "iana_admin_alias": "BMW", + "iana_admin_slug": "bmw", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "BMW", + "icann_registry_operator_slug": "bmw", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.bmw", @@ -21300,36 +21330,7 @@ } ] } - ], - "registry_url": "http://nic.bmw.com", - "whois_server": "whois.nic.bmw", - "rdap_server": "https://rdap.centralnic.com/bmw", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_sponsor_alias": "BMW", - "iana_sponsor_slug": "bmw", - "iana_admin_alias": "BMW", - "iana_admin_slug": "bmw", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "BMW", - "icann_registry_operator_slug": "bmw", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "bn", @@ -21343,6 +21344,24 @@ "tech": "Authority for Info-communications Technology Industry of Brunei Darussalam" } }, + "registry_url": "http://www.bnnic.bn", + "whois_server": "whois.bnnic.bn", + "tld_created": "1994-06-03", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "country_name_iso": "Brunei Darussalam", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bn-ns.anycast.pch.net", @@ -21406,25 +21425,7 @@ } ] } - ], - "registry_url": "http://www.bnnic.bn", - "whois_server": "whois.bnnic.bn", - "tld_created": "1994-06-03", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "country_name_iso": "Brunei Darussalam", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bnl", @@ -21478,6 +21479,29 @@ "date_removed": null } }, + "registry_url": "http://www.bnpparibas.com/en/about-us", + "whois_server": "whois.nic.bnpparibas", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bnpparibas", @@ -21555,30 +21579,7 @@ } ] } - ], - "registry_url": "http://www.bnpparibas.com/en/about-us", - "whois_server": "whois.nic.bnpparibas", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bo", @@ -21592,6 +21593,24 @@ "tech": "Agencia para el Desarrollo de la Información de la Sociedad en Bolivia" } }, + "registry_url": "http://www.nic.bo", + "whois_server": "whois.nic.bo", + "tld_created": "1991-02-26", + "tld_updated": [ + "2024-05-23" + ], + "annotations": { + "country_name_iso": "Bolivia, Plurinational State of", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycast.ns.nic.bo", @@ -21662,25 +21681,7 @@ } ] } - ], - "registry_url": "http://www.nic.bo", - "whois_server": "whois.nic.bo", - "tld_created": "1991-02-26", - "tld_updated": [ - "2024-05-23" - ], - "annotations": { - "country_name_iso": "Bolivia, Plurinational State of", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "boats", @@ -21705,6 +21706,34 @@ "date_removed": null } }, + "registry_url": "http://nic.boats", + "whois_server": "whois.nic.boats", + "rdap_server": "https://rdap.centralnic.com/boats/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.boats", @@ -21782,35 +21811,7 @@ } ] } - ], - "registry_url": "http://nic.boats", - "whois_server": "whois.nic.boats", - "rdap_server": "https://rdap.centralnic.com/boats/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "boehringer", @@ -21835,6 +21836,29 @@ "date_removed": null } }, + "registry_url": "http://www.boehringer-ingelheim.com/", + "whois_server": "whois.nic.boehringer", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.boehringer", @@ -21912,30 +21936,7 @@ } ] } - ], - "registry_url": "http://www.boehringer-ingelheim.com/", - "whois_server": "whois.nic.boehringer", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bofa", @@ -21960,6 +21961,29 @@ "date_removed": null } }, + "registry_url": "http://bofa.com", + "whois_server": "whois.nic.bofa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.bofa", @@ -22075,30 +22099,7 @@ } ] } - ], - "registry_url": "http://bofa.com", - "whois_server": "whois.nic.bofa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bom", @@ -22123,6 +22124,18 @@ "date_removed": null } }, + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -22238,19 +22251,7 @@ } ] } - ], - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] }, { "tld": "bond", @@ -22275,6 +22276,32 @@ "date_removed": null } }, + "registry_url": "http://nic.bond", + "whois_server": "whois.nic.bond", + "rdap_server": "https://rdap.centralnic.com/bond", + "tld_created": "2014-10-30", + "tld_updated": [ + "2024-04-18" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.bond", @@ -22352,33 +22379,7 @@ } ] } - ], - "registry_url": "http://nic.bond", - "whois_server": "whois.nic.bond", - "rdap_server": "https://rdap.centralnic.com/bond", - "tld_created": "2014-10-30", - "tld_updated": [ - "2024-04-18" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "boo", @@ -22403,6 +22404,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -22499,34 +22527,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "book", @@ -22551,14 +22552,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.book", + "rdap_server": "https://rdap.nominet.uk/book/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.book", "ipv4": [ { "ip": "213.248.218.61", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -22576,8 +22606,8 @@ "ipv4": [ { "ip": "103.49.82.61", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -22704,36 +22734,7 @@ } ] } - ], - "registry_url": "http://www.nic.book", - "rdap_server": "https://rdap.nominet.uk/book/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "booking", @@ -22758,6 +22759,27 @@ "date_removed": null } }, + "registry_url": "http://www.booking.com", + "rdap_server": "https://rdap.nic.booking/", + "tld_created": "2016-07-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.booking", @@ -22783,7 +22805,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -22873,28 +22895,7 @@ } ] } - ], - "registry_url": "http://www.booking.com", - "rdap_server": "https://rdap.nic.booking/", - "tld_created": "2016-07-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "boots", @@ -22949,6 +22950,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.bosch", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bosch", @@ -23026,29 +23049,7 @@ } ] } - ], - "whois_server": "whois.nic.bosch", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bostik", @@ -23073,6 +23074,31 @@ "date_removed": null } }, + "registry_url": "https://www.bostik.com", + "whois_server": "whois.nic.bostik", + "rdap_server": "https://rdap.nic.bostik", + "tld_created": "2015-11-06", + "tld_updated": [ + "2025-05-09" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -23131,32 +23157,7 @@ } ] } - ], - "registry_url": "https://www.bostik.com", - "whois_server": "whois.nic.bostik", - "rdap_server": "https://rdap.nic.bostik", - "tld_created": "2015-11-06", - "tld_updated": [ - "2025-05-09" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "boston", @@ -23181,6 +23182,35 @@ "date_removed": null } }, + "registry_url": "http://nic.boston/", + "whois_server": "whois.nic.boston", + "rdap_server": "https://rdap.nic.boston/", + "tld_created": "2016-11-21", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.boston", @@ -23206,7 +23236,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23244,7 +23274,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23252,7 +23282,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23263,7 +23293,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23271,7 +23301,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23282,7 +23312,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -23290,42 +23320,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.boston/", - "whois_server": "whois.nic.boston", - "rdap_server": "https://rdap.nic.boston/", - "tld_created": "2016-11-21", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "bot", @@ -23350,14 +23351,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.bot", + "rdap_server": "https://rdap.nominet.uk/bot/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.bot", "ipv4": [ { "ip": "213.248.218.55", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -23375,8 +23405,8 @@ "ipv4": [ { "ip": "103.49.82.55", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -23503,36 +23533,7 @@ } ] } - ], - "registry_url": "http://www.nic.bot", - "rdap_server": "https://rdap.nominet.uk/bot/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "boutique", @@ -23557,6 +23558,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.boutique", @@ -23672,34 +23700,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "box", @@ -23724,6 +23725,28 @@ "date_removed": null } }, + "registry_url": "https://intercap.inc", + "whois_server": "whois.nic.box", + "rdap_server": "https://rdap.centralnic.com/box/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.box", @@ -23801,29 +23824,7 @@ } ] } - ], - "registry_url": "https://intercap.inc", - "whois_server": "whois.nic.box", - "rdap_server": "https://rdap.centralnic.com/box/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "bq", @@ -23851,6 +23852,18 @@ "tech": "Registro .br" } }, + "registry_url": "http://registro.br/", + "whois_server": "whois.registro.br", + "rdap_server": "https://rdap.registro.br/", + "tld_created": "1989-04-18", + "tld_updated": [ + "2023-11-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Brazil", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.br", @@ -23966,19 +23979,7 @@ } ] } - ], - "registry_url": "http://registro.br/", - "whois_server": "whois.registro.br", - "rdap_server": "https://rdap.registro.br/", - "tld_created": "1989-04-18", - "tld_updated": [ - "2023-11-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Brazil", - "geographic_scope": "country" - } + ] }, { "tld": "bradesco", @@ -24003,6 +24004,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.bradesco/", + "whois_server": "whois.nic.bradesco", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.bradesco", @@ -24080,30 +24104,7 @@ } ] } - ], - "registry_url": "http://www.nic.bradesco/", - "whois_server": "whois.nic.bradesco", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "bridgestone", @@ -24128,6 +24129,29 @@ "date_removed": null } }, + "registry_url": "http://www.bridgestone.com/", + "whois_server": "whois.nic.bridgestone", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2023-06-22" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -24153,7 +24177,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -24198,30 +24222,7 @@ } ] } - ], - "registry_url": "http://www.bridgestone.com/", - "whois_server": "whois.nic.bridgestone", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2023-06-22" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "broadway", @@ -24246,14 +24247,39 @@ "date_removed": null } }, + "registry_url": "http://nic.broadway", + "rdap_server": "https://rdap.nominet.uk/broadway/", + "tld_created": "2015-10-08", + "tld_updated": [ + "2025-05-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.broadway", "ipv4": [ { "ip": "213.248.219.38", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -24271,8 +24297,8 @@ "ipv4": [ { "ip": "103.49.83.38", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -24399,32 +24425,7 @@ } ] } - ], - "registry_url": "http://nic.broadway", - "rdap_server": "https://rdap.nominet.uk/broadway/", - "tld_created": "2015-10-08", - "tld_updated": [ - "2025-05-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "broker", @@ -24449,6 +24450,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.broker", @@ -24564,34 +24592,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "brother", @@ -24616,6 +24617,29 @@ "date_removed": null } }, + "registry_url": "http://www.brother.com/", + "whois_server": "whois.nic.brother", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -24641,7 +24665,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -24686,30 +24710,7 @@ } ] } - ], - "registry_url": "http://www.brother.com/", - "whois_server": "whois.nic.brother", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "brussels", @@ -24734,6 +24735,32 @@ "date_removed": null } }, + "registry_url": "http://www.nic.brussels", + "rdap_server": "https://rdap.nic.brussels", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nsset.brussels", @@ -24849,33 +24876,7 @@ } ] } - ], - "registry_url": "http://www.nic.brussels", - "rdap_server": "https://rdap.nic.brussels", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "bs", @@ -24889,6 +24890,23 @@ "tech": "University of The Bahamas" } }, + "registry_url": "http://www.register.bs", + "tld_created": "1991-09-03", + "tld_updated": [ + "2019-08-12" + ], + "annotations": { + "country_name_iso": "Bahamas", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.dns.bs", @@ -24947,24 +24965,7 @@ } ] } - ], - "registry_url": "http://www.register.bs", - "tld_created": "1991-09-03", - "tld_updated": [ - "2019-08-12" - ], - "annotations": { - "country_name_iso": "Bahamas", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bt", @@ -24978,6 +24979,21 @@ "tech": "Bhutan Telecom Limited" } }, + "registry_url": "http://www.nic.bt", + "tld_created": "1997-07-16", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Bhutan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "auth00.ns.uu.net", @@ -25098,22 +25114,7 @@ } ] } - ], - "registry_url": "http://www.nic.bt", - "tld_created": "1997-07-16", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Bhutan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "budapest", @@ -25198,6 +25199,28 @@ "date_removed": null } }, + "registry_url": "https://about.build/", + "whois_server": "whois.nic.build", + "rdap_server": "https://rdap.centralnic.com/build/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.build", @@ -25275,29 +25298,7 @@ } ] } - ], - "registry_url": "https://about.build/", - "whois_server": "whois.nic.build", - "rdap_server": "https://rdap.centralnic.com/build/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "builders", @@ -25322,6 +25323,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.builders", @@ -25437,10 +25465,34 @@ } ] } - ], + ] + }, + { + "tld": "business", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1367-68057", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2014-08-22", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", + "tld_created": "2014-08-18", "tld_updated": [ "2025-10-07" ], @@ -25464,30 +25516,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "business", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1367-68057", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2014-08-22", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -25604,34 +25632,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "buy", @@ -25656,14 +25657,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.buy", + "rdap_server": "https://rdap.nominet.uk/buy/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.buy", "ipv4": [ { "ip": "213.248.218.62", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -25681,8 +25711,8 @@ "ipv4": [ { "ip": "103.49.82.62", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -25809,36 +25839,7 @@ } ] } - ], - "registry_url": "http://www.nic.buy", - "rdap_server": "https://rdap.nominet.uk/buy/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "buzz", @@ -25863,6 +25864,28 @@ "date_removed": null } }, + "registry_url": "http://www.buzznames.biz", + "whois_server": "whois.nic.buzz", + "rdap_server": "https://rdap.nic.buzz/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.buzz", @@ -25888,7 +25911,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -25978,29 +26001,7 @@ } ] } - ], - "registry_url": "http://www.buzznames.biz", - "whois_server": "whois.nic.buzz", - "rdap_server": "https://rdap.nic.buzz/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "bv", @@ -26014,6 +26015,15 @@ "tech": "Norid A/S" } }, + "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-bv/", + "tld_created": "1997-08-21", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "country_name_iso": "Bouvet Island", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.bv", @@ -26148,16 +26158,7 @@ } ] } - ], - "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-bv/", - "tld_created": "1997-08-21", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "country_name_iso": "Bouvet Island", - "geographic_scope": "country" - } + ] }, { "tld": "bw", @@ -26171,6 +26172,22 @@ "tech": "Botswana Communications Regulatory Authority (BOCRA)" } }, + "registry_url": "http://nic.net.bw", + "whois_server": "whois.nic.net.bw", + "tld_created": "1993-03-19", + "tld_updated": [ + "2024-05-24" + ], + "annotations": { + "country_name_iso": "Botswana", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.net.bw", @@ -26234,23 +26251,7 @@ } ] } - ], - "registry_url": "http://nic.net.bw", - "whois_server": "whois.nic.net.bw", - "tld_created": "1993-03-19", - "tld_updated": [ - "2024-05-24" - ], - "annotations": { - "country_name_iso": "Botswana", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "by", @@ -26264,6 +26265,16 @@ "tech": "Belarusian Cloud Technologies LLC" } }, + "registry_url": "https://cctld.by", + "whois_server": "whois.cctld.by", + "tld_created": "1994-05-10", + "tld_updated": [ + "2025-01-09" + ], + "annotations": { + "country_name_iso": "Belarus", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.tld.becloudby.com", @@ -26354,16 +26365,6 @@ "ipv6": [] } ], - "registry_url": "https://cctld.by", - "whois_server": "whois.cctld.by", - "tld_created": "1994-05-10", - "tld_updated": [ - "2025-01-09" - ], - "annotations": { - "country_name_iso": "Belarus", - "geographic_scope": "country" - }, "idn": [ "xn--90ais" ] @@ -26380,6 +26381,23 @@ "tech": "University Management Ltd" } }, + "registry_url": "http://www.belizenic.bz", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2020-11-23" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Belize", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -26495,24 +26513,7 @@ } ] } - ], - "registry_url": "http://www.belizenic.bz", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2020-11-23" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Belize", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "bzh", @@ -26537,6 +26538,33 @@ "date_removed": null } }, + "registry_url": "https://www.pik.bzh", + "whois_server": "whois.nic.bzh", + "rdap_server": "https://rdap.nic.bzh", + "tld_created": "2014-05-29", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "breton" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -26595,34 +26623,7 @@ } ] } - ], - "registry_url": "https://www.pik.bzh", - "whois_server": "whois.nic.bzh", - "rdap_server": "https://rdap.nic.bzh", - "tld_created": "2014-05-29", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "breton" - } + ] }, { "tld": "ca", @@ -26636,6 +26637,32 @@ "tech": "CIRA" } }, + "registry_url": "http://www.cira.ca/", + "whois_server": "whois.cira.ca", + "rdap_server": "https://rdap.ca.fury.ca/rdap/", + "tld_created": "1987-05-14", + "tld_updated": [ + "2026-03-16" + ], + "annotations": { + "iana_admin_alias": "CIRA", + "iana_admin_slug": "cira", + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "country_name_iso": "Canada", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any.ca-servers.ca", @@ -26713,33 +26740,7 @@ } ] } - ], - "registry_url": "http://www.cira.ca/", - "whois_server": "whois.cira.ca", - "rdap_server": "https://rdap.ca.fury.ca/rdap/", - "tld_created": "1987-05-14", - "tld_updated": [ - "2026-03-16" - ], - "annotations": { - "iana_admin_alias": "CIRA", - "iana_admin_slug": "cira", - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "country_name_iso": "Canada", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cab", @@ -26764,6 +26765,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cab", @@ -26879,10 +26907,34 @@ } ] } - ], + ] + }, + { + "tld": "cafe", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1370-88467", + "registry_operator_country_code": null, + "date_contract_signed": "2015-02-11", + "date_delegated": "2015-04-05", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", + "tld_created": "2015-03-12", "tld_updated": [ "2025-10-07" ], @@ -26906,30 +26958,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "cafe", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1370-88467", - "registry_operator_country_code": null, - "date_contract_signed": "2015-02-11", - "date_delegated": "2015-04-05", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -27046,34 +27074,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cal", @@ -27098,6 +27099,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -27194,34 +27222,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "call", @@ -27246,14 +27247,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.call", + "rdap_server": "https://rdap.nominet.uk/call/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.call", "ipv4": [ { "ip": "213.248.218.63", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -27271,8 +27301,8 @@ "ipv4": [ { "ip": "103.49.82.63", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -27399,36 +27429,7 @@ } ] } - ], - "registry_url": "http://www.nic.call", - "rdap_server": "https://rdap.nominet.uk/call/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "calvinklein", @@ -27453,6 +27454,28 @@ "date_removed": null } }, + "registry_url": "http://www.pvh.com/", + "rdap_server": "https://rdap.nic.calvinklein/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.calvinklein", @@ -27478,7 +27501,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -27568,29 +27591,7 @@ } ] } - ], - "registry_url": "http://www.pvh.com/", - "rdap_server": "https://rdap.nic.calvinklein/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cam", @@ -27615,6 +27616,28 @@ "date_removed": null } }, + "registry_url": "https://nic.cam/", + "whois_server": "whois.nic.cam", + "rdap_server": "https://rdap.centralnic.com/cam/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2026-01-13" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cam", @@ -27692,29 +27715,7 @@ } ] } - ], - "registry_url": "https://nic.cam/", - "whois_server": "whois.nic.cam", - "rdap_server": "https://rdap.centralnic.com/cam/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2026-01-13" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "camera", @@ -27739,6 +27740,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.camera", @@ -27854,10 +27882,34 @@ } ] } - ], + ] + }, + { + "tld": "camp", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1373-83008", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-17", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", + "tld_created": "2013-12-12", "tld_updated": [ "2025-10-07" ], @@ -27881,30 +27933,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "camp", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1373-83008", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-17", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -28021,34 +28049,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cancerresearch", @@ -28102,6 +28103,31 @@ "date_removed": null } }, + "registry_url": "http://nic.canon", + "whois_server": "whois.nic.canon", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -28127,7 +28153,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28172,32 +28198,7 @@ } ] } - ], - "registry_url": "http://nic.canon", - "whois_server": "whois.nic.canon", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "capetown", @@ -28222,6 +28223,33 @@ "date_removed": null } }, + "registry_url": "http://registry.net.za", + "whois_server": "whois.nic.capetown", + "rdap_server": "https://rdap.nic.capetown/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -28280,34 +28308,7 @@ } ] } - ], - "registry_url": "http://registry.net.za", - "whois_server": "whois.nic.capetown", - "rdap_server": "https://rdap.nic.capetown/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] }, { "tld": "capital", @@ -28332,6 +28333,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.capital", @@ -28447,34 +28475,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "capitalone", @@ -28499,6 +28500,29 @@ "date_removed": null } }, + "registry_url": "http://www.capitalone.com", + "whois_server": "whois.nic.capitalone", + "rdap_server": "https://rdap.nic.capitalone", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-08-13" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.capitalone", @@ -28524,7 +28548,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28562,7 +28586,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28570,7 +28594,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28581,7 +28605,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28589,7 +28613,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28600,7 +28624,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28608,36 +28632,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.capitalone.com", - "whois_server": "whois.nic.capitalone", - "rdap_server": "https://rdap.nic.capitalone", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-08-13" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "car", @@ -28662,6 +28663,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.car", + "whois_server": "whois.nic.car", + "rdap_server": "https://rdap.centralnic.com/car/", + "tld_created": "2015-08-26", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.car", @@ -28739,35 +28768,7 @@ } ] } - ], - "registry_url": "http://www.nic.car", - "whois_server": "whois.nic.car", - "rdap_server": "https://rdap.centralnic.com/car/", - "tld_created": "2015-08-26", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "caravan", @@ -28792,6 +28793,28 @@ "date_removed": null } }, + "registry_url": "http://www.caravan.com", + "rdap_server": "https://rdap.nic.caravan/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.caravan", @@ -28817,7 +28840,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -28907,29 +28930,7 @@ } ] } - ], - "registry_url": "http://www.caravan.com", - "rdap_server": "https://rdap.nic.caravan/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cards", @@ -28954,6 +28955,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cards", @@ -29069,10 +29097,34 @@ } ] } - ], + ] + }, + { + "tld": "care", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1374-92093", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", + "tld_created": "2014-04-17", "tld_updated": [ "2025-10-07" ], @@ -29096,30 +29148,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "care", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1374-92093", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -29236,34 +29264,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "career", @@ -29288,14 +29289,42 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/career/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.career", "ipv4": [ { "ip": "213.248.219.121", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -29313,8 +29342,8 @@ "ipv4": [ { "ip": "103.49.83.121", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -29441,35 +29470,7 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/career/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "careers", @@ -29494,6 +29495,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.careers", @@ -29609,34 +29637,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cars", @@ -29661,6 +29662,34 @@ "date_removed": null } }, + "registry_url": "http://nic.cars", + "whois_server": "whois.nic.cars", + "rdap_server": "https://rdap.centralnic.com/cars/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cars", @@ -29738,35 +29767,7 @@ } ] } - ], - "registry_url": "http://nic.cars", - "whois_server": "whois.nic.cars", - "rdap_server": "https://rdap.centralnic.com/cars/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "cartier", @@ -29821,6 +29822,34 @@ "date_removed": null } }, + "registry_url": "http://nic.casa/", + "whois_server": "whois.nic.casa", + "rdap_server": "https://rdap.nic.casa/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.casa", @@ -29846,7 +29875,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29884,7 +29913,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29892,7 +29921,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29903,7 +29932,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29911,7 +29940,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29922,7 +29951,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -29930,41 +29959,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.casa/", - "whois_server": "whois.nic.casa", - "rdap_server": "https://rdap.nic.casa/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "case", @@ -29989,6 +29990,28 @@ "date_removed": null } }, + "registry_url": "https://www.digity.case/case", + "whois_server": "whois.nic.case", + "rdap_server": "https://rdap.centralnic.com/case/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2023-12-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.case", @@ -30066,29 +30089,7 @@ } ] } - ], - "registry_url": "https://www.digity.case/case", - "whois_server": "whois.nic.case", - "rdap_server": "https://rdap.centralnic.com/case/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2023-12-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "caseih", @@ -30143,6 +30144,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cash", @@ -30258,10 +30286,34 @@ } ] } - ], + ] + }, + { + "tld": "casino", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1382-33633", + "registry_operator_country_code": null, + "date_contract_signed": "2014-12-18", + "date_delegated": "2015-02-19", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2015-02-13", "tld_updated": [ "2025-10-07" ], @@ -30285,30 +30337,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "casino", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1382-33633", - "registry_operator_country_code": null, - "date_contract_signed": "2014-12-18", - "date_delegated": "2015-02-19", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -30425,34 +30453,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cat", @@ -30477,6 +30478,33 @@ "date_removed": null } }, + "registry_url": "http://www.domini.cat", + "whois_server": "whois.nic.cat", + "rdap_server": "https://rdap.nic.cat/", + "tld_created": "2005-12-19", + "tld_updated": [ + "2025-01-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "catalan" + }, "nameservers": [ { "hostname": "anyc1.irondns.net", @@ -30573,33 +30601,7 @@ } ] } - ], - "registry_url": "http://www.domini.cat", - "whois_server": "whois.nic.cat", - "rdap_server": "https://rdap.nic.cat/", - "tld_created": "2005-12-19", - "tld_updated": [ - "2025-01-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "knipp-medien", - "packet-clearing-house" - ], - "cultural_affiliation": "catalan" - } + ] }, { "tld": "catering", @@ -30624,6 +30626,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.catering", @@ -30739,34 +30768,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "catholic", @@ -30791,6 +30793,27 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.catholic", + "rdap_server": "https://rdap.nic.catholic/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.catholic", @@ -30816,7 +30839,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30854,7 +30877,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30862,7 +30885,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30873,7 +30896,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30881,7 +30904,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30892,7 +30915,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -30900,34 +30923,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.catholic", - "rdap_server": "https://rdap.nic.catholic/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cba", @@ -30952,6 +30954,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.cba", + "rdap_server": "https://rdap.nic.cba/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cba", @@ -30977,7 +31000,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31015,7 +31038,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31023,7 +31046,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31034,7 +31057,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31042,7 +31065,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31053,7 +31076,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31061,34 +31084,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.cba", - "rdap_server": "https://rdap.nic.cba/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cbn", @@ -31113,6 +31115,28 @@ "date_removed": null } }, + "registry_url": "http://www.cbn.com", + "rdap_server": "https://rdap.nic.cbn/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cbn", @@ -31138,7 +31162,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31228,29 +31252,7 @@ } ] } - ], - "registry_url": "http://www.cbn.com", - "rdap_server": "https://rdap.nic.cbn/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cbre", @@ -31275,6 +31277,28 @@ "date_removed": null } }, + "registry_url": "http://cbre.com", + "rdap_server": "https://rdap.nic.cbre/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cbre", @@ -31300,7 +31324,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -31390,29 +31414,7 @@ } ] } - ], - "registry_url": "http://cbre.com", - "rdap_server": "https://rdap.nic.cbre/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cbs", @@ -31456,22 +31458,42 @@ "tech": "VeriSign Global Registry Services" } }, + "registry_url": "http://www.nic.cc/", + "whois_server": "ccwhois.verisign-grs.com", + "rdap_server": "https://tld-rdap.verisign.com/cc/v1/", + "tld_created": "1997-10-13", + "tld_updated": [ + "2026-03-24" + ], + "annotations": { + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "rdap_source": "IANA", + "country_name_iso": "Cocos (Keeling) Islands", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -31500,16 +31522,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -31533,27 +31555,7 @@ } ] } - ], - "registry_url": "http://www.nic.cc/", - "whois_server": "ccwhois.verisign-grs.com", - "rdap_server": "https://tld-rdap.verisign.com/cc/v1/", - "tld_created": "1997-10-13", - "tld_updated": [ - "2026-03-24" - ], - "annotations": { - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "rdap_source": "IANA", - "country_name_iso": "Cocos (Keeling) Islands", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cd", @@ -31567,6 +31569,21 @@ "tech": "Office Congolais des Postes et Télécommunications - OCPT" } }, + "registry_url": "http://www.nic.cd/", + "tld_created": "1997-08-20", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "country_name_iso": "Congo, The Democratic Republic of the", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gransy-anycast1.nic.cd", @@ -31604,22 +31621,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.cd/", - "tld_created": "1997-08-20", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "country_name_iso": "Congo, The Democratic Republic of the", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ceb", @@ -31674,6 +31676,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.center", @@ -31789,34 +31818,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ceo", @@ -31841,6 +31843,34 @@ "date_removed": null } }, + "registry_url": "http://www.peoplebrowsr.com", + "whois_server": "whois.nic.ceo", + "rdap_server": "https://rdap.centralnic.com/ceo/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.ceo", @@ -31918,35 +31948,7 @@ } ] } - ], - "registry_url": "http://www.peoplebrowsr.com", - "whois_server": "whois.nic.ceo", - "rdap_server": "https://rdap.centralnic.com/ceo/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "cern", @@ -31971,6 +31973,29 @@ "date_removed": null } }, + "registry_url": "http://www.cern.ch", + "whois_server": "whois.nic.cern", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-13", + "tld_updated": [ + "2023-08-22" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cern", @@ -32048,30 +32073,7 @@ } ] } - ], - "registry_url": "http://www.cern.ch", - "whois_server": "whois.nic.cern", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-13", - "tld_updated": [ - "2023-08-22" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cf", @@ -32085,6 +32087,16 @@ "tech": "Centrafrique TLD B.V." } }, + "registry_url": "http://www.dot.cf", + "whois_server": "whois.dot.cf", + "tld_created": "1996-04-24", + "tld_updated": [ + "2015-12-29" + ], + "annotations": { + "country_name_iso": "Central African Republic", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.cf", @@ -32162,17 +32174,7 @@ } ] } - ], - "registry_url": "http://www.dot.cf", - "whois_server": "whois.dot.cf", - "tld_created": "1996-04-24", - "tld_updated": [ - "2015-12-29" - ], - "annotations": { - "country_name_iso": "Central African Republic", - "geographic_scope": "country" - } + ] }, { "tld": "cfa", @@ -32197,6 +32199,29 @@ "date_removed": null } }, + "registry_url": "https://www.cfainstitute.org", + "whois_server": "whois.nic.cfa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cfa", @@ -32312,30 +32337,7 @@ } ] } - ], - "registry_url": "https://www.cfainstitute.org", - "whois_server": "whois.nic.cfa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cfd", @@ -32360,6 +32362,32 @@ "date_removed": null } }, + "registry_url": "http://bostonivy.co", + "whois_server": "whois.nic.cfd", + "rdap_server": "https://rdap.centralnic.com/cfd/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2024-04-29" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cfd", @@ -32437,33 +32465,7 @@ } ] } - ], - "registry_url": "http://bostonivy.co", - "whois_server": "whois.nic.cfd", - "rdap_server": "https://rdap.centralnic.com/cfd/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2024-04-29" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "cg", @@ -32477,6 +32479,21 @@ "tech": "Frédéric Grégoire c/o Interpoint Domain Plus" } }, + "registry_url": "https://www.dnsafrica.net", + "tld_created": "1997-01-14", + "tld_updated": [ + "2026-05-01" + ], + "annotations": { + "country_name_iso": "Congo", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.nic.cg", @@ -32573,22 +32590,7 @@ } ] } - ], - "registry_url": "https://www.dnsafrica.net", - "tld_created": "1997-01-14", - "tld_updated": [ - "2026-05-01" - ], - "annotations": { - "country_name_iso": "Congo", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ch", @@ -32602,6 +32604,26 @@ "tech": "SWITCH The Swiss Education & Research Network" } }, + "registry_url": "https://www.nic.ch/", + "whois_server": "whois.nic.ch", + "rdap_server": "https://rdap.nic.ch/", + "tld_created": "1987-05-20", + "tld_updated": [ + "2025-11-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Switzerland", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ch", @@ -32698,27 +32720,7 @@ } ] } - ], - "registry_url": "https://www.nic.ch/", - "whois_server": "whois.nic.ch", - "rdap_server": "https://rdap.nic.ch/", - "tld_created": "1987-05-20", - "tld_updated": [ - "2025-11-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Switzerland", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "chanel", @@ -32743,6 +32745,29 @@ "date_removed": null } }, + "registry_url": "http://www.chanel.com", + "whois_server": "whois.nic.chanel", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.chanel", @@ -32820,30 +32845,7 @@ } ] } - ], - "registry_url": "http://www.chanel.com", - "whois_server": "whois.nic.chanel", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "channel", @@ -32868,6 +32870,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -32964,34 +32993,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "charity", @@ -33016,6 +33018,34 @@ "date_removed": null } }, + "registry_url": "http://nic.charity", + "whois_server": "whois.nic.charity", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2018-05-17", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.charity", @@ -33131,35 +33161,7 @@ } ] } - ], - "registry_url": "http://nic.charity", - "whois_server": "whois.nic.charity", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2018-05-17", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "chase", @@ -33184,6 +33186,28 @@ "date_removed": null } }, + "registry_url": "http://www.jpmorganchase.com", + "rdap_server": "https://rdap.nic.chase/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.chase", @@ -33209,7 +33233,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -33255,7 +33279,7 @@ "ipv6": [ { "ip": "2610:a1:1074::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -33274,7 +33298,7 @@ "ipv6": [ { "ip": "2610:a1:1075::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -33293,35 +33317,13 @@ "ipv6": [ { "ip": "2610:a1:1076::27", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.jpmorganchase.com", - "rdap_server": "https://rdap.nic.chase/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "chat", @@ -33346,6 +33348,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.chat", @@ -33461,10 +33490,34 @@ } ] } - ], + ] + }, + { + "tld": "cheap", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1388-22552", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-14", + "date_delegated": "2014-01-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", + "tld_created": "2014-01-09", "tld_updated": [ "2025-10-07" ], @@ -33488,30 +33541,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "cheap", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1388-22552", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-14", - "date_delegated": "2014-01-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -33628,34 +33657,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "chintai", @@ -33680,6 +33682,29 @@ "date_removed": null } }, + "registry_url": "http://nic.chintai", + "whois_server": "whois.nic.chintai", + "rdap_server": "https://rdap.nic.chintai/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.chintai", @@ -33705,7 +33730,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -33795,30 +33820,7 @@ } ] } - ], - "registry_url": "http://nic.chintai", - "whois_server": "whois.nic.chintai", - "rdap_server": "https://rdap.nic.chintai/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "chloe", @@ -33873,6 +33875,34 @@ "date_removed": null } }, + "registry_url": "https://nic.christmas", + "whois_server": "whois.nic.christmas", + "rdap_server": "https://rdap.centralnic.com/christmas/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.christmas", @@ -33950,35 +33980,7 @@ } ] } - ], - "registry_url": "https://nic.christmas", - "whois_server": "whois.nic.christmas", - "rdap_server": "https://rdap.centralnic.com/christmas/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "chrome", @@ -34003,6 +34005,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -34099,35 +34129,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "chrysler", @@ -34182,6 +34184,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.church", @@ -34297,34 +34326,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ci", @@ -34338,6 +34340,24 @@ "tech": "Autorité de Régulation des Télécommunications/TIC de Côte d’lvoire (ARTCI)" } }, + "registry_url": "https://registry.nic.ci/login.jsp", + "whois_server": "whois.nic.ci", + "tld_created": "1995-02-14", + "tld_updated": [ + "2025-05-12" + ], + "annotations": { + "country_name_iso": "Côte d'Ivoire", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any.nic.ci", @@ -34401,8 +34421,8 @@ "ipv4": [ { "ip": "196.49.0.84", - "asn": 329666, - "as_org": "CIVIX_Management", + "asn": 36946, + "as_org": "CIVIX", "as_country": "CI" } ], @@ -34427,25 +34447,7 @@ } ] } - ], - "registry_url": "https://registry.nic.ci/login.jsp", - "whois_server": "whois.nic.ci", - "tld_created": "1995-02-14", - "tld_updated": [ - "2025-05-12" - ], - "annotations": { - "country_name_iso": "Côte d'Ivoire", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cipriani", @@ -34470,6 +34472,29 @@ "date_removed": null } }, + "registry_url": "http://www.cipriani.com/", + "whois_server": "whois.nic.cipriani", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cipriani", @@ -34547,30 +34572,7 @@ } ] } - ], - "registry_url": "http://www.cipriani.com/", - "whois_server": "whois.nic.cipriani", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "circle", @@ -34595,14 +34597,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.circle", + "rdap_server": "https://rdap.nominet.uk/circle/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-04-20" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.circle", "ipv4": [ { "ip": "213.248.218.64", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -34620,8 +34647,8 @@ "ipv4": [ { "ip": "103.49.82.64", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -34748,32 +34775,7 @@ } ] } - ], - "registry_url": "http://www.nic.circle", - "rdap_server": "https://rdap.nominet.uk/circle/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-04-20" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "cisco", @@ -34798,6 +34800,28 @@ "date_removed": null } }, + "registry_url": "http://www.cisco.com", + "rdap_server": "https://rdap.nic.cisco/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cisco", @@ -34823,7 +34847,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -34913,29 +34937,7 @@ } ] } - ], - "registry_url": "http://www.cisco.com", - "rdap_server": "https://rdap.nic.cisco/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "citadel", @@ -34960,6 +34962,29 @@ "date_removed": null } }, + "registry_url": "http://www.citadel.com", + "whois_server": "whois.nic.citadel", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.citadel", @@ -35037,30 +35062,7 @@ } ] } - ], - "registry_url": "http://www.citadel.com", - "whois_server": "whois.nic.citadel", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "citi", @@ -35085,6 +35087,28 @@ "date_removed": null } }, + "registry_url": "http://www.citigroup.com", + "rdap_server": "https://rdap.nic.citi/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.citi", @@ -35110,7 +35134,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -35200,29 +35224,7 @@ } ] } - ], - "registry_url": "http://www.citigroup.com", - "rdap_server": "https://rdap.nic.citi/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "citic", @@ -35247,6 +35249,25 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/citic", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-01-03" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -35344,26 +35365,7 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/citic", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-01-03" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "city", @@ -35388,6 +35390,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.city", @@ -35503,34 +35532,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cityeats", @@ -35573,6 +35575,15 @@ "tech": "Bluesky Cook Islands" } }, + "registry_url": "http://www.vodafone.co.ck", + "tld_created": "1995-08-08", + "tld_updated": [ + "2020-06-17" + ], + "annotations": { + "country_name_iso": "Cook Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "circa.mcs.vuw.ac.nz", @@ -35622,16 +35633,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.vodafone.co.ck", - "tld_created": "1995-08-08", - "tld_updated": [ - "2020-06-17" - ], - "annotations": { - "country_name_iso": "Cook Islands", - "geographic_scope": "country" - } + ] }, { "tld": "cl", @@ -35645,6 +35647,24 @@ "tech": "NIC Chile\nUniversity of Chile" } }, + "registry_url": "http://www.nic.cl/", + "whois_server": "whois.nic.cl", + "tld_created": "1987-12-15", + "tld_updated": [ + "2021-05-28" + ], + "annotations": { + "country_name_iso": "Chile", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.cl", @@ -35779,25 +35799,7 @@ } ] } - ], - "registry_url": "http://www.nic.cl/", - "whois_server": "whois.nic.cl", - "tld_created": "1987-12-15", - "tld_updated": [ - "2021-05-28" - ], - "annotations": { - "country_name_iso": "Chile", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "claims", @@ -35822,6 +35824,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.claims", @@ -35937,10 +35966,34 @@ } ] } - ], + ] + }, + { + "tld": "cleaning", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1391-32771", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-02-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-01", + "tld_created": "2014-01-30", "tld_updated": [ "2025-10-07" ], @@ -35964,30 +36017,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "cleaning", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1391-32771", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-02-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -36104,34 +36133,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "click", @@ -36156,6 +36158,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -36233,31 +36259,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "clinic", @@ -36282,6 +36284,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clinic", @@ -36397,34 +36426,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "clinique", @@ -36449,6 +36451,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.clinique", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.clinique", @@ -36526,30 +36551,7 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.clinique", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "clothing", @@ -36574,6 +36576,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clothing", @@ -36689,34 +36718,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cloud", @@ -36741,6 +36743,30 @@ "date_removed": null } }, + "registry_url": "https://www.get.cloud", + "whois_server": "whois.nic.cloud", + "rdap_server": "https://rdap.registry.cloud/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -36818,31 +36844,7 @@ } ] } - ], - "registry_url": "https://www.get.cloud", - "whois_server": "whois.nic.cloud", - "rdap_server": "https://rdap.registry.cloud/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "club", @@ -36867,6 +36869,34 @@ "date_removed": null } }, + "registry_url": "http://nic.club/", + "whois_server": "whois.nic.club", + "rdap_server": "https://rdap.nic.club/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.club", @@ -36892,7 +36922,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -36982,35 +37012,7 @@ } ] } - ], - "registry_url": "http://nic.club/", - "whois_server": "whois.nic.club", - "rdap_server": "https://rdap.nic.club/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "clubmed", @@ -37035,6 +37037,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.clubmed", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.clubmed", @@ -37150,29 +37174,7 @@ } ] } - ], - "whois_server": "whois.nic.clubmed", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cm", @@ -37186,6 +37188,24 @@ "tech": "Agence Nationale des Technologies de l'Information et de la Communication (ANTIC)" } }, + "registry_url": "https://www.nic.cm", + "whois_server": "whois.nic.cm", + "rdap_server": "https://rdap.nic.cm/", + "tld_created": "1995-04-29", + "tld_updated": [ + "2025-07-15" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Cameroon", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "auth02.ns.uu.net", @@ -37299,25 +37319,7 @@ } ] } - ], - "registry_url": "https://www.nic.cm", - "whois_server": "whois.nic.cm", - "rdap_server": "https://rdap.nic.cm/", - "tld_created": "1995-04-29", - "tld_updated": [ - "2025-07-15" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Cameroon", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cn", @@ -37331,6 +37333,28 @@ "tech": "China Internet Network Information Center (CNNIC)" } }, + "registry_url": "http://www.cnnic.cn/", + "whois_server": "whois.cnnic.cn", + "tld_created": "1990-11-28", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "country_name_iso": "China", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.cn", @@ -37364,7 +37388,7 @@ "ipv6": [ { "ip": "2001:dc7:1::1", - "asn": 24151, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -37375,7 +37399,7 @@ "ipv4": [ { "ip": "203.119.27.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -37413,7 +37437,7 @@ "ipv4": [ { "ip": "203.119.29.1", - "asn": 24409, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -37421,7 +37445,7 @@ "ipv6": [ { "ip": "2001:dc7:3::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -37440,28 +37464,6 @@ "ipv6": [] } ], - "registry_url": "http://www.cnnic.cn/", - "whois_server": "whois.cnnic.cn", - "tld_created": "1990-11-28", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "country_name_iso": "China", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--fiqs8s", "xn--fiqz9s" @@ -37479,6 +37481,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://www.registry.co", + "whois_server": "whois.registry.co", + "rdap_server": "https://rdap.registry.co/co/", + "tld_created": "1991-12-24", + "tld_updated": [ + "2026-02-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "supplemental", + "country_name_iso": "Colombia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registrydns.co", @@ -37556,27 +37578,7 @@ } ] } - ], - "registry_url": "http://www.registry.co", - "whois_server": "whois.registry.co", - "rdap_server": "https://rdap.registry.co/co/", - "tld_created": "1991-12-24", - "tld_updated": [ - "2026-02-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "supplemental", - "country_name_iso": "Colombia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "coach", @@ -37601,6 +37603,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coach", @@ -37716,10 +37745,34 @@ } ] } - ], + ] + }, + { + "tld": "codes", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1398-14114", + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-31", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", + "tld_created": "2013-12-19", "tld_updated": [ "2025-10-07" ], @@ -37743,30 +37796,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "codes", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1398-14114", - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-31", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -37883,7 +37912,31 @@ } ] } - ], + ] + }, + { + "tld": "coffee", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1401-49222", + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-17", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2013-12-19", @@ -37910,30 +37963,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "coffee", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1401-49222", - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-17", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -38050,34 +38079,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "college", @@ -38102,6 +38104,34 @@ "date_removed": null } }, + "registry_url": "https://nic.college/", + "whois_server": "whois.nic.college", + "rdap_server": "https://rdap.centralnic.com/college", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.college", @@ -38179,35 +38209,7 @@ } ] } - ], - "registry_url": "https://nic.college/", - "whois_server": "whois.nic.college", - "rdap_server": "https://rdap.centralnic.com/college", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "cologne", @@ -38232,6 +38234,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.koeln", + "whois_server": "whois.ryce-rsp.com", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -38290,30 +38315,7 @@ } ] } - ], - "registry_url": "https://www.nic.koeln", - "whois_server": "whois.ryce-rsp.com", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] }, { "tld": "com", @@ -38338,6 +38340,33 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.verisign-grs.com", + "rdap_server": "https://rdap.verisign.com/com/v1/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.gtld-servers.net", @@ -38363,7 +38392,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -38371,7 +38400,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -38382,7 +38411,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38390,7 +38419,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38401,7 +38430,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38409,7 +38438,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38420,7 +38449,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38428,7 +38457,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -38523,8 +38552,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -38542,8 +38571,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -38561,8 +38590,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -38580,40 +38609,13 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.verisign-grs.com", - "rdap_server": "https://rdap.verisign.com/com/v1/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "comcast", @@ -38668,6 +38670,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.commbank", + "rdap_server": "https://rdap.nic.commbank/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.commbank", @@ -38693,7 +38716,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38731,7 +38754,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38739,7 +38762,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38750,7 +38773,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38758,7 +38781,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38769,7 +38792,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -38777,34 +38800,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.commbank", - "rdap_server": "https://rdap.nic.commbank/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "community", @@ -38829,6 +38831,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.community", @@ -38944,10 +38973,34 @@ } ] } - ], + ] + }, + { + "tld": "company", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1399-64977", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-17", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", + "tld_created": "2013-12-12", "tld_updated": [ "2025-10-07" ], @@ -38971,30 +39024,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "company", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1399-64977", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-17", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -39111,34 +39140,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "compare", @@ -39163,6 +39165,34 @@ "date_removed": null } }, + "registry_url": "http://nic.compare/", + "whois_server": "whois.nic.compare", + "rdap_server": "https://rdap.nic.compare/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.compare", @@ -39188,7 +39218,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39226,7 +39256,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39234,7 +39264,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39245,7 +39275,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39253,7 +39283,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39264,7 +39294,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -39272,41 +39302,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.compare/", - "whois_server": "whois.nic.compare", - "rdap_server": "https://rdap.nic.compare/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "computer", @@ -39331,6 +39333,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.computer", @@ -39446,34 +39475,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "comsec", @@ -39498,22 +39500,49 @@ "date_removed": null } }, + "whois_server": "whois.nic.comsec", + "rdap_server": "https://tld-rdap.verisign.com/comsec/v1/", + "tld_created": "2015-10-08", + "tld_updated": [ + "2026-03-11" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -39542,16 +39571,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -39575,34 +39604,7 @@ } ] } - ], - "whois_server": "whois.nic.comsec", - "rdap_server": "https://tld-rdap.verisign.com/comsec/v1/", - "tld_created": "2015-10-08", - "tld_updated": [ - "2026-03-11" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "condos", @@ -39627,6 +39629,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.condos", @@ -39742,10 +39771,34 @@ } ] } - ], + ] + }, + { + "tld": "construction", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-09-16", + "date_delegated": "2013-11-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", + "tld_created": "2013-11-08", "tld_updated": [ "2025-10-07" ], @@ -39769,30 +39822,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "construction", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-09-16", - "date_delegated": "2013-11-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -39909,10 +39938,34 @@ } ] } - ], + ] + }, + { + "tld": "consulting", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1406-80949", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-04-01", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", + "tld_created": "2014-01-30", "tld_updated": [ "2025-10-07" ], @@ -39936,30 +39989,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "consulting", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1406-80949", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-04-01", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -40076,10 +40105,34 @@ } ] } - ], + ] + }, + { + "tld": "contact", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1279-75341", + "registry_operator_country_code": null, + "date_contract_signed": "2015-01-08", + "date_delegated": "2015-12-22", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", + "tld_created": "2015-12-10", "tld_updated": [ "2025-10-07" ], @@ -40103,30 +40156,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "contact", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1279-75341", - "registry_operator_country_code": null, - "date_contract_signed": "2015-01-08", - "date_delegated": "2015-12-22", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -40243,10 +40272,34 @@ } ] } - ], + ] + }, + { + "tld": "contractors", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-09-10", + "date_delegated": "2013-11-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", + "tld_created": "2013-11-08", "tld_updated": [ "2025-10-07" ], @@ -40270,30 +40323,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "contractors", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-09-10", - "date_delegated": "2013-11-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -40410,34 +40439,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cooking", @@ -40462,6 +40464,34 @@ "date_removed": null } }, + "registry_url": "http://nic.cooking/", + "whois_server": "whois.nic.cooking", + "rdap_server": "https://rdap.nic.cooking/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cooking", @@ -40487,7 +40517,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40525,7 +40555,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40533,7 +40563,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40544,7 +40574,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40552,7 +40582,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40563,7 +40593,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -40571,41 +40601,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.cooking/", - "whois_server": "whois.nic.cooking", - "rdap_server": "https://rdap.nic.cooking/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cookingchannel", @@ -40660,6 +40662,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cool", @@ -40775,34 +40804,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "coop", @@ -40827,6 +40829,36 @@ "date_removed": null } }, + "registry_url": "http://www.nic.coop", + "whois_server": "whois.nic.coop", + "rdap_server": "https://rdap.registry.coop/rdap/", + "tld_created": "2001-12-15", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "DotCooperation", + "iana_sponsor_slug": "dot-cooperation", + "iana_admin_alias": "DotCooperation", + "iana_admin_slug": "dot-cooperation", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "DotCooperation", + "icann_registry_operator_slug": "dot-cooperation", + "rdap_source": "IANA", + "registry_agreement_types": [ + "community", + "sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -40904,37 +40936,7 @@ } ] } - ], - "registry_url": "http://www.nic.coop", - "whois_server": "whois.nic.coop", - "rdap_server": "https://rdap.registry.coop/rdap/", - "tld_created": "2001-12-15", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "DotCooperation", - "iana_sponsor_slug": "dot-cooperation", - "iana_admin_alias": "DotCooperation", - "iana_admin_slug": "dot-cooperation", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "DotCooperation", - "icann_registry_operator_slug": "dot-cooperation", - "rdap_source": "IANA", - "registry_agreement_types": [ - "community", - "sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "corsica", @@ -40959,6 +40961,32 @@ "date_removed": null } }, + "registry_url": "https://puntu.corsica", + "whois_server": "whois.nic.corsica", + "rdap_server": "https://rdap.nic.corsica", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -41017,32 +41045,7 @@ } ] } - ], - "registry_url": "https://puntu.corsica", - "whois_server": "whois.nic.corsica", - "rdap_server": "https://rdap.nic.corsica", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "country", @@ -41067,6 +41070,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -41144,31 +41171,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "coupon", @@ -41193,6 +41196,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.coupon", + "whois_server": "whois.nic.coupon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coupon", @@ -41308,35 +41339,7 @@ } ] } - ], - "registry_url": "http://www.nic.coupon", - "whois_server": "whois.nic.coupon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "coupons", @@ -41361,6 +41364,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.coupons", @@ -41476,34 +41506,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "courses", @@ -41528,6 +41531,34 @@ "date_removed": null } }, + "registry_url": "https://www.get.courses/", + "whois_server": "whois.nic.courses", + "rdap_server": "https://rdap.nic.courses/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.courses", @@ -41553,7 +41584,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41591,7 +41622,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41599,7 +41630,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41610,7 +41641,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41618,7 +41649,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41629,7 +41660,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41637,41 +41668,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.get.courses/", - "whois_server": "whois.nic.courses", - "rdap_server": "https://rdap.nic.courses/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cpa", @@ -41696,6 +41699,26 @@ "date_removed": null } }, + "registry_url": "https://www.cpa.com", + "whois_server": "whois.nic.cpa", + "rdap_server": "https://rdap.nic.cpa", + "tld_created": "2019-09-11", + "tld_updated": [ + "2024-09-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cpa", @@ -41721,7 +41744,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41759,7 +41782,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41767,7 +41790,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41778,7 +41801,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41786,7 +41809,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41797,7 +41820,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -41805,33 +41828,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.cpa.com", - "whois_server": "whois.nic.cpa", - "rdap_server": "https://rdap.nic.cpa", - "tld_created": "2019-09-11", - "tld_updated": [ - "2024-09-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cr", @@ -41845,6 +41848,30 @@ "tech": "National Academy of Sciences Academia Nacional de Ciencias" } }, + "registry_url": "http://www.nic.cr/", + "whois_server": "whois.nic.cr", + "rdap_server": "https://rdap.nic.cr/", + "tld_created": "1990-09-10", + "tld_updated": [ + "2026-02-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Costa Rica", + "as_org_aliases": [ + "CIRA", + "DENIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -41960,31 +41987,7 @@ } ] } - ], - "registry_url": "http://www.nic.cr/", - "whois_server": "whois.nic.cr", - "rdap_server": "https://rdap.nic.cr/", - "tld_created": "1990-09-10", - "tld_updated": [ - "2026-02-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Costa Rica", - "as_org_aliases": [ - "CIRA", - "DENIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "credit", @@ -42009,6 +42012,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.credit", @@ -42124,7 +42154,31 @@ } ] } - ], + ] + }, + { + "tld": "creditcard", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1412-63109", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-04-29", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2014-04-24", @@ -42151,30 +42205,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "creditcard", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1412-63109", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-04-29", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -42291,34 +42321,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "creditunion", @@ -42343,6 +42346,34 @@ "date_removed": null } }, + "registry_url": "http://www.identity.coop/creditunion", + "whois_server": "whois.nic.creditunion", + "rdap_server": "https://rdap.registry.coop/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "DotCooperation", + "iana_sponsor_slug": "dot-cooperation", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "DotCooperation", + "icann_registry_operator_slug": "dot-cooperation", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -42420,35 +42451,7 @@ } ] } - ], - "registry_url": "http://www.identity.coop/creditunion", - "whois_server": "whois.nic.creditunion", - "rdap_server": "https://rdap.registry.coop/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "DotCooperation", - "iana_sponsor_slug": "dot-cooperation", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "DotCooperation", - "icann_registry_operator_slug": "dot-cooperation", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "cricket", @@ -42473,6 +42476,32 @@ "date_removed": null } }, + "registry_url": "http://nic.cricket", + "whois_server": "whois.nic.cricket", + "rdap_server": "https://rdap.nic.cricket/", + "tld_created": "2014-11-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cricket", @@ -42498,7 +42527,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -42588,33 +42617,7 @@ } ] } - ], - "registry_url": "http://nic.cricket", - "whois_server": "whois.nic.cricket", - "rdap_server": "https://rdap.nic.cricket/", - "tld_created": "2014-11-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "crown", @@ -42639,6 +42642,31 @@ "date_removed": null } }, + "registry_url": "http://www.crown.com/", + "whois_server": "whois.nic.crown", + "rdap_server": "https://rdap.crown.fury.ca/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2026-01-22" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.crown", @@ -42716,32 +42744,7 @@ } ] } - ], - "registry_url": "http://www.crown.com/", - "whois_server": "whois.nic.crown", - "rdap_server": "https://rdap.crown.fury.ca/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2026-01-22" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] }, { "tld": "crs", @@ -42766,6 +42769,27 @@ "date_removed": null } }, + "whois_server": "whois.nic.crs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.crs", @@ -42843,28 +42867,7 @@ } ] } - ], - "whois_server": "whois.nic.crs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cruise", @@ -42889,6 +42892,28 @@ "date_removed": null } }, + "registry_url": "http://www.vikingrivercruises.com", + "whois_server": "whois.nic.cruise", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-10-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.cruise", @@ -42966,29 +42991,7 @@ } ] } - ], - "registry_url": "http://www.vikingrivercruises.com", - "whois_server": "whois.nic.cruise", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-10-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "cruises", @@ -43013,6 +43016,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.cruises", @@ -43128,34 +43158,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "csc", @@ -43199,6 +43202,15 @@ "tech": "CENIAInternet" } }, + "registry_url": "http://www.nic.cu", + "tld_created": "1992-06-03", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Cuba", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cu.cctld.authdns.ripe.net", @@ -43274,8 +43286,8 @@ "ipv4": [ { "ip": "204.59.1.222", - "asn": 16509, - "as_org": "AMAZON-02", + "asn": 51964, + "as_org": "ORANGE-BUSINESS-SERVICES-IPSN-ASN", "as_country": "US" } ], @@ -43300,22 +43312,7 @@ } ] } - ], - "registry_url": "http://www.nic.cu", - "tld_created": "1992-06-03", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Cuba", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cuisinella", @@ -43340,6 +43337,27 @@ "date_removed": null } }, + "registry_url": "http://nic.cuisinella/", + "whois_server": "whois.nic.cuisinella", + "rdap_server": "https://rdap.nic.cuisinella/", + "tld_created": "2014-06-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.cuisinella", @@ -43365,7 +43383,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43403,7 +43421,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43411,7 +43429,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43422,7 +43440,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43430,7 +43448,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43441,7 +43459,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -43449,34 +43467,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.cuisinella/", - "whois_server": "whois.nic.cuisinella", - "rdap_server": "https://rdap.nic.cuisinella/", - "tld_created": "2014-06-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "cv", @@ -43490,6 +43487,24 @@ "tech": "Associação DNS.PT" } }, + "registry_url": "http://www.dns.cv/", + "whois_server": "whois.nic.cv", + "rdap_server": "https://rdap.nic.cv", + "tld_created": "1996-10-21", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Cabo Verde", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyc.dnsnode.net", @@ -43560,25 +43575,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.dns.cv/", - "whois_server": "whois.nic.cv", - "rdap_server": "https://rdap.nic.cv", - "tld_created": "1996-10-21", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Cabo Verde", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cw", @@ -43592,6 +43589,21 @@ "tech": "University of Curacao" } }, + "registry_url": "http://www.uoc.cw/cw-registry", + "tld_created": "2010-12-20", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "Curaçao", + "as_org_aliases": [ + "SIDN" + ], + "as_org_slugs": [ + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cw.cctld.authdns.ripe.net", @@ -43710,22 +43722,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.uoc.cw/cw-registry", - "tld_created": "2010-12-20", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "Curaçao", - "as_org_aliases": [ - "SIDN" - ], - "as_org_slugs": [ - "sidn" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cx", @@ -43739,6 +43736,24 @@ "tech": "Indian Ocean Territories Telecom Pty Ltd" } }, + "registry_url": "https://cxda.org.cx", + "whois_server": "whois.nic.cx", + "rdap_server": "https://rdap.nic.cx", + "tld_created": "1997-04-24", + "tld_updated": [ + "2024-02-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Christmas Island", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.cx", @@ -43790,25 +43805,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://cxda.org.cx", - "whois_server": "whois.nic.cx", - "rdap_server": "https://rdap.nic.cx", - "tld_created": "1997-04-24", - "tld_updated": [ - "2024-02-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Christmas Island", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cy", @@ -43822,6 +43819,23 @@ "tech": "University of Cyprus" } }, + "registry_url": "http://www.nic.cy", + "tld_created": "1994-07-26", + "tld_updated": [ + "2024-08-13" + ], + "annotations": { + "country_name_iso": "Cyprus", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cy-ns.anycast.pch.net", @@ -43923,24 +43937,7 @@ } ] } - ], - "registry_url": "http://www.nic.cy", - "tld_created": "1994-07-26", - "tld_updated": [ - "2024-08-13" - ], - "annotations": { - "country_name_iso": "Cyprus", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "cymru", @@ -43965,14 +43962,45 @@ "date_removed": null } }, + "registry_url": "https://eincartrefarlein.cymru/", + "rdap_server": "https://rdap.nominet.uk/cymru/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Nominet", + "icann_registry_operator_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "welsh" + }, "nameservers": [ { "hostname": "dns1.nic.cymru", "ipv4": [ { "ip": "213.248.219.3", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -43990,8 +44018,8 @@ "ipv4": [ { "ip": "103.49.83.3", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -44118,38 +44146,7 @@ } ] } - ], - "registry_url": "https://eincartrefarlein.cymru/", - "rdap_server": "https://rdap.nominet.uk/cymru/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Nominet", - "icann_registry_operator_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "welsh" - } + ] }, { "tld": "cyou", @@ -44174,6 +44171,32 @@ "date_removed": null } }, + "registry_url": "http://cy.changyou.com", + "whois_server": "whois.nic.cyou", + "rdap_server": "https://rdap.centralnic.com/cyou/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.cyou", @@ -44251,33 +44274,7 @@ } ] } - ], - "registry_url": "http://cy.changyou.com", - "whois_server": "whois.nic.cyou", - "rdap_server": "https://rdap.centralnic.com/cyou/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "cz", @@ -44291,6 +44288,24 @@ "tech": "CZ.NIC, z.s.p.o." } }, + "registry_url": "http://www.nic.cz/", + "whois_server": "whois.nic.cz", + "rdap_server": "https://rdap.nic.cz", + "tld_created": "1993-01-13", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Czechia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.nic.cz", @@ -44368,25 +44383,7 @@ } ] } - ], - "registry_url": "http://www.nic.cz/", - "whois_server": "whois.nic.cz", - "rdap_server": "https://rdap.nic.cz", - "tld_created": "1993-01-13", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Czechia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "dabur", @@ -44441,6 +44438,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -44537,34 +44561,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "dance", @@ -44589,6 +44586,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dance", @@ -44704,34 +44728,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "data", @@ -44756,6 +44753,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.data", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -44833,35 +44858,7 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.data", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "date", @@ -44886,6 +44883,32 @@ "date_removed": null } }, + "registry_url": "http://nic.date", + "whois_server": "whois.nic.date", + "rdap_server": "https://rdap.nic.date/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.date", @@ -44911,7 +44934,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45001,33 +45024,7 @@ } ] } - ], - "registry_url": "http://nic.date", - "whois_server": "whois.nic.date", - "rdap_server": "https://rdap.nic.date/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "dating", @@ -45052,6 +45049,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dating", @@ -45167,34 +45191,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "datsun", @@ -45219,6 +45216,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -45244,7 +45266,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45289,32 +45311,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "day", @@ -45339,6 +45336,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -45435,10 +45459,34 @@ } ] } - ], + ] + }, + { + "tld": "dclk", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Charleston Road Registry Inc.", + "admin": "Google Inc", + "tech": "Google Inc" + }, + "icann": { + "registry_operator": "Charleston Road Registry Inc.", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1141-22713", + "registry_operator_country_code": null, + "date_contract_signed": "2014-11-20", + "date_delegated": "2015-01-24", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.registry.google", "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", + "tld_created": "2015-01-08", "tld_updated": [ "2025-04-11" ], @@ -45462,30 +45510,6 @@ "as_org_slugs": [ "google" ] - } - }, - { - "tld": "dclk", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Charleston Road Registry Inc.", - "admin": "Google Inc", - "tech": "Google Inc" - }, - "icann": { - "registry_operator": "Charleston Road Registry Inc.", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1141-22713", - "registry_operator_country_code": null, - "date_contract_signed": "2014-11-20", - "date_delegated": "2015-01-24", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -45583,34 +45607,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "dds", @@ -45635,6 +45632,34 @@ "date_removed": null } }, + "registry_url": "http://nic.dds/", + "whois_server": "whois.nic.dds", + "rdap_server": "https://rdap.nic.dds/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dds", @@ -45660,7 +45685,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45698,7 +45723,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45706,7 +45731,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45717,7 +45742,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45725,7 +45750,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45736,7 +45761,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -45744,41 +45769,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.dds/", - "whois_server": "whois.nic.dds", - "rdap_server": "https://rdap.nic.dds/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "de", @@ -45792,6 +45789,24 @@ "tech": "DENIC eG" } }, + "registry_url": "http://www.denic.de/", + "whois_server": "whois.denic.de", + "rdap_server": "https://rdap.denic.de/", + "tld_created": "1986-11-05", + "tld_updated": [ + "2023-04-04" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Germany", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.de", @@ -45817,8 +45832,8 @@ "ipv4": [ { "ip": "81.91.164.5", - "asn": 31529, - "as_org": "DENIC-ANYCAST-AS DNS anycast AS object for .DE DNS service", + "asn": 8763, + "as_org": "DENIC-AS Theodor-Stern-Kai 1", "as_country": "DE" } ], @@ -45907,25 +45922,7 @@ } ] } - ], - "registry_url": "http://www.denic.de/", - "whois_server": "whois.denic.de", - "rdap_server": "https://rdap.denic.de/", - "tld_created": "1986-11-05", - "tld_updated": [ - "2023-04-04" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Germany", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "deal", @@ -45950,14 +45947,41 @@ "date_removed": null } }, + "registry_url": "http://www.nic.deal", + "rdap_server": "https://rdap.nominet.uk/deal/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.deal", "ipv4": [ { "ip": "213.248.218.65", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -45975,8 +45999,8 @@ "ipv4": [ { "ip": "103.49.82.65", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -46103,34 +46127,7 @@ } ] } - ], - "registry_url": "http://www.nic.deal", - "rdap_server": "https://rdap.nominet.uk/deal/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "dealer", @@ -46155,6 +46152,28 @@ "date_removed": null } }, + "registry_url": "https://get.dealer", + "whois_server": "whois.nic.dealer", + "rdap_server": "https://rdap.centralnic.com/dealer/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.dealer", @@ -46232,29 +46251,7 @@ } ] } - ], - "registry_url": "https://get.dealer", - "whois_server": "whois.nic.dealer", - "rdap_server": "https://rdap.centralnic.com/dealer/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "deals", @@ -46279,6 +46276,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.deals", @@ -46394,10 +46418,34 @@ } ] } - ], + ] + }, + { + "tld": "degree", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1418-57248", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-05-30", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", + "tld_created": "2014-05-22", "tld_updated": [ "2025-10-07" ], @@ -46421,30 +46469,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "degree", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1418-57248", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-05-30", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -46561,10 +46585,34 @@ } ] } - ], + ] + }, + { + "tld": "delivery", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1420-57575", + "registry_operator_country_code": null, + "date_contract_signed": "2014-09-11", + "date_delegated": "2014-11-01", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", + "tld_created": "2014-10-16", "tld_updated": [ "2025-10-07" ], @@ -46588,30 +46636,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "delivery", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1420-57575", - "registry_operator_country_code": null, - "date_contract_signed": "2014-09-11", - "date_delegated": "2014-11-01", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -46728,34 +46752,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "dell", @@ -46780,6 +46777,28 @@ "date_removed": null } }, + "registry_url": "http://www.dell.com", + "rdap_server": "https://rdap.nic.dell/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dell", @@ -46805,7 +46824,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -46895,29 +46914,7 @@ } ] } - ], - "registry_url": "http://www.dell.com", - "rdap_server": "https://rdap.nic.dell/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "deloitte", @@ -46942,6 +46939,27 @@ "date_removed": null } }, + "registry_url": "http://nic.deloitte", + "whois_server": "whois.nic.deloitte", + "rdap_server": "https://rdap.centralnic.com/deloitte", + "tld_created": "2015-12-23", + "tld_updated": [ + "2023-11-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.deloitte", @@ -47019,28 +47037,7 @@ } ] } - ], - "registry_url": "http://nic.deloitte", - "whois_server": "whois.nic.deloitte", - "rdap_server": "https://rdap.centralnic.com/deloitte", - "tld_created": "2015-12-23", - "tld_updated": [ - "2023-11-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "delta", @@ -47065,6 +47062,29 @@ "date_removed": null } }, + "registry_url": "http://www.delta.com", + "whois_server": "whois.nic.delta", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2023-08-07" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.delta", @@ -47142,30 +47162,7 @@ } ] } - ], - "registry_url": "http://www.delta.com", - "whois_server": "whois.nic.delta", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2023-08-07" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "democrat", @@ -47190,6 +47187,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.democrat", @@ -47305,10 +47329,34 @@ } ] } - ], + ] + }, + { + "tld": "dental", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1421-91857", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", + "tld_created": "2014-04-17", "tld_updated": [ "2025-10-07" ], @@ -47332,30 +47380,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "dental", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1421-91857", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -47472,10 +47496,34 @@ } ] } - ], + ] + }, + { + "tld": "dentist", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1422-97537", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-05-31", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2014-05-22", "tld_updated": [ "2025-10-07" ], @@ -47499,30 +47547,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "dentist", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1422-97537", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-05-31", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -47639,34 +47663,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "desi", @@ -47691,14 +47688,40 @@ "date_removed": null } }, + "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", + "rdap_server": "https://rdap.nominet.uk/desi/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "cultural_affiliation": "desi" + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -47716,8 +47739,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -47844,33 +47867,7 @@ } ] } - ], - "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", - "rdap_server": "https://rdap.nominet.uk/desi/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "cultural_affiliation": "desi" - } + ] }, { "tld": "design", @@ -47895,6 +47892,34 @@ "date_removed": null } }, + "registry_url": "http://nic.design/", + "whois_server": "whois.nic.design", + "rdap_server": "https://rdap.nic.design/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.design", @@ -47920,7 +47945,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -47958,7 +47983,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -47966,7 +47991,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -47977,7 +48002,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -47985,7 +48010,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -47996,7 +48021,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -48004,41 +48029,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.design/", - "whois_server": "whois.nic.design", - "rdap_server": "https://rdap.nic.design/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "dev", @@ -48063,6 +48060,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -48159,34 +48183,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "dhl", @@ -48211,6 +48208,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.centralnic.com/dhl", + "tld_created": "2016-05-26", + "tld_updated": [ + "2023-11-27" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.dhl", @@ -48288,28 +48306,7 @@ } ] } - ], - "rdap_server": "https://rdap.centralnic.com/dhl", - "tld_created": "2016-05-26", - "tld_updated": [ - "2023-11-27" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "diamonds", @@ -48334,6 +48331,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.diamonds", @@ -48449,34 +48473,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "diet", @@ -48501,6 +48498,34 @@ "date_removed": null } }, + "registry_url": "https://nic.diet", + "whois_server": "whois.nic.diet", + "rdap_server": "https://rdap.centralnic.com/diet/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.diet", @@ -48578,35 +48603,7 @@ } ] } - ], - "registry_url": "https://nic.diet", - "whois_server": "whois.nic.diet", - "rdap_server": "https://rdap.centralnic.com/diet/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "digital", @@ -48631,6 +48628,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.digital", @@ -48746,10 +48770,34 @@ } ] } - ], + ] + }, + { + "tld": "direct", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1424-94823", + "registry_operator_country_code": null, + "date_contract_signed": "2014-04-10", + "date_delegated": "2014-07-02", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2014-05-22", "tld_updated": [ "2025-10-07" ], @@ -48773,30 +48821,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "direct", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1424-94823", - "registry_operator_country_code": null, - "date_contract_signed": "2014-04-10", - "date_delegated": "2014-07-02", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -48913,10 +48937,34 @@ } ] } - ], + ] + }, + { + "tld": "directory", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-09-20", + "date_delegated": "2013-11-19", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", + "tld_created": "2013-11-13", "tld_updated": [ "2025-10-07" ], @@ -48940,30 +48988,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "directory", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-09-20", - "date_delegated": "2013-11-19", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -49080,10 +49104,34 @@ } ] } - ], + ] + }, + { + "tld": "discount", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1431-6328", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", + "tld_created": "2014-04-17", "tld_updated": [ "2025-10-07" ], @@ -49107,30 +49155,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "discount", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1431-6328", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -49247,34 +49271,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "discover", @@ -49299,6 +49296,29 @@ "date_removed": null } }, + "registry_url": "https://www.discover.com/", + "whois_server": "whois.nic.discover", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.discover", @@ -49414,30 +49434,7 @@ } ] } - ], - "registry_url": "https://www.discover.com/", - "whois_server": "whois.nic.discover", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "dish", @@ -49462,6 +49459,35 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.dish", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -49539,36 +49565,7 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.dish", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "diy", @@ -49593,6 +49590,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -49670,31 +49691,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "dj", @@ -49708,6 +49705,21 @@ "tech": "Djibouti Telecom S.A" } }, + "registry_url": "http://www.nic.dj", + "tld_created": "1996-05-22", + "tld_updated": [ + "2024-12-25" + ], + "annotations": { + "country_name_iso": "Djibouti", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.djibtelecom.dj", @@ -49745,22 +49757,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.dj", - "tld_created": "1996-05-22", - "tld_updated": [ - "2024-12-25" - ], - "annotations": { - "country_name_iso": "Djibouti", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "dk", @@ -49774,6 +49771,26 @@ "tech": "Punktum dk A/S" } }, + "registry_url": "https://punktum.dk/", + "whois_server": "whois.punktum.dk", + "tld_created": "1987-07-14", + "tld_updated": [ + "2025-10-30" + ], + "annotations": { + "country_name_iso": "Denmark", + "as_org_aliases": [ + "CIRA", + "CZNIC", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "cznic", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.nic.dk", @@ -49889,27 +49906,7 @@ } ] } - ], - "registry_url": "https://punktum.dk/", - "whois_server": "whois.punktum.dk", - "tld_created": "1987-07-14", - "tld_updated": [ - "2025-10-30" - ], - "annotations": { - "country_name_iso": "Denmark", - "as_org_aliases": [ - "CIRA", - "CZNIC", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "cznic", - "sidn" - ], - "geographic_scope": "country" - } + ] }, { "tld": "dm", @@ -49923,6 +49920,24 @@ "tech": "DotDM Corporation" } }, + "registry_url": "http://www.nic.dm", + "whois_server": "whois.dmdomains.dm", + "tld_created": "1991-09-03", + "tld_updated": [ + "2024-05-29" + ], + "annotations": { + "country_name_iso": "Dominica", + "as_org_aliases": [ + "Community DNS", + "Tucows" + ], + "as_org_slugs": [ + "community-dns", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.blacknightsolutions.com", @@ -50031,25 +50046,7 @@ } ] } - ], - "registry_url": "http://www.nic.dm", - "whois_server": "whois.dmdomains.dm", - "tld_created": "1991-09-03", - "tld_updated": [ - "2024-05-29" - ], - "annotations": { - "country_name_iso": "Dominica", - "as_org_aliases": [ - "Community DNS", - "Tucows" - ], - "as_org_slugs": [ - "community-dns", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "dnp", @@ -50074,6 +50071,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/", + "whois_server": "whois.nic.dnp", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2019-08-28" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -50099,7 +50121,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -50144,32 +50166,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/", - "whois_server": "whois.nic.dnp", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2019-08-28" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "do", @@ -50183,6 +50180,24 @@ "tech": "Pontificia Universidad Catolica Madre y Maestra" } }, + "registry_url": "http://www.nic.do", + "whois_server": "whois.nic.do", + "tld_created": "1991-08-25", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Dominican Republic", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -50317,25 +50332,7 @@ } ] } - ], - "registry_url": "http://www.nic.do", - "whois_server": "whois.nic.do", - "tld_created": "1991-08-25", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Dominican Republic", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "docs", @@ -50360,6 +50357,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -50456,34 +50480,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "doctor", @@ -50508,6 +50505,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.doctor", @@ -50623,34 +50647,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "dodge", @@ -50705,6 +50702,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.dog", @@ -50820,34 +50844,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "doha", @@ -50901,6 +50898,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.domains", @@ -51016,34 +51040,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "doosan", @@ -51097,6 +51094,36 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.dot", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_admin_alias": "Dish Network", + "iana_admin_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -51174,37 +51201,7 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.dot", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_admin_alias": "Dish Network", - "iana_admin_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "download", @@ -51229,6 +51226,32 @@ "date_removed": null } }, + "registry_url": "http://nic.download", + "whois_server": "whois.nic.download", + "rdap_server": "https://rdap.nic.download/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.download", @@ -51254,7 +51277,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -51344,33 +51367,7 @@ } ] } - ], - "registry_url": "http://nic.download", - "whois_server": "whois.nic.download", - "rdap_server": "https://rdap.nic.download/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "drive", @@ -51395,6 +51392,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -51491,34 +51515,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "dtv", @@ -51543,6 +51540,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.dtv", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -51620,35 +51645,7 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.dtv", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "dubai", @@ -51673,6 +51670,26 @@ "date_removed": null } }, + "whois_server": "whois.nic.dubai", + "rdap_server": "https://rdap.nic.dubai/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2020-05-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -51698,7 +51715,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -51750,27 +51767,7 @@ } ] } - ], - "whois_server": "whois.nic.dubai", - "rdap_server": "https://rdap.nic.dubai/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2020-05-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "duck", @@ -51885,6 +51882,28 @@ "date_removed": null } }, + "registry_url": "https://www.dupont.com", + "rdap_server": "https://rdap.nic.dupont/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-06-04" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.dupont", @@ -51910,7 +51929,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -51956,7 +51975,7 @@ "ipv6": [ { "ip": "2610:a1:1074::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -51975,7 +51994,7 @@ "ipv6": [ { "ip": "2610:a1:1075::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -51994,35 +52013,13 @@ "ipv6": [ { "ip": "2610:a1:1076::34", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.dupont.com", - "rdap_server": "https://rdap.nic.dupont/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-06-04" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "durban", @@ -52047,6 +52044,33 @@ "date_removed": null } }, + "registry_url": "http://www.registry.net.za", + "whois_server": "whois.nic.durban", + "rdap_server": "https://rdap.nic.durban/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -52105,34 +52129,7 @@ } ] } - ], - "registry_url": "http://www.registry.net.za", - "whois_server": "whois.nic.durban", - "rdap_server": "https://rdap.nic.durban/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] }, { "tld": "dvag", @@ -52157,84 +52154,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a.nic.dvag", - "ipv4": [ - { - "ip": "194.169.218.84", - "asn": 199330, - "as_org": "CENTRALNIC-ANYCAST-A CentralNic Anycast-A AS Number", - "as_country": "GB" - } - ], - "ipv6": [ - { - "ip": "2001:67c:13cc::1:84", - "asn": 199330, - "as_org": "CENTRALNIC-ANYCAST-A CentralNic Anycast-A AS Number", - "as_country": "GB" - } - ] - }, - { - "hostname": "b.nic.dvag", - "ipv4": [ - { - "ip": "185.24.64.84", - "asn": 60890, - "as_org": "CENTRALNIC-ANYCAST-B CentralNic Anycast-B AS Number", - "as_country": "GB" - } - ], - "ipv6": [ - { - "ip": "2a04:2b00:13cc::1:84", - "asn": 60890, - "as_org": "CENTRALNIC-ANYCAST-B CentralNic Anycast-B AS Number", - "as_country": "GB" - } - ] - }, - { - "hostname": "c.nic.dvag", - "ipv4": [ - { - "ip": "212.18.248.84", - "asn": 201304, - "as_org": "CENTRALNIC-ANYCAST-E", - "as_country": "GB" - } - ], - "ipv6": [ - { - "ip": "2a04:2b00:13ee::84", - "asn": 201304, - "as_org": "CENTRALNIC-ANYCAST-E", - "as_country": "GB" - } - ] - }, - { - "hostname": "d.nic.dvag", - "ipv4": [ - { - "ip": "212.18.249.84", - "asn": 201303, - "as_org": "CENTRALNIC-ANYCAST-F", - "as_country": "GB" - } - ], - "ipv6": [ - { - "ip": "2a04:2b00:13ff::84", - "asn": 201303, - "as_org": "CENTRALNIC-ANYCAST-F", - "as_country": "GB" - } - ] - } - ], "registry_url": "http://www.dvag-registry.de", "whois_server": "whois.nic.dvag", "rdap_server": "https://rdap.centralnic.com/dvag", @@ -52257,7 +52176,85 @@ "as_org_slugs": [ "centralnic" ] - } + }, + "nameservers": [ + { + "hostname": "a.nic.dvag", + "ipv4": [ + { + "ip": "194.169.218.84", + "asn": 199330, + "as_org": "CENTRALNIC-ANYCAST-A CentralNic Anycast-A AS Number", + "as_country": "GB" + } + ], + "ipv6": [ + { + "ip": "2001:67c:13cc::1:84", + "asn": 199330, + "as_org": "CENTRALNIC-ANYCAST-A CentralNic Anycast-A AS Number", + "as_country": "GB" + } + ] + }, + { + "hostname": "b.nic.dvag", + "ipv4": [ + { + "ip": "185.24.64.84", + "asn": 60890, + "as_org": "CENTRALNIC-ANYCAST-B CentralNic Anycast-B AS Number", + "as_country": "GB" + } + ], + "ipv6": [ + { + "ip": "2a04:2b00:13cc::1:84", + "asn": 60890, + "as_org": "CENTRALNIC-ANYCAST-B CentralNic Anycast-B AS Number", + "as_country": "GB" + } + ] + }, + { + "hostname": "c.nic.dvag", + "ipv4": [ + { + "ip": "212.18.248.84", + "asn": 201304, + "as_org": "CENTRALNIC-ANYCAST-E", + "as_country": "GB" + } + ], + "ipv6": [ + { + "ip": "2a04:2b00:13ee::84", + "asn": 201304, + "as_org": "CENTRALNIC-ANYCAST-E", + "as_country": "GB" + } + ] + }, + { + "hostname": "d.nic.dvag", + "ipv4": [ + { + "ip": "212.18.249.84", + "asn": 201303, + "as_org": "CENTRALNIC-ANYCAST-F", + "as_country": "GB" + } + ], + "ipv6": [ + { + "ip": "2a04:2b00:13ff::84", + "asn": 201303, + "as_org": "CENTRALNIC-ANYCAST-F", + "as_country": "GB" + } + ] + } + ] }, { "tld": "dvr", @@ -52282,6 +52279,34 @@ "date_removed": null } }, + "registry_url": "http://www.echostar.com", + "whois_server": "whois.nic.dvr", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-09-22", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -52359,35 +52384,7 @@ } ] } - ], - "registry_url": "http://www.echostar.com", - "whois_server": "whois.nic.dvr", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-09-22", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "dz", @@ -52401,6 +52398,24 @@ "tech": "CERIST" } }, + "registry_url": "http://www.nic.dz", + "whois_server": "whois.nic.dz", + "tld_created": "1994-01-03", + "tld_updated": [ + "2025-10-10" + ], + "annotations": { + "country_name_iso": "Algeria", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-dz.afrinic.net", @@ -52510,24 +52525,6 @@ ] } ], - "registry_url": "http://www.nic.dz", - "whois_server": "whois.nic.dz", - "tld_created": "1994-01-03", - "tld_updated": [ - "2025-10-10" - ], - "annotations": { - "country_name_iso": "Algeria", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--lgbbat1ad8j" ] @@ -52555,6 +52552,28 @@ "date_removed": null } }, + "registry_url": "https://domain.earth/", + "whois_server": "whois.nic.earth", + "rdap_server": "https://rdap.nic.earth/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.earth", @@ -52580,7 +52599,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -52670,29 +52689,7 @@ } ] } - ], - "registry_url": "https://domain.earth/", - "whois_server": "whois.nic.earth", - "rdap_server": "https://rdap.nic.earth/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "eat", @@ -52717,6 +52714,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -52813,34 +52837,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "ec", @@ -52854,6 +52851,26 @@ "tech": "ECUADORDOMAIN S.A." } }, + "registry_url": "http://www.nic.ec", + "whois_server": "whois.nic.ec", + "rdap_server": "https://rdap.registry.ec", + "tld_created": "1991-02-01", + "tld_updated": [ + "2024-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Ecuador", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -52943,27 +52960,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ec", - "whois_server": "whois.nic.ec", - "rdap_server": "https://rdap.registry.ec", - "tld_created": "1991-02-01", - "tld_updated": [ - "2024-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Ecuador", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "eco", @@ -52988,6 +52985,31 @@ "date_removed": null } }, + "registry_url": "https://go.eco", + "whois_server": "whois.nic.eco", + "rdap_server": "https://rdap.eco.fury.ca/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.eco", @@ -53065,32 +53087,7 @@ } ] } - ], - "registry_url": "https://go.eco", - "whois_server": "whois.nic.eco", - "rdap_server": "https://rdap.eco.fury.ca/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] }, { "tld": "edeka", @@ -53115,6 +53112,30 @@ "date_removed": null } }, + "registry_url": "http://edeka.de", + "whois_server": "whois.nic.edeka", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.edeka", @@ -53192,31 +53213,7 @@ } ] } - ], - "registry_url": "http://edeka.de", - "whois_server": "whois.nic.edeka", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "edu", @@ -53230,6 +53227,22 @@ "tech": "VeriSign Global Registry" } }, + "registry_url": "http://www.educause.edu/edudomain", + "whois_server": "whois.educause.edu", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.edu-servers.net", @@ -53255,7 +53268,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -53263,7 +53276,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -53274,7 +53287,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53282,7 +53295,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53293,7 +53306,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53301,7 +53314,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53312,7 +53325,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53320,7 +53333,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -53415,8 +53428,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -53434,8 +53447,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -53453,8 +53466,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -53472,29 +53485,13 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.educause.edu/edudomain", - "whois_server": "whois.educause.edu", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "education", @@ -53519,6 +53516,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.education", @@ -53634,34 +53658,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ee", @@ -53675,6 +53672,22 @@ "tech": "Eesti Interneti Sihtasutus (EIS)" } }, + "registry_url": "http://www.internet.ee", + "whois_server": "whois.tld.ee", + "tld_created": "1992-06-03", + "tld_updated": [ + "2023-06-28" + ], + "annotations": { + "country_name_iso": "Estonia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.tld.ee", @@ -53764,23 +53777,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.internet.ee", - "whois_server": "whois.tld.ee", - "tld_created": "1992-06-03", - "tld_updated": [ - "2023-06-28" - ], - "annotations": { - "country_name_iso": "Estonia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "eg", @@ -53794,6 +53791,15 @@ "tech": "Egyptian Universities Network (EUN)\nSupreme Council of Universities" } }, + "registry_url": "http://www.egregistry.eg/", + "tld_created": "1990-11-30", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Egypt", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-eg.univie.ac.at", @@ -53846,15 +53852,6 @@ ] } ], - "registry_url": "http://www.egregistry.eg/", - "tld_created": "1990-11-30", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Egypt", - "geographic_scope": "country" - }, "idn": [ "xn--wgbh1c" ] @@ -53901,6 +53898,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.email", @@ -54016,34 +54040,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "emerck", @@ -54068,6 +54065,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.emerck", + "whois_server": "whois.nic.emerck", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-11", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.emerck", @@ -54145,30 +54165,7 @@ } ] } - ], - "registry_url": "http://www.nic.emerck", - "whois_server": "whois.nic.emerck", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-11", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "emerson", @@ -54223,6 +54220,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.energy", @@ -54338,10 +54362,34 @@ } ] } - ], + ] + }, + { + "tld": "engineer", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1255-37010", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-06-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", + "tld_created": "2014-05-29", "tld_updated": [ "2025-10-07" ], @@ -54365,30 +54413,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "engineer", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1255-37010", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-06-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -54505,10 +54529,34 @@ } ] } - ], + ] + }, + { + "tld": "engineering", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1436-74788", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", + "tld_created": "2014-04-03", "tld_updated": [ "2025-10-07" ], @@ -54532,30 +54580,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "engineering", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1436-74788", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -54672,10 +54696,34 @@ } ] } - ], + ] + }, + { + "tld": "enterprises", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-09-20", + "date_delegated": "2013-11-19", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", + "tld_created": "2013-11-13", "tld_updated": [ "2025-10-07" ], @@ -54699,30 +54747,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "enterprises", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-09-20", - "date_delegated": "2013-11-19", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -54839,34 +54863,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "epost", @@ -54921,6 +54918,29 @@ "date_removed": null } }, + "registry_url": "http://www.epson.com", + "whois_server": "whois.nic.epson", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -54946,7 +54966,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -54991,30 +55011,7 @@ } ] } - ], - "registry_url": "http://www.epson.com", - "whois_server": "whois.nic.epson", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "equipment", @@ -55039,6 +55036,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.equipment", @@ -55154,34 +55178,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "er", @@ -55195,6 +55192,14 @@ "tech": "Eritrea Telecommunications Corporation" } }, + "tld_created": "1996-09-24", + "tld_updated": [ + "2025-10-28" + ], + "annotations": { + "country_name_iso": "Eritrea", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "er.cctld.authdns.ripe.net", @@ -55239,15 +55244,7 @@ ], "ipv6": [] } - ], - "tld_created": "1996-09-24", - "tld_updated": [ - "2025-10-28" - ], - "annotations": { - "country_name_iso": "Eritrea", - "geographic_scope": "country" - } + ] }, { "tld": "ericsson", @@ -55272,6 +55269,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ericsson", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ericsson", @@ -55349,29 +55368,7 @@ } ] } - ], - "whois_server": "whois.nic.ericsson", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "erni", @@ -55396,6 +55393,26 @@ "date_removed": null } }, + "registry_url": "http://www.erni.ch", + "whois_server": "whois.nic.erni", + "rdap_server": "https://rdap.nic.erni/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -55473,27 +55490,7 @@ } ] } - ], - "registry_url": "http://www.erni.ch", - "whois_server": "whois.nic.erni", - "rdap_server": "https://rdap.nic.erni/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "es", @@ -55507,6 +55504,22 @@ "tech": "Red.es" } }, + "registry_url": "http://www.nic.es/", + "whois_server": "whois.nic.es", + "tld_created": "1988-04-14", + "tld_updated": [ + "2025-07-11" + ], + "annotations": { + "country_name_iso": "Spain", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.es", @@ -55584,23 +55597,7 @@ } ] } - ], - "registry_url": "http://www.nic.es/", - "whois_server": "whois.nic.es", - "tld_created": "1988-04-14", - "tld_updated": [ - "2025-07-11" - ], - "annotations": { - "country_name_iso": "Spain", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "esq", @@ -55625,6 +55622,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -55721,34 +55745,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "estate", @@ -55773,6 +55770,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.estate", @@ -55888,34 +55912,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "esurance", @@ -55959,6 +55956,15 @@ "tech": "Ethio Telecom" } }, + "registry_url": "http://www.ethiotelecom.et", + "tld_created": "1995-10-15", + "tld_updated": [ + "2025-09-19" + ], + "annotations": { + "country_name_iso": "Ethiopia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.et", @@ -56008,16 +56014,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.ethiotelecom.et", - "tld_created": "1995-10-15", - "tld_updated": [ - "2025-09-19" - ], - "annotations": { - "country_name_iso": "Ethiopia", - "geographic_scope": "country" - } + ] }, { "tld": "etisalat", @@ -56061,6 +56058,24 @@ "tech": "EURid vzw" } }, + "registry_url": "http://www.eurid.eu", + "whois_server": "whois.eu", + "tld_created": "2005-04-28", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -56151,24 +56166,6 @@ ] } ], - "registry_url": "http://www.eurid.eu", - "whois_server": "whois.eu", - "tld_created": "2005-04-28", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "supranational" - }, "idn": [ "xn--e1a4c", "xn--qxa6a" @@ -56197,6 +56194,27 @@ "date_removed": null } }, + "registry_url": "https://www.ebu.ch/", + "whois_server": "whois.nic.eurovision", + "rdap_server": "https://rdap.nic.eurovision/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -56274,28 +56292,7 @@ } ] } - ], - "registry_url": "https://www.ebu.ch/", - "whois_server": "whois.nic.eurovision", - "rdap_server": "https://rdap.nic.eurovision/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "eus", @@ -56320,6 +56317,29 @@ "date_removed": null } }, + "registry_url": "https://www.domeinuak.eus", + "whois_server": "whois.nic.eus", + "rdap_server": "https://rdap.nic.eus/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "basque" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -56397,30 +56417,7 @@ } ] } - ], - "registry_url": "https://www.domeinuak.eus", - "whois_server": "whois.nic.eus", - "rdap_server": "https://rdap.nic.eus/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "basque" - } + ] }, { "tld": "events", @@ -56445,6 +56442,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.events", @@ -56560,34 +56584,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "everbank", @@ -56642,6 +56639,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.exchange", @@ -56757,10 +56781,34 @@ } ] } - ], + ] + }, + { + "tld": "expert", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1444-46322", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-21", + "date_delegated": "2014-01-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2014-01-16", "tld_updated": [ "2025-10-07" ], @@ -56784,30 +56832,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "expert", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1444-46322", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-21", - "date_delegated": "2014-01-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -56924,10 +56948,34 @@ } ] } - ], + ] + }, + { + "tld": "exposed", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1446-82057", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-02-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", + "tld_created": "2014-01-30", "tld_updated": [ "2025-10-07" ], @@ -56951,30 +56999,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "exposed", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1446-82057", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-02-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -57091,10 +57115,34 @@ } ] } - ], + ] + }, + { + "tld": "express", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1447-46365", + "registry_operator_country_code": null, + "date_contract_signed": "2015-02-11", + "date_delegated": "2015-04-05", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", + "tld_created": "2015-03-12", "tld_updated": [ "2025-10-07" ], @@ -57118,30 +57166,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "express", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1447-46365", - "registry_operator_country_code": null, - "date_contract_signed": "2015-02-11", - "date_delegated": "2015-04-05", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -57258,34 +57282,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "extraspace", @@ -57310,6 +57307,29 @@ "date_removed": null } }, + "registry_url": "http://www.extraspace.com", + "whois_server": "whois.nic.extraspace", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.extraspace", @@ -57387,30 +57407,7 @@ } ] } - ], - "registry_url": "http://www.extraspace.com", - "whois_server": "whois.nic.extraspace", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fage", @@ -57435,6 +57432,29 @@ "date_removed": null } }, + "registry_url": "https://home.fage/", + "whois_server": "whois.nic.fage", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fage", @@ -57512,30 +57532,7 @@ } ] } - ], - "registry_url": "https://home.fage/", - "whois_server": "whois.nic.fage", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fail", @@ -57560,6 +57557,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fail", @@ -57675,34 +57699,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fairwinds", @@ -57727,14 +57724,38 @@ "date_removed": null } }, + "registry_url": "http://www.fairwindspartners.com", + "rdap_server": "https://rdap.nominet.uk/fairwinds/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fairwinds", "ipv4": [ { "ip": "213.248.219.135", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -57752,8 +57773,8 @@ "ipv4": [ { "ip": "103.49.83.135", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -57880,31 +57901,7 @@ } ] } - ], - "registry_url": "http://www.fairwindspartners.com", - "rdap_server": "https://rdap.nominet.uk/fairwinds/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "faith", @@ -57929,6 +57926,32 @@ "date_removed": null } }, + "registry_url": "http://nic.faith", + "whois_server": "whois.nic.faith", + "rdap_server": "https://rdap.nic.faith/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.faith", @@ -57954,7 +57977,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58044,33 +58067,7 @@ } ] } - ], - "registry_url": "http://nic.faith", - "whois_server": "whois.nic.faith", - "rdap_server": "https://rdap.nic.faith/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "family", @@ -58095,6 +58092,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.family", @@ -58210,10 +58234,34 @@ } ] } - ], + ] + }, + { + "tld": "fan", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1449-26710", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2015-03-16", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-06", + "tld_created": "2015-02-28", "tld_updated": [ "2025-10-07" ], @@ -58237,30 +58285,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "fan", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1449-26710", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2015-03-16", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -58377,34 +58401,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-28", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fans", @@ -58429,6 +58426,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fans/", + "whois_server": "whois.nic.fans", + "rdap_server": "https://rdap.centralnic.com/fans", + "tld_created": "2015-02-05", + "tld_updated": [ + "2023-12-07" + ], + "annotations": { + "iana_admin_alias": "ZDNS", + "iana_admin_slug": "zdns", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.fans", @@ -58506,31 +58527,7 @@ } ] } - ], - "registry_url": "http://www.nic.fans/", - "whois_server": "whois.nic.fans", - "rdap_server": "https://rdap.centralnic.com/fans", - "tld_created": "2015-02-05", - "tld_updated": [ - "2023-12-07" - ], - "annotations": { - "iana_admin_alias": "ZDNS", - "iana_admin_slug": "zdns", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "farm", @@ -58555,6 +58552,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.farm", @@ -58670,34 +58694,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "farmers", @@ -58722,6 +58719,28 @@ "date_removed": null } }, + "registry_url": "https://www.farmers.com", + "rdap_server": "https://rdap.nic.farmers/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.farmers", @@ -58747,7 +58766,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58837,29 +58856,7 @@ } ] } - ], - "registry_url": "https://www.farmers.com", - "rdap_server": "https://rdap.nic.farmers/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fashion", @@ -58884,6 +58881,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fashion/", + "whois_server": "whois.nic.fashion", + "rdap_server": "https://rdap.nic.fashion/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fashion", @@ -58909,7 +58934,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58947,7 +58972,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58955,7 +58980,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58966,7 +58991,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58974,7 +58999,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58985,7 +59010,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -58993,41 +59018,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fashion/", - "whois_server": "whois.nic.fashion", - "rdap_server": "https://rdap.nic.fashion/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fast", @@ -59052,14 +59049,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fast", + "rdap_server": "https://rdap.nominet.uk/fast/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fast", "ipv4": [ { "ip": "213.248.218.66", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -59077,8 +59103,8 @@ "ipv4": [ { "ip": "103.49.82.66", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -59205,36 +59231,7 @@ } ] } - ], - "registry_url": "http://www.nic.fast", - "rdap_server": "https://rdap.nominet.uk/fast/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "fedex", @@ -59259,6 +59256,29 @@ "date_removed": null } }, + "registry_url": "http://www.fedex.com/", + "whois_server": "whois.nic.fedex", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fedex", @@ -59336,30 +59356,7 @@ } ] } - ], - "registry_url": "http://www.fedex.com/", - "whois_server": "whois.nic.fedex", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "feedback", @@ -59384,6 +59381,30 @@ "date_removed": null } }, + "registry_url": "https://nic.feedback", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -59461,31 +59482,7 @@ } ] } - ], - "registry_url": "https://nic.feedback", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "ferrari", @@ -59510,6 +59507,33 @@ "date_removed": null } }, + "registry_url": "http://www.ferrari.com/en_us/", + "whois_server": "whois.nic.ferrari", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Stellantis", + "iana_sponsor_slug": "stellantis", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Stellantis", + "icann_registry_operator_slug": "stellantis", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ferrari", @@ -59587,34 +59611,7 @@ } ] } - ], - "registry_url": "http://www.ferrari.com/en_us/", - "whois_server": "whois.nic.ferrari", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Stellantis", - "iana_sponsor_slug": "stellantis", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Stellantis", - "icann_registry_operator_slug": "stellantis", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ferrero", @@ -59639,6 +59636,28 @@ "date_removed": null } }, + "registry_url": "http://www.ferrero.com", + "rdap_server": "https://rdap.nic.ferrero/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ferrero", @@ -59664,7 +59683,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -59754,29 +59773,7 @@ } ] } - ], - "registry_url": "http://www.ferrero.com", - "rdap_server": "https://rdap.nic.ferrero/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fi", @@ -59790,6 +59787,32 @@ "tech": "Finnish Transport and Communications Agency Traficom" } }, + "registry_url": "https://domain.fi", + "whois_server": "whois.fi", + "rdap_server": "https://rdap.fi/rdap/rdap/", + "tld_created": "1986-12-17", + "tld_updated": [ + "2025-09-15" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Finland", + "as_org_aliases": [ + "CIRA", + "Community DNS", + "DENIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "community-dns", + "denic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.fi", @@ -59981,33 +60004,7 @@ } ] } - ], - "registry_url": "https://domain.fi", - "whois_server": "whois.fi", - "rdap_server": "https://rdap.fi/rdap/rdap/", - "tld_created": "1986-12-17", - "tld_updated": [ - "2025-09-15" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Finland", - "as_org_aliases": [ - "CIRA", - "Community DNS", - "DENIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "community-dns", - "denic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "fiat", @@ -60062,6 +60059,29 @@ "date_removed": null } }, + "registry_url": "http://fidelity.com", + "whois_server": "whois.nic.fidelity", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-28", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fidelity", @@ -60139,30 +60159,7 @@ } ] } - ], - "registry_url": "http://fidelity.com", - "whois_server": "whois.nic.fidelity", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-28", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fido", @@ -60187,6 +60184,29 @@ "date_removed": null } }, + "registry_url": "http://www.rogers.com/consumer/home", + "whois_server": "whois.nic.fido", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.fido", @@ -60264,30 +60284,7 @@ } ] } - ], - "registry_url": "http://www.rogers.com/consumer/home", - "whois_server": "whois.nic.fido", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "film", @@ -60312,6 +60309,26 @@ "date_removed": null } }, + "registry_url": "http://nic.film", + "whois_server": "whois.nic.film", + "rdap_server": "https://rdap.nic.film/", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-01-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.film", @@ -60337,7 +60354,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60375,7 +60392,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60383,7 +60400,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60394,7 +60411,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60402,7 +60419,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60413,7 +60430,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -60421,33 +60438,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.film", - "whois_server": "whois.nic.film", - "rdap_server": "https://rdap.nic.film/", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-01-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "final", @@ -60472,6 +60469,18 @@ "date_removed": null } }, + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -60587,19 +60596,7 @@ } ] } - ], - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] }, { "tld": "finance", @@ -60624,6 +60621,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.finance", @@ -60739,10 +60763,34 @@ } ] } - ], + ] + }, + { + "tld": "financial", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1453-71764", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", + "tld_created": "2014-04-17", "tld_updated": [ "2025-10-07" ], @@ -60766,30 +60814,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "financial", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1453-71764", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -60906,34 +60930,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fire", @@ -60958,14 +60955,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.fire", + "rdap_server": "https://rdap.nominet.uk/fire/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.fire", "ipv4": [ { "ip": "213.248.218.57", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -60983,8 +61010,8 @@ "ipv4": [ { "ip": "103.49.82.57", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -61111,37 +61138,7 @@ } ] } - ], - "registry_url": "http://www.nic.fire", - "rdap_server": "https://rdap.nominet.uk/fire/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "firestone", @@ -61166,77 +61163,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a.gmoregistry.net", - "ipv4": [ - { - "ip": "37.209.192.4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:1::4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "b.gmoregistry.net", - "ipv4": [ - { - "ip": "37.209.194.4", - "asn": 397213, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:2::4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "k.gmoregistry.net", - "ipv4": [ - { - "ip": "37.209.196.4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [] - }, - { - "hostname": "l.gmoregistry.net", - "ipv4": [ - { - "ip": "37.209.198.4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:4::4", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - } - ], "registry_url": "http://www.firestone.com/", "whois_server": "whois.nic.firestone", "rdap_server": "https://rdap.gmoregistry.net/rdap/", @@ -61259,7 +61185,78 @@ "as_org_slugs": [ "ultradns" ] - } + }, + "nameservers": [ + { + "hostname": "a.gmoregistry.net", + "ipv4": [ + { + "ip": "37.209.192.4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:1::4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "b.gmoregistry.net", + "ipv4": [ + { + "ip": "37.209.194.4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:2::4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "k.gmoregistry.net", + "ipv4": [ + { + "ip": "37.209.196.4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [] + }, + { + "hostname": "l.gmoregistry.net", + "ipv4": [ + { + "ip": "37.209.198.4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:4::4", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + } + ] }, { "tld": "firmdale", @@ -61284,6 +61281,25 @@ "date_removed": null } }, + "whois_server": "whois.nic.firmdale", + "rdap_server": "https://rdap.nic.firmdale/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2020-01-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "ns1.nic.firmdale", @@ -61323,26 +61339,7 @@ } ] } - ], - "whois_server": "whois.nic.firmdale", - "rdap_server": "https://rdap.nic.firmdale/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2020-01-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] }, { "tld": "fish", @@ -61367,6 +61364,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fish", @@ -61482,34 +61506,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fishing", @@ -61534,6 +61531,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fishing/", + "whois_server": "whois.nic.fishing", + "rdap_server": "https://rdap.nic.fishing/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fishing", @@ -61559,7 +61584,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61597,7 +61622,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61605,7 +61630,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61616,7 +61641,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61624,7 +61649,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61635,7 +61660,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61643,41 +61668,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fishing/", - "whois_server": "whois.nic.fishing", - "rdap_server": "https://rdap.nic.fishing/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fit", @@ -61702,6 +61699,34 @@ "date_removed": null } }, + "registry_url": "http://nic.fit/", + "whois_server": "whois.nic.fit", + "rdap_server": "https://rdap.nic.fit/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fit", @@ -61727,7 +61752,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61765,7 +61790,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61773,7 +61798,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61784,7 +61809,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61792,7 +61817,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61803,7 +61828,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -61811,41 +61836,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.fit/", - "whois_server": "whois.nic.fit", - "rdap_server": "https://rdap.nic.fit/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fitness", @@ -61870,6 +61867,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-11", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fitness", @@ -61985,34 +62009,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fj", @@ -62026,6 +62023,24 @@ "tech": "The University of the South Pacific, IT Services" } }, + "registry_url": "https://www.domains.fj/", + "whois_server": "www.whois.fj", + "rdap_server": "https://www.rdap.fj", + "tld_created": "1992-06-03", + "tld_updated": [ + "2025-08-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Fiji", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.fj", @@ -62108,25 +62123,7 @@ } ] } - ], - "registry_url": "https://www.domains.fj/", - "whois_server": "www.whois.fj", - "rdap_server": "https://www.rdap.fj", - "tld_created": "1992-06-03", - "tld_updated": [ - "2025-08-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Fiji", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "fk", @@ -62140,6 +62137,15 @@ "tech": "Sure South Atlantic Ltd." } }, + "registry_url": "http://www.sure.co.fk", + "tld_created": "1997-03-26", + "tld_updated": [ + "2024-10-17" + ], + "annotations": { + "country_name_iso": "Falkland Islands (Malvinas)", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.horizon.net.fk", @@ -62177,16 +62183,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.sure.co.fk", - "tld_created": "1997-03-26", - "tld_updated": [ - "2024-10-17" - ], - "annotations": { - "country_name_iso": "Falkland Islands (Malvinas)", - "geographic_scope": "country" - } + ] }, { "tld": "flickr", @@ -62211,6 +62208,28 @@ "date_removed": null } }, + "registry_url": "http://nic.flickr", + "rdap_server": "https://rdap.nic.flickr/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.flickr", @@ -62236,7 +62255,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -62326,29 +62345,7 @@ } ] } - ], - "registry_url": "http://nic.flickr", - "rdap_server": "https://rdap.nic.flickr/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "flights", @@ -62373,6 +62370,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.flights", @@ -62488,34 +62512,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "flir", @@ -62540,6 +62537,28 @@ "date_removed": null } }, + "registry_url": "http://www.flir.com", + "rdap_server": "https://rdap.nic.flir/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.flir", @@ -62565,7 +62584,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -62655,29 +62674,7 @@ } ] } - ], - "registry_url": "http://www.flir.com", - "rdap_server": "https://rdap.nic.flir/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "florist", @@ -62702,6 +62699,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.florist", @@ -62817,34 +62841,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "flowers", @@ -62869,6 +62866,34 @@ "date_removed": null } }, + "registry_url": "https://nic.flowers", + "whois_server": "whois.nic.flowers", + "rdap_server": "https://rdap.centralnic.com/flowers/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.flowers", @@ -62946,35 +62971,7 @@ } ] } - ], - "registry_url": "https://nic.flowers", - "whois_server": "whois.nic.flowers", - "rdap_server": "https://rdap.centralnic.com/flowers/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "flsmidth", @@ -63029,6 +63026,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -63125,34 +63149,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "fm", @@ -63166,6 +63163,26 @@ "tech": "FSM Telecommunications Corporation" } }, + "registry_url": "https://www.dot.fm/", + "whois_server": "whois.nic.fm", + "rdap_server": "https://rdap.centralnic.com/fm/", + "tld_created": "1995-04-19", + "tld_updated": [ + "2024-08-07" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Micronesia, Federated States of", + "as_org_aliases": [ + "CentralNic", + "Packet Clearing House" + ], + "as_org_slugs": [ + "centralnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.fm", @@ -63281,27 +63298,7 @@ } ] } - ], - "registry_url": "https://www.dot.fm/", - "whois_server": "whois.nic.fm", - "rdap_server": "https://rdap.centralnic.com/fm/", - "tld_created": "1995-04-19", - "tld_updated": [ - "2024-08-07" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Micronesia, Federated States of", - "as_org_aliases": [ - "CentralNic", - "Packet Clearing House" - ], - "as_org_slugs": [ - "centralnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "fo", @@ -63315,6 +63312,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://www.nic.fo/", + "whois_server": "whois.nic.fo", + "rdap_server": "https://rdap.centralnic.com/fo", + "tld_created": "1993-05-14", + "tld_updated": [ + "2026-02-13" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Faroe Islands", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.fo", @@ -63430,27 +63447,7 @@ } ] } - ], - "registry_url": "http://www.nic.fo/", - "whois_server": "whois.nic.fo", - "rdap_server": "https://rdap.centralnic.com/fo", - "tld_created": "1993-05-14", - "tld_updated": [ - "2026-02-13" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Faroe Islands", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "foo", @@ -63475,6 +63472,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -63571,34 +63595,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "food", @@ -63623,6 +63620,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2016-11-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -63700,31 +63721,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2016-11-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "foodnetwork", @@ -63779,6 +63776,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.football", @@ -63894,34 +63918,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ford", @@ -63946,6 +63943,28 @@ "date_removed": null } }, + "registry_url": "http://www.ford.com", + "rdap_server": "https://rdap.nic.ford/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ford", @@ -63971,7 +63990,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -64061,29 +64080,7 @@ } ] } - ], - "registry_url": "http://www.ford.com", - "rdap_server": "https://rdap.nic.ford/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "forex", @@ -64108,6 +64105,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.forex", @@ -64223,10 +64247,34 @@ } ] } - ], + ] + }, + { + "tld": "forsale", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1461-35653", + "registry_operator_country_code": null, + "date_contract_signed": "2014-05-22", + "date_delegated": "2014-10-01", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", + "tld_created": "2014-09-24", "tld_updated": [ "2025-10-07" ], @@ -64250,30 +64298,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "forsale", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1461-35653", - "registry_operator_country_code": null, - "date_contract_signed": "2014-05-22", - "date_delegated": "2014-10-01", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -64390,34 +64414,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "forum", @@ -64442,6 +64439,30 @@ "date_removed": null } }, + "registry_url": "http://www.topspectrum.com", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -64519,31 +64540,7 @@ } ] } - ], - "registry_url": "http://www.topspectrum.com", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "foundation", @@ -64568,6 +64565,34 @@ "date_removed": null } }, + "registry_url": "http://nic.foundation", + "whois_server": "whois.nic.foundation", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.foundation", @@ -64683,35 +64708,7 @@ } ] } - ], - "registry_url": "http://nic.foundation", - "whois_server": "whois.nic.foundation", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "fox", @@ -64736,6 +64733,29 @@ "date_removed": null } }, + "registry_url": "https://www.fox.com", + "whois_server": "whois.nic.fox", + "rdap_server": "https://rdap.nic.fox/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.fox", @@ -64761,7 +64781,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -64851,30 +64871,7 @@ } ] } - ], - "registry_url": "https://www.fox.com", - "whois_server": "whois.nic.fox", - "rdap_server": "https://rdap.nic.fox/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fr", @@ -64888,6 +64885,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "https://www.nic.fr", + "whois_server": "whois.nic.fr", + "rdap_server": "https://rdap.nic.fr/", + "tld_created": "1986-09-02", + "tld_updated": [ + "2025-07-31" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "France", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -64946,33 +64969,7 @@ } ] } - ], - "registry_url": "https://www.nic.fr", - "whois_server": "whois.nic.fr", - "rdap_server": "https://rdap.nic.fr/", - "tld_created": "1986-09-02", - "tld_updated": [ - "2025-07-31" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "France", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "free", @@ -64997,14 +64994,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.free", + "rdap_server": "https://rdap.nominet.uk/free/", + "tld_created": "2016-10-27", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.free", "ipv4": [ { "ip": "213.248.218.67", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -65022,8 +65048,8 @@ "ipv4": [ { "ip": "103.49.82.67", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -65150,36 +65176,7 @@ } ] } - ], - "registry_url": "http://www.nic.free", - "rdap_server": "https://rdap.nominet.uk/free/", - "tld_created": "2016-10-27", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "fresenius", @@ -65204,6 +65201,29 @@ "date_removed": null } }, + "registry_url": "http://www.freseniusregistry.com", + "whois_server": "whois.nic.fresenius", + "rdap_server": "https://rdap.centralnic.com/fresenius", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.fresenius", @@ -65281,30 +65301,7 @@ } ] } - ], - "registry_url": "http://www.freseniusregistry.com", - "whois_server": "whois.nic.fresenius", - "rdap_server": "https://rdap.centralnic.com/fresenius", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "frl", @@ -65329,6 +65326,29 @@ "date_removed": null } }, + "registry_url": "https://registreer.frl", + "whois_server": "whois.nic.frl", + "rdap_server": "https://rdap.centralnic.com/frl", + "tld_created": "2014-08-22", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.frl", @@ -65406,30 +65426,7 @@ } ] } - ], - "registry_url": "https://registreer.frl", - "whois_server": "whois.nic.frl", - "rdap_server": "https://rdap.centralnic.com/frl", - "tld_created": "2014-08-22", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "frogans", @@ -65454,6 +65451,29 @@ "date_removed": null } }, + "registry_url": "https://nic.frogans/", + "whois_server": "whois.nic.frogans", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.frogans", @@ -65531,30 +65551,7 @@ } ] } - ], - "registry_url": "https://nic.frogans/", - "whois_server": "whois.nic.frogans", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "frontdoor", @@ -65609,6 +65606,28 @@ "date_removed": null } }, + "registry_url": "http://frontier.com", + "rdap_server": "https://rdap.nic.frontier/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.frontier", @@ -65634,7 +65653,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -65724,29 +65743,7 @@ } ] } - ], - "registry_url": "http://frontier.com", - "rdap_server": "https://rdap.nic.frontier/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ftr", @@ -65771,6 +65768,27 @@ "date_removed": null } }, + "registry_url": "http://frontier.com", + "rdap_server": "https://rdap.nic.ftr/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ftr", @@ -65796,7 +65814,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -65886,28 +65904,7 @@ } ] } - ], - "registry_url": "http://frontier.com", - "rdap_server": "https://rdap.nic.ftr/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fujitsu", @@ -65932,6 +65929,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-06-12" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -65957,7 +65977,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -66002,30 +66022,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-06-12" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "fujixerox", @@ -66080,6 +66077,34 @@ "date_removed": null } }, + "registry_url": "https://www.radix.website/", + "whois_server": "whois.nic.fun", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2016-11-30", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -66157,35 +66182,7 @@ } ] } - ], - "registry_url": "https://www.radix.website/", - "whois_server": "whois.nic.fun", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2016-11-30", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "fund", @@ -66210,6 +66207,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.fund", @@ -66325,7 +66349,31 @@ } ] } - ], + ] + }, + { + "tld": "furniture", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1466-60532", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2014-04-17", @@ -66352,30 +66400,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "furniture", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1466-60532", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -66492,10 +66516,34 @@ } ] } - ], + ] + }, + { + "tld": "futbol", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1469-89174", + "registry_operator_country_code": null, + "date_contract_signed": "2013-09-20", + "date_delegated": "2014-02-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2014-02-06", "tld_updated": [ "2025-10-07" ], @@ -66519,30 +66567,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "futbol", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1469-89174", - "registry_operator_country_code": null, - "date_contract_signed": "2013-09-20", - "date_delegated": "2014-02-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -66659,10 +66683,34 @@ } ] } - ], + ] + }, + { + "tld": "fyi", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1579-33517", + "registry_operator_country_code": null, + "date_contract_signed": "2015-04-02", + "date_delegated": "2015-05-22", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", + "tld_created": "2015-05-14", "tld_updated": [ "2025-10-07" ], @@ -66686,30 +66734,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "fyi", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1579-33517", - "registry_operator_country_code": null, - "date_contract_signed": "2015-04-02", - "date_delegated": "2015-05-22", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -66826,34 +66850,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ga", @@ -66867,6 +66864,22 @@ "tech": "Agence Nationale des Infrastructures Numériques et des Fréquences (ANINF)" } }, + "tld_created": "1994-12-12", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "country_name_iso": "Gabon", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -66925,23 +66938,7 @@ } ] } - ], - "tld_created": "1994-12-12", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "country_name_iso": "Gabon", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gal", @@ -66966,6 +66963,29 @@ "date_removed": null } }, + "registry_url": "http://asociacion.dominio.gal/", + "whois_server": "whois.nic.gal", + "rdap_server": "https://rdap.nic.gal/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "galician" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -67043,30 +67063,7 @@ } ] } - ], - "registry_url": "http://asociacion.dominio.gal/", - "whois_server": "whois.nic.gal", - "rdap_server": "https://rdap.nic.gal/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "galician" - } + ] }, { "tld": "gallery", @@ -67091,6 +67088,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gallery", @@ -67206,34 +67230,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gallo", @@ -67258,6 +67255,29 @@ "date_removed": null } }, + "registry_url": "http://www.gallo.com", + "whois_server": "whois.nic.gallo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.gallo", @@ -67335,30 +67355,7 @@ } ] } - ], - "registry_url": "http://www.gallo.com", - "whois_server": "whois.nic.gallo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gallup", @@ -67383,6 +67380,29 @@ "date_removed": null } }, + "registry_url": "http://gallup.com", + "whois_server": "whois.nic.gallup", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.gallup", @@ -67460,30 +67480,7 @@ } ] } - ], - "registry_url": "http://gallup.com", - "whois_server": "whois.nic.gallup", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "game", @@ -67508,6 +67505,34 @@ "date_removed": null } }, + "registry_url": "https://nic.game", + "whois_server": "whois.nic.game", + "rdap_server": "https://rdap.centralnic.com/game/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.game", @@ -67585,35 +67610,7 @@ } ] } - ], - "registry_url": "https://nic.game", - "whois_server": "whois.nic.game", - "rdap_server": "https://rdap.centralnic.com/game/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "games", @@ -67638,6 +67635,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.games", @@ -67753,34 +67777,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gap", @@ -67805,6 +67802,28 @@ "date_removed": null } }, + "registry_url": "http://www.gap.com", + "rdap_server": "https://rdap.nic.gap/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.gap", @@ -67830,7 +67849,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -67920,29 +67939,7 @@ } ] } - ], - "registry_url": "http://www.gap.com", - "rdap_server": "https://rdap.nic.gap/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "garden", @@ -67967,6 +67964,34 @@ "date_removed": null } }, + "registry_url": "http://nic.garden/", + "whois_server": "whois.nic.garden", + "rdap_server": "https://rdap.nic.garden/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.garden", @@ -67992,7 +68017,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68030,7 +68055,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68038,7 +68063,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68049,7 +68074,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68057,7 +68082,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68068,7 +68093,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68076,41 +68101,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.garden/", - "whois_server": "whois.nic.garden", - "rdap_server": "https://rdap.nic.garden/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gay", @@ -68135,6 +68132,34 @@ "date_removed": null } }, + "registry_url": "http://nic.gay", + "whois_server": "whois.nic.gay", + "rdap_server": "https://rdap.nic.gay/", + "tld_created": "2019-07-19", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.gay", @@ -68160,7 +68185,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68198,7 +68223,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68206,7 +68231,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68217,7 +68242,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68225,7 +68250,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68236,7 +68261,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -68244,41 +68269,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.gay", - "whois_server": "whois.nic.gay", - "rdap_server": "https://rdap.nic.gay/", - "tld_created": "2019-07-19", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gb", @@ -68292,6 +68289,14 @@ "tech": "Jisc" } }, + "tld_created": "1985-07-24", + "tld_updated": [ + "2024-09-10" + ], + "annotations": { + "country_name_iso": "United Kingdom", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.uu.net", @@ -68355,15 +68360,7 @@ } ] } - ], - "tld_created": "1985-07-24", - "tld_updated": [ - "2024-09-10" - ], - "annotations": { - "country_name_iso": "United Kingdom", - "geographic_scope": "country" - } + ] }, { "tld": "gbiz", @@ -68388,6 +68385,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -68484,34 +68508,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "gd", @@ -68525,6 +68522,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://nic.gd", + "whois_server": "whois.nic.gd", + "rdap_server": "https://rdap.centralnic.com/gd", + "tld_created": "1992-06-03", + "tld_updated": [ + "2025-04-07" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Grenada", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.gd", @@ -68602,27 +68619,7 @@ } ] } - ], - "registry_url": "http://nic.gd", - "whois_server": "whois.nic.gd", - "rdap_server": "https://rdap.centralnic.com/gd", - "tld_created": "1992-06-03", - "tld_updated": [ - "2025-04-07" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Grenada", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gdn", @@ -68647,6 +68644,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.gdn", + "whois_server": "whois.nic.gdn", + "rdap_server": "https://rdap.nic.gdn/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2026-05-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "ns1.nic.gdn", @@ -68705,27 +68722,7 @@ } ] } - ], - "registry_url": "http://www.nic.gdn", - "whois_server": "whois.nic.gdn", - "rdap_server": "https://rdap.nic.gdn/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2026-05-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "ge", @@ -68739,6 +68736,22 @@ "tech": "Caucasus Online LLC" } }, + "registry_url": "http://nic.ge", + "whois_server": "whois.nic.ge", + "tld_created": "1992-12-02", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "country_name_iso": "Georgia", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.ge", @@ -68789,22 +68802,6 @@ "ipv6": [] } ], - "registry_url": "http://nic.ge", - "whois_server": "whois.nic.ge", - "tld_created": "1992-12-02", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "country_name_iso": "Georgia", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - }, "idn": [ "xn--node" ] @@ -68832,6 +68829,28 @@ "date_removed": null } }, + "registry_url": "http://www.geagroup.com", + "whois_server": "whois.nic.gea", + "rdap_server": "https://rdap.nic.gea/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2022-06-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.gea", @@ -68890,29 +68909,7 @@ } ] } - ], - "registry_url": "http://www.geagroup.com", - "whois_server": "whois.nic.gea", - "rdap_server": "https://rdap.nic.gea/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2022-06-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "gent", @@ -68937,6 +68934,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.gent", + "whois_server": "whois.nic.gent", + "rdap_server": "https://rdap.centralnic.com/gent", + "tld_created": "2014-07-03", + "tld_updated": [ + "2026-03-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.gent", @@ -69014,30 +69034,7 @@ } ] } - ], - "registry_url": "https://www.nic.gent", - "whois_server": "whois.nic.gent", - "rdap_server": "https://rdap.centralnic.com/gent", - "tld_created": "2014-07-03", - "tld_updated": [ - "2026-03-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] }, { "tld": "genting", @@ -69062,6 +69059,29 @@ "date_removed": null } }, + "registry_url": "http://nic.genting/", + "whois_server": "whois.nic.genting", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.genting", @@ -69177,30 +69197,7 @@ } ] } - ], - "registry_url": "http://nic.genting/", - "whois_server": "whois.nic.genting", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "george", @@ -69225,6 +69222,35 @@ "date_removed": null } }, + "registry_url": "http://www.walmart.com", + "whois_server": "whois.nic.george", + "rdap_server": "https://rdap.nic.george", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.george", @@ -69250,7 +69276,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69288,7 +69314,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69296,7 +69322,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69307,7 +69333,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69315,7 +69341,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69326,7 +69352,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69334,42 +69360,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.walmart.com", - "whois_server": "whois.nic.george", - "rdap_server": "https://rdap.nic.george", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gf", @@ -69383,6 +69380,16 @@ "tech": "CANAL+ TELECOM" } }, + "registry_url": "https://www.dom-enic.com", + "whois_server": "whois.mediaserv.net", + "tld_created": "1996-07-25", + "tld_updated": [ + "2021-10-18" + ], + "annotations": { + "country_name_iso": "French Guiana", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1-fr.mediaserv.net", @@ -69420,17 +69427,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.dom-enic.com", - "whois_server": "whois.mediaserv.net", - "tld_created": "1996-07-25", - "tld_updated": [ - "2021-10-18" - ], - "annotations": { - "country_name_iso": "French Guiana", - "geographic_scope": "country" - } + ] }, { "tld": "gg", @@ -69444,6 +69441,24 @@ "tech": "Island Networks Limited" } }, + "registry_url": "http://www.nic.gg", + "whois_server": "whois.gg", + "tld_created": "1996-08-07", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "Guernsey", + "as_org_aliases": [ + "Nominet", + "Packet Clearing House" + ], + "as_org_slugs": [ + "nominet", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.ci-servers.org", @@ -69469,8 +69484,8 @@ "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -69488,8 +69503,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -69559,25 +69574,7 @@ } ] } - ], - "registry_url": "http://www.nic.gg", - "whois_server": "whois.gg", - "tld_created": "1996-08-07", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "Guernsey", - "as_org_aliases": [ - "Nominet", - "Packet Clearing House" - ], - "as_org_slugs": [ - "nominet", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ggee", @@ -69602,6 +69599,34 @@ "date_removed": null } }, + "registry_url": "http://nic.ggee", + "whois_server": "whois.nic.ggee", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2019-08-07" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -69627,7 +69652,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -69672,35 +69697,7 @@ } ] } - ], - "registry_url": "http://nic.ggee", - "whois_server": "whois.nic.ggee", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2019-08-07" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gh", @@ -69714,6 +69711,16 @@ "tech": "Network Computer Systems Limited" } }, + "registry_url": "http://www.nic.gh", + "whois_server": "whois.nic.gh", + "tld_created": "1995-01-19", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "country_name_iso": "Ghana", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.dns.br", @@ -69758,17 +69765,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gh", - "whois_server": "whois.nic.gh", - "tld_created": "1995-01-19", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "country_name_iso": "Ghana", - "geographic_scope": "country" - } + ] }, { "tld": "gi", @@ -69782,6 +69779,24 @@ "tech": "Identity Digital Inc." } }, + "registry_url": "http://www.nic.gi", + "whois_server": "whois.identitydigital.services", + "tld_created": "1995-12-05", + "tld_updated": [ + "2024-06-24" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "country_name_iso": "Gibraltar", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -69897,25 +69912,7 @@ } ] } - ], - "registry_url": "http://www.nic.gi", - "whois_server": "whois.identitydigital.services", - "tld_created": "1995-12-05", - "tld_updated": [ - "2024-06-24" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "country_name_iso": "Gibraltar", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gift", @@ -69940,6 +69937,30 @@ "date_removed": null } }, + "registry_url": "http://uniregistry.link", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -70017,31 +70038,7 @@ } ] } - ], - "registry_url": "http://uniregistry.link", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "gifts", @@ -70066,6 +70063,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gifts", @@ -70181,34 +70205,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gives", @@ -70233,6 +70230,34 @@ "date_removed": null } }, + "registry_url": "http://nic.gives", + "whois_server": "whois.nic.gives", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gives", @@ -70348,11 +70373,35 @@ } ] } - ], - "registry_url": "http://nic.gives", - "whois_server": "whois.nic.gives", + ] + }, + { + "tld": "giving", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Public Interest Registry (PIR)", + "admin": "Public Interest Registry (PIR)", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Public Interest Registry", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1284-21841", + "registry_operator_country_code": null, + "date_contract_signed": "2014-11-13", + "date_delegated": "2015-08-06", + "contract_terminated": false, + "date_removed": null + } + }, + "registry_url": "http://nic.giving", + "whois_server": "whois.nic.giving", "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-05-29", + "tld_created": "2015-06-11", "tld_updated": [ "2025-08-14" ], @@ -70376,30 +70425,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "giving", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Public Interest Registry (PIR)", - "admin": "Public Interest Registry (PIR)", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Public Interest Registry", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1284-21841", - "registry_operator_country_code": null, - "date_contract_signed": "2014-11-13", - "date_delegated": "2015-08-06", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -70516,35 +70541,7 @@ } ] } - ], - "registry_url": "http://nic.giving", - "whois_server": "whois.nic.giving", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gl", @@ -70558,6 +70555,24 @@ "tech": "TELE Greenland A/S" } }, + "registry_url": "http://www.nic.gl/", + "whois_server": "whois.nic.gl", + "rdap_server": "https://rdap.centralnic.com/gl/", + "tld_created": "1994-04-08", + "tld_updated": [ + "2024-12-19" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Greenland", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.gl", @@ -70633,25 +70648,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gl/", - "whois_server": "whois.nic.gl", - "rdap_server": "https://rdap.centralnic.com/gl/", - "tld_created": "1994-04-08", - "tld_updated": [ - "2024-12-19" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Greenland", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "glade", @@ -70706,6 +70703,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.glass", @@ -70821,34 +70845,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gle", @@ -70873,6 +70870,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -70969,34 +70993,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "global", @@ -71021,6 +71018,33 @@ "date_removed": null } }, + "registry_url": "https://identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-08-08" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.global", @@ -71098,34 +71122,7 @@ } ] } - ], - "registry_url": "https://identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-08-08" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "globo", @@ -71150,6 +71147,19 @@ "date_removed": null } }, + "registry_url": "https://nic.globo/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -71265,20 +71275,7 @@ } ] } - ], - "registry_url": "https://nic.globo/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] }, { "tld": "gm", @@ -71292,6 +71289,15 @@ "tech": "CYPDOM" } }, + "registry_url": "http://www.nic.gm", + "tld_created": "1997-03-28", + "tld_updated": [ + "2025-02-27" + ], + "annotations": { + "country_name_iso": "Gambia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-gm.afrinic.net", @@ -71343,16 +71349,7 @@ } ] } - ], - "registry_url": "http://www.nic.gm", - "tld_created": "1997-03-28", - "tld_updated": [ - "2025-02-27" - ], - "annotations": { - "country_name_iso": "Gambia", - "geographic_scope": "country" - } + ] }, { "tld": "gmail", @@ -71377,6 +71374,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -71473,35 +71498,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "gmbh", @@ -71526,6 +71523,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gmbh", @@ -71641,34 +71665,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gmo", @@ -71693,6 +71690,34 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -71718,7 +71743,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -71763,35 +71788,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gmx", @@ -71816,6 +71813,29 @@ "date_removed": null } }, + "registry_url": "https://cp.nic.gmx", + "whois_server": "whois.nic.gmx", + "rdap_server": "https://rdap.nic.gmx/", + "tld_created": "2014-08-07", + "tld_updated": [ + "2022-09-02" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -71893,30 +71913,7 @@ } ] } - ], - "registry_url": "https://cp.nic.gmx", - "whois_server": "whois.nic.gmx", - "rdap_server": "https://rdap.nic.gmx/", - "tld_created": "2014-08-07", - "tld_updated": [ - "2022-09-02" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "gn", @@ -71930,6 +71927,22 @@ "tech": "Agence Nationale de Digitalisation de l’Etat (ANDE)" } }, + "registry_url": "https://ande.gov.gn/dns-gn/", + "whois_server": "whois.ande.gov.gn", + "tld_created": "1994-08-09", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "country_name_iso": "Guinea", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -72000,23 +72013,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://ande.gov.gn/dns-gn/", - "whois_server": "whois.ande.gov.gn", - "tld_created": "1994-08-09", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "country_name_iso": "Guinea", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "godaddy", @@ -72041,6 +72038,33 @@ "date_removed": null } }, + "registry_url": "http://nic.godaddy", + "whois_server": "whois.nic.godaddy", + "rdap_server": "https://rdap.nic.godaddy/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.godaddy", @@ -72066,7 +72090,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72104,7 +72128,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72112,7 +72136,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72123,7 +72147,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72131,7 +72155,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72142,7 +72166,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72150,40 +72174,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.godaddy", - "whois_server": "whois.nic.godaddy", - "rdap_server": "https://rdap.nic.godaddy/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "gold", @@ -72208,6 +72205,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.gold", @@ -72323,34 +72347,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "goldpoint", @@ -72375,6 +72372,31 @@ "date_removed": null } }, + "registry_url": "http://nic.goldpoint", + "whois_server": "whois.nic.goldpoint", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -72400,7 +72422,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -72445,32 +72467,7 @@ } ] } - ], - "registry_url": "http://nic.goldpoint", - "whois_server": "whois.nic.goldpoint", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "golf", @@ -72495,6 +72492,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.golf", @@ -72610,34 +72634,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "goo", @@ -72722,6 +72719,29 @@ "date_removed": null } }, + "registry_url": "https://www.goodyear.com/", + "whois_server": "whois.nic.goodyear", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.goodyear", @@ -72799,30 +72819,7 @@ } ] } - ], - "registry_url": "https://www.goodyear.com/", - "whois_server": "whois.nic.goodyear", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "goog", @@ -72847,6 +72844,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -72943,34 +72967,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "google", @@ -72995,6 +72992,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -73091,35 +73116,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "gop", @@ -73144,14 +73141,38 @@ "date_removed": null } }, + "registry_url": "http://join.gop", + "whois_server": "whois.nic.gop", + "rdap_server": "https://rdap.nominet.uk/gop/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-01-22" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.gop", "ipv4": [ { "ip": "213.248.219.39", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -73169,8 +73190,8 @@ "ipv4": [ { "ip": "103.49.83.39", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -73297,31 +73318,7 @@ } ] } - ], - "registry_url": "http://join.gop", - "whois_server": "whois.nic.gop", - "rdap_server": "https://rdap.nominet.uk/gop/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-01-22" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "got", @@ -73346,14 +73343,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.got", + "rdap_server": "https://rdap.nominet.uk/got/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-05-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.got", "ipv4": [ { "ip": "213.248.218.68", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -73371,8 +73393,8 @@ "ipv4": [ { "ip": "103.49.82.68", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -73499,32 +73521,7 @@ } ] } - ], - "registry_url": "http://www.nic.got", - "rdap_server": "https://rdap.nominet.uk/got/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-05-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "gov", @@ -73538,6 +73535,22 @@ "tech": "Cloudflare, Inc." } }, + "registry_url": "https://get.gov", + "whois_server": "whois.nic.gov", + "rdap_server": "https://rdap.nic.gov/rdap/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "rdap_source": "IANA", + "as_org_aliases": [ + "Cloudflare" + ], + "as_org_slugs": [ + "cloudflare" + ] + }, "nameservers": [ { "hostname": "a.ns.gov", @@ -73615,23 +73628,7 @@ } ] } - ], - "registry_url": "https://get.gov", - "whois_server": "whois.nic.gov", - "rdap_server": "https://rdap.nic.gov/rdap/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "rdap_source": "IANA", - "as_org_aliases": [ - "Cloudflare" - ], - "as_org_slugs": [ - "cloudflare" - ] - } + ] }, { "tld": "gp", @@ -73645,6 +73642,24 @@ "tech": "Bull ATOS Caraibes" } }, + "registry_url": "http://www.nic.gp/", + "whois_server": "whois.nic.gp", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-09-09" + ], + "annotations": { + "country_name_iso": "Guadeloupe", + "as_org_aliases": [ + "AFNIC", + "LACTLD" + ], + "as_org_slugs": [ + "afnic", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -73727,25 +73742,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.gp/", - "whois_server": "whois.nic.gp", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-09-09" - ], - "annotations": { - "country_name_iso": "Guadeloupe", - "as_org_aliases": [ - "AFNIC", - "LACTLD" - ], - "as_org_slugs": [ - "afnic", - "lactld" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gq", @@ -73759,6 +73756,16 @@ "tech": "GETESA S.A." } }, + "registry_url": "http://www.dominio.gq", + "whois_server": "whois.dominio.gq", + "tld_created": "1997-07-10", + "tld_updated": [ + "2023-08-14" + ], + "annotations": { + "country_name_iso": "Equatorial Guinea", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.gq", @@ -73836,17 +73843,7 @@ } ] } - ], - "registry_url": "http://www.dominio.gq", - "whois_server": "whois.dominio.gq", - "tld_created": "1997-07-10", - "tld_updated": [ - "2023-08-14" - ], - "annotations": { - "country_name_iso": "Equatorial Guinea", - "geographic_scope": "country" - } + ] }, { "tld": "gr", @@ -73860,6 +73857,23 @@ "tech": "ICS-FORTH GR" } }, + "registry_url": "http://www.gr", + "tld_created": "1989-02-19", + "tld_updated": [ + "2022-06-16" + ], + "annotations": { + "country_name_iso": "Greece", + "as_org_aliases": [ + "Community DNS", + "DENIC" + ], + "as_org_slugs": [ + "community-dns", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "estia.ics.forth.gr", @@ -73962,23 +73976,6 @@ "ipv6": [] } ], - "registry_url": "http://www.gr", - "tld_created": "1989-02-19", - "tld_updated": [ - "2022-06-16" - ], - "annotations": { - "country_name_iso": "Greece", - "as_org_aliases": [ - "Community DNS", - "DENIC" - ], - "as_org_slugs": [ - "community-dns", - "denic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--qxam" ] @@ -74006,6 +74003,28 @@ "date_removed": null } }, + "registry_url": "http://www.grainger.com", + "rdap_server": "https://rdap.nic.grainger/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.grainger", @@ -74031,7 +74050,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74121,29 +74140,7 @@ } ] } - ], - "registry_url": "http://www.grainger.com", - "rdap_server": "https://rdap.nic.grainger/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "graphics", @@ -74168,6 +74165,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.graphics", @@ -74283,10 +74307,34 @@ } ] } - ], + ] + }, + { + "tld": "gratis", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1481-2922", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-04-23", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", + "tld_created": "2014-04-17", "tld_updated": [ "2025-10-07" ], @@ -74310,30 +74358,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "gratis", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1481-2922", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-04-23", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -74450,12 +74474,36 @@ } ] } - ], + ] + }, + { + "tld": "green", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Identity Digital Limited", + "admin": "Identity Digital Limited", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Identity Digital Domains Limited", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-868-24661", + "registry_operator_country_code": null, + "date_contract_signed": "2014-05-08", + "date_delegated": "2014-06-19", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2014-06-12", "tld_updated": [ - "2025-10-07" + "2025-09-04" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -74477,30 +74525,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "green", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Identity Digital Limited", - "admin": "Identity Digital Limited", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Identity Digital Domains Limited", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-868-24661", - "registry_operator_country_code": null, - "date_contract_signed": "2014-05-08", - "date_delegated": "2014-06-19", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -74579,12 +74603,36 @@ } ] } - ], + ] + }, + { + "tld": "gripe", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1486-63504", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-12", + "tld_created": "2014-04-03", "tld_updated": [ - "2025-09-04" + "2025-10-07" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -74606,30 +74654,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "gripe", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1486-63504", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -74746,34 +74770,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "grocery", @@ -74798,6 +74795,34 @@ "date_removed": null } }, + "registry_url": "http://www.walmart.com", + "whois_server": "whois.nic.grocery", + "rdap_server": "https://rdap.nic.grocery", + "tld_created": "2017-06-08", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.grocery", @@ -74823,7 +74848,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74861,7 +74886,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74869,7 +74894,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74880,7 +74905,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74888,7 +74913,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74899,7 +74924,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -74907,41 +74932,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.walmart.com", - "whois_server": "whois.nic.grocery", - "rdap_server": "https://rdap.nic.grocery", - "tld_created": "2017-06-08", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "group", @@ -74966,6 +74963,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.group", @@ -75081,34 +75105,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gs", @@ -75122,6 +75119,24 @@ "tech": "Atlantis North Ltd" } }, + "registry_url": "http://secure.nic.gs", + "whois_server": "whois.nic.gs", + "rdap_server": "https://rdap.nic.gs", + "tld_created": "1997-07-31", + "tld_updated": [ + "2024-03-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "South Georgia and the South Sandwich Islands", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.gs", @@ -75173,25 +75188,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://secure.nic.gs", - "whois_server": "whois.nic.gs", - "rdap_server": "https://rdap.nic.gs", - "tld_created": "1997-07-31", - "tld_updated": [ - "2024-03-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "South Georgia and the South Sandwich Islands", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gt", @@ -75205,6 +75202,25 @@ "tech": "Universidad del Valle de Guatemala" } }, + "registry_url": "http://www.gt", + "tld_created": "1992-08-14", + "tld_updated": [ + "2024-01-16" + ], + "annotations": { + "country_name_iso": "Guatemala", + "as_org_aliases": [ + "CZNIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -75326,26 +75342,7 @@ } ] } - ], - "registry_url": "http://www.gt", - "tld_created": "1992-08-14", - "tld_updated": [ - "2024-01-16" - ], - "annotations": { - "country_name_iso": "Guatemala", - "as_org_aliases": [ - "CZNIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gu", @@ -75359,6 +75356,15 @@ "tech": "University of Guam" } }, + "registry_url": "https://give.uog.edu/shop/", + "tld_created": "1994-04-15", + "tld_updated": [ + "2025-09-08" + ], + "annotations": { + "country_name_iso": "Guam", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gold.uog.edu", @@ -75422,16 +75428,7 @@ } ] } - ], - "registry_url": "https://give.uog.edu/shop/", - "tld_created": "1994-04-15", - "tld_updated": [ - "2025-09-08" - ], - "annotations": { - "country_name_iso": "Guam", - "geographic_scope": "country" - } + ] }, { "tld": "guardian", @@ -75486,14 +75483,38 @@ "date_removed": null } }, + "registry_url": "http://www.gucci.com", + "rdap_server": "https://rdap.nominet.uk/gucci/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.gucci", "ipv4": [ { "ip": "213.248.219.43", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -75511,8 +75532,8 @@ "ipv4": [ { "ip": "103.49.83.43", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -75639,31 +75660,7 @@ } ] } - ], - "registry_url": "http://www.gucci.com", - "rdap_server": "https://rdap.nominet.uk/gucci/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "guge", @@ -75688,6 +75685,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -75784,34 +75808,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "guide", @@ -75836,6 +75833,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.guide", @@ -75951,34 +75975,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "guitars", @@ -76003,6 +76000,34 @@ "date_removed": null } }, + "registry_url": "https://nic.guitars", + "whois_server": "whois.nic.guitars", + "rdap_server": "https://rdap.centralnic.com/guitars/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.guitars", @@ -76080,35 +76105,7 @@ } ] } - ], - "registry_url": "https://nic.guitars", - "whois_server": "whois.nic.guitars", - "rdap_server": "https://rdap.centralnic.com/guitars/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "guru", @@ -76133,6 +76130,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.guru", @@ -76248,34 +76272,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "gw", @@ -76289,6 +76286,20 @@ "tech": "Associação DNS.PT (DNS.PT)" } }, + "tld_created": "1997-02-04", + "tld_updated": [ + "2022-07-11" + ], + "annotations": { + "country_name_iso": "Guinea-Bissau", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gw01.dns.pt", @@ -76347,21 +76358,7 @@ } ] } - ], - "tld_created": "1997-02-04", - "tld_updated": [ - "2022-07-11" - ], - "annotations": { - "country_name_iso": "Guinea-Bissau", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "gy", @@ -76375,6 +76372,26 @@ "tech": "University of Guyana" } }, + "registry_url": "https://registry.gy/", + "whois_server": "whois.registry.gy", + "rdap_server": "https://rdap.registry.gy", + "tld_created": "1994-09-13", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Guyana", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -76414,27 +76431,7 @@ } ] } - ], - "registry_url": "https://registry.gy/", - "whois_server": "whois.registry.gy", - "rdap_server": "https://rdap.registry.gy", - "tld_created": "1994-09-13", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Guyana", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "hair", @@ -76459,6 +76456,34 @@ "date_removed": null } }, + "registry_url": "https://nic.hair/", + "whois_server": "whois.nic.hair", + "rdap_server": "https://rdap.centralnic.com/hair/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.hair", @@ -76536,35 +76561,7 @@ } ] } - ], - "registry_url": "https://nic.hair/", - "whois_server": "whois.nic.hair", - "rdap_server": "https://rdap.centralnic.com/hair/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "hamburg", @@ -76589,6 +76586,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hamburg", + "whois_server": "whois.nic.hamburg", + "rdap_server": "https://rdap.nic.hamburg/v1/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.nic.hamburg", @@ -76647,29 +76666,7 @@ } ] } - ], - "registry_url": "http://www.nic.hamburg", - "whois_server": "whois.nic.hamburg", - "rdap_server": "https://rdap.nic.hamburg/v1/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "city" - } + ] }, { "tld": "hangout", @@ -76694,6 +76691,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -76790,34 +76814,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "haus", @@ -76842,6 +76839,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-26", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.haus", @@ -76957,34 +76981,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-26", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "hbo", @@ -77009,6 +77006,28 @@ "date_removed": null } }, + "registry_url": "http://www.hbo.com", + "rdap_server": "https://rdap.nic.hbo/", + "tld_created": "2016-07-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hbo", @@ -77034,7 +77053,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -77124,29 +77143,7 @@ } ] } - ], - "registry_url": "http://www.hbo.com", - "rdap_server": "https://rdap.nic.hbo/", - "tld_created": "2016-07-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hdfc", @@ -77171,6 +77168,33 @@ "date_removed": null } }, + "registry_url": "http://nic.hdfc", + "whois_server": "whois.nic.hdfc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2023-08-23" + ], + "annotations": { + "iana_sponsor_alias": "HDFC", + "iana_sponsor_slug": "hdfc", + "iana_admin_alias": "HDFC", + "iana_admin_slug": "hdfc", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hdfc", @@ -77248,34 +77272,7 @@ } ] } - ], - "registry_url": "http://nic.hdfc", - "whois_server": "whois.nic.hdfc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2023-08-23" - ], - "annotations": { - "iana_sponsor_alias": "HDFC", - "iana_sponsor_slug": "hdfc", - "iana_admin_alias": "HDFC", - "iana_admin_slug": "hdfc", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "hdfcbank", @@ -77300,6 +77297,32 @@ "date_removed": null } }, + "whois_server": "whois.nic.hdfcbank", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2023-08-23" + ], + "annotations": { + "iana_sponsor_alias": "HDFC", + "iana_sponsor_slug": "hdfc", + "iana_admin_alias": "HDFC", + "iana_admin_slug": "hdfc", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hdfcbank", @@ -77377,33 +77400,7 @@ } ] } - ], - "whois_server": "whois.nic.hdfcbank", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2023-08-23" - ], - "annotations": { - "iana_sponsor_alias": "HDFC", - "iana_sponsor_slug": "hdfc", - "iana_admin_alias": "HDFC", - "iana_admin_slug": "hdfc", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "health", @@ -77428,6 +77425,33 @@ "date_removed": null } }, + "registry_url": "http://www.dothealth.co", + "rdap_server": "https://rdap.nic.health/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.health", @@ -77453,7 +77477,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -77543,34 +77567,7 @@ } ] } - ], - "registry_url": "http://www.dothealth.co", - "rdap_server": "https://rdap.nic.health/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "healthcare", @@ -77595,6 +77592,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.healthcare", @@ -77710,34 +77734,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "help", @@ -77762,6 +77759,28 @@ "date_removed": null } }, + "registry_url": "https://nic.help", + "whois_server": "whois.nic.help", + "rdap_server": "https://rdap.centralnic.com/help/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2024-01-04" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.help", @@ -77839,29 +77858,7 @@ } ] } - ], - "registry_url": "https://nic.help", - "whois_server": "whois.nic.help", - "rdap_server": "https://rdap.centralnic.com/help/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2024-01-04" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "helsinki", @@ -77886,6 +77883,29 @@ "date_removed": null } }, + "registry_url": "http://www.hel.fi", + "whois_server": "whois.nic.helsinki", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.helsinki", @@ -77963,30 +77983,7 @@ } ] } - ], - "registry_url": "http://www.hel.fi", - "whois_server": "whois.nic.helsinki", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] }, { "tld": "here", @@ -78011,6 +78008,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -78107,34 +78131,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "hermes", @@ -78159,6 +78156,29 @@ "date_removed": null } }, + "registry_url": "http://hermes.com", + "whois_server": "whois.nic.hermes", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2023-08-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hermes", @@ -78236,30 +78256,7 @@ } ] } - ], - "registry_url": "http://hermes.com", - "whois_server": "whois.nic.hermes", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2023-08-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "hgtv", @@ -78314,6 +78311,30 @@ "date_removed": null } }, + "registry_url": "https://get.hiphop", + "whois_server": "whois.nic.hiphop", + "rdap_server": "https://rdap.registry.hiphop/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -78391,31 +78412,7 @@ } ] } - ], - "registry_url": "https://get.hiphop", - "whois_server": "whois.nic.hiphop", - "rdap_server": "https://rdap.registry.hiphop/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "hisamitsu", @@ -78440,6 +78437,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-05-13", + "tld_updated": [ + "2023-06-12" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -78465,7 +78485,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -78510,30 +78530,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-05-13", - "tld_updated": [ - "2023-06-12" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hitachi", @@ -78558,6 +78555,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -78583,7 +78605,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -78628,32 +78650,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hiv", @@ -78678,6 +78675,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -78755,31 +78776,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "hk", @@ -78793,6 +78790,24 @@ "tech": "Hong Kong Internet Registration Corporation Ltd." } }, + "registry_url": "http://www.hkirc.hk", + "whois_server": "whois.hkirc.hk", + "tld_created": "1990-01-03", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "country_name_iso": "Hong Kong", + "as_org_aliases": [ + "CNNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cnnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.hkirc.net.hk", @@ -78837,7 +78852,7 @@ "ipv4": [ { "ip": "125.208.49.10", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -78966,24 +78981,6 @@ ] } ], - "registry_url": "http://www.hkirc.hk", - "whois_server": "whois.hkirc.hk", - "tld_created": "1990-01-03", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "country_name_iso": "Hong Kong", - "as_org_aliases": [ - "CNNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cnnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--j6w193g" ] @@ -79011,6 +79008,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.hkt", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hkt", @@ -79088,30 +79108,7 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.hkt", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "hm", @@ -79125,6 +79122,16 @@ "tech": "HM Domain Registry" } }, + "registry_url": "http://www.registry.hm", + "whois_server": "whois.registry.hm", + "tld_created": "1997-07-24", + "tld_updated": [ + "2023-12-14" + ], + "annotations": { + "country_name_iso": "Heard Island and McDonald Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.registry.hm", @@ -79162,17 +79169,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.registry.hm", - "whois_server": "whois.registry.hm", - "tld_created": "1997-07-24", - "tld_updated": [ - "2023-12-14" - ], - "annotations": { - "country_name_iso": "Heard Island and McDonald Islands", - "geographic_scope": "country" - } + ] }, { "tld": "hn", @@ -79186,6 +79183,26 @@ "tech": "Red de Desarrollo Sostenible Honduras" } }, + "registry_url": "https://www.nic.hn", + "whois_server": "whois.nic.hn", + "rdap_server": "https://rdap.nic.hn/", + "tld_created": "1993-04-16", + "tld_updated": [ + "2024-07-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Honduras", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -79256,27 +79273,7 @@ } ] } - ], - "registry_url": "https://www.nic.hn", - "whois_server": "whois.nic.hn", - "rdap_server": "https://rdap.nic.hn/", - "tld_created": "1993-04-16", - "tld_updated": [ - "2024-07-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Honduras", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "hockey", @@ -79301,6 +79298,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.hockey", @@ -79416,10 +79440,34 @@ } ] } - ], + ] + }, + { + "tld": "holdings", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-08-27", + "date_delegated": "2013-11-06", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", + "tld_created": "2013-10-31", "tld_updated": [ "2025-10-07" ], @@ -79443,30 +79491,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "holdings", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-08-27", - "date_delegated": "2013-11-06", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -79583,10 +79607,34 @@ } ] } - ], + ] + }, + { + "tld": "holiday", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1497-56699", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", + "tld_created": "2013-12-19", "tld_updated": [ "2025-10-07" ], @@ -79610,30 +79658,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "holiday", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1497-56699", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -79750,34 +79774,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "homedepot", @@ -79802,6 +79799,29 @@ "date_removed": null } }, + "registry_url": "http://www.homedepot.com", + "whois_server": "whois.nic.homedepot", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.homedepot", @@ -79879,30 +79899,7 @@ } ] } - ], - "registry_url": "http://www.homedepot.com", - "whois_server": "whois.nic.homedepot", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "homegoods", @@ -79927,6 +79924,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.homegoods/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.homegoods", @@ -79952,7 +79975,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80042,33 +80065,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.homegoods/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "homes", @@ -80093,6 +80090,34 @@ "date_removed": null } }, + "registry_url": "https://nic.homes/", + "whois_server": "whois.nic.homes", + "rdap_server": "https://rdap.centralnic.com/homes/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.homes", @@ -80170,35 +80195,7 @@ } ] } - ], - "registry_url": "https://nic.homes/", - "whois_server": "whois.nic.homes", - "rdap_server": "https://rdap.centralnic.com/homes/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "homesense", @@ -80223,6 +80220,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.homesense/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.homesense", @@ -80248,7 +80271,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80338,33 +80361,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.homesense/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "honda", @@ -80389,6 +80386,29 @@ "date_removed": null } }, + "registry_url": "http://honda.com", + "whois_server": "whois.nic.honda", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -80414,7 +80434,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80459,30 +80479,7 @@ } ] } - ], - "registry_url": "http://honda.com", - "whois_server": "whois.nic.honda", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "honeywell", @@ -80537,6 +80534,34 @@ "date_removed": null } }, + "registry_url": "http://nic.horse/", + "whois_server": "whois.nic.horse", + "rdap_server": "https://rdap.nic.horse/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.horse", @@ -80562,7 +80587,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80600,7 +80625,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80608,7 +80633,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80619,7 +80644,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80627,7 +80652,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80638,7 +80663,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -80646,41 +80671,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.horse/", - "whois_server": "whois.nic.horse", - "rdap_server": "https://rdap.nic.horse/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hospital", @@ -80705,6 +80702,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-12-02", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.hospital", @@ -80820,34 +80844,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-12-02", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "host", @@ -80872,6 +80869,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.host", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -80949,35 +80974,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.host", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "hosting", @@ -81002,6 +80999,34 @@ "date_removed": null } }, + "registry_url": "https://nic.hosting", + "whois_server": "whois.nic.hosting", + "rdap_server": "https://rdap.centralnic.com/hosting/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.hosting", @@ -81079,35 +81104,7 @@ } ] } - ], - "registry_url": "https://nic.hosting", - "whois_server": "whois.nic.hosting", - "rdap_server": "https://rdap.centralnic.com/hosting/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "hot", @@ -81132,14 +81129,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hot", + "rdap_server": "https://rdap.nominet.uk/hot/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.hot", "ipv4": [ { "ip": "213.248.218.69", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -81157,8 +81183,8 @@ "ipv4": [ { "ip": "103.49.82.69", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -81285,36 +81311,7 @@ } ] } - ], - "registry_url": "http://www.nic.hot", - "rdap_server": "https://rdap.nominet.uk/hot/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "hoteles", @@ -81368,6 +81365,28 @@ "date_removed": null } }, + "registry_url": "http://www.booking.com", + "whois_server": "whois.nic.hotels", + "rdap_server": "https://rdap.nic.hotels/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hotels", @@ -81393,7 +81412,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -81483,29 +81502,7 @@ } ] } - ], - "registry_url": "http://www.booking.com", - "whois_server": "whois.nic.hotels", - "rdap_server": "https://rdap.nic.hotels/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hotmail", @@ -81530,14 +81527,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/hotmail/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.hotmail", "ipv4": [ { "ip": "213.248.219.131", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -81555,8 +81582,8 @@ "ipv4": [ { "ip": "103.49.83.131", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -81683,37 +81710,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/hotmail/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "house", @@ -81738,6 +81735,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.house", @@ -81853,34 +81877,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "how", @@ -81905,6 +81902,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -82001,34 +82025,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "hr", @@ -82042,6 +82039,22 @@ "tech": "CARNet - Croatian Academic and Research Network" } }, + "registry_url": "http://www.dns.hr", + "whois_server": "whois.dns.hr", + "tld_created": "1993-02-27", + "tld_updated": [ + "2023-10-11" + ], + "annotations": { + "country_name_iso": "Croatia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "hr-ns-1.carnet.hr", @@ -82100,23 +82113,7 @@ } ] } - ], - "registry_url": "http://www.dns.hr", - "whois_server": "whois.dns.hr", - "tld_created": "1993-02-27", - "tld_updated": [ - "2023-10-11" - ], - "annotations": { - "country_name_iso": "Croatia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "hsbc", @@ -82141,6 +82138,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.hsbc", + "rdap_server": "https://rdap.nic.hsbc/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hsbc", @@ -82166,7 +82185,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -82256,29 +82275,7 @@ } ] } - ], - "registry_url": "http://www.nic.hsbc", - "rdap_server": "https://rdap.nic.hsbc/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ht", @@ -82292,6 +82289,28 @@ "tech": "Faculté des Sciences de l'Université d'Etat d'Haïti/ FRDDH" } }, + "registry_url": "http://www.nic.ht", + "whois_server": "whois.nic.ht", + "rdap_server": "https://rdap.nic.ht/", + "tld_created": "1997-03-06", + "tld_updated": [ + "2025-03-05" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Haiti", + "as_org_aliases": [ + "AFNIC", + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -82350,29 +82369,7 @@ } ] } - ], - "registry_url": "http://www.nic.ht", - "whois_server": "whois.nic.ht", - "rdap_server": "https://rdap.nic.ht/", - "tld_created": "1997-03-06", - "tld_updated": [ - "2025-03-05" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Haiti", - "as_org_aliases": [ - "AFNIC", - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "htc", @@ -82416,6 +82413,26 @@ "tech": "Council of Hungarian Internet Providers (CHIP)" } }, + "registry_url": "https://www.domain.hu", + "whois_server": "whois.nic.hu", + "tld_created": "1990-11-07", + "tld_updated": [ + "2025-09-12" + ], + "annotations": { + "country_name_iso": "Hungary", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.hu", @@ -82550,27 +82567,7 @@ } ] } - ], - "registry_url": "https://www.domain.hu", - "whois_server": "whois.nic.hu", - "tld_created": "1990-11-07", - "tld_updated": [ - "2025-09-12" - ], - "annotations": { - "country_name_iso": "Hungary", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "hughes", @@ -82595,6 +82592,29 @@ "date_removed": null } }, + "registry_url": "http://www.hughes.com/", + "whois_server": "whois.nic.hughes", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.hughes", @@ -82672,30 +82692,7 @@ } ] } - ], - "registry_url": "http://www.hughes.com/", - "whois_server": "whois.nic.hughes", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "hyatt", @@ -82720,6 +82717,28 @@ "date_removed": null } }, + "registry_url": "http://www.hyatt.com", + "rdap_server": "https://rdap.nic.hyatt/", + "tld_created": "2016-07-22", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.hyatt", @@ -82745,7 +82764,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -82835,29 +82854,7 @@ } ] } - ], - "registry_url": "http://www.hyatt.com", - "rdap_server": "https://rdap.nic.hyatt/", - "tld_created": "2016-07-22", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "hyundai", @@ -82882,6 +82879,29 @@ "date_removed": null } }, + "registry_url": "http://www.hyundai.com", + "whois_server": "whois.nic.hyundai", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -82907,7 +82927,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -82952,30 +82972,7 @@ } ] } - ], - "registry_url": "http://www.hyundai.com", - "whois_server": "whois.nic.hyundai", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ibm", @@ -83000,6 +82997,35 @@ "date_removed": null } }, + "registry_url": "http://www.ibm.com", + "whois_server": "whois.nic.ibm", + "rdap_server": "https://rdap.nic.ibm/", + "tld_created": "2014-09-25", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "iana_sponsor_alias": "IBM", + "iana_sponsor_slug": "ibm", + "iana_admin_alias": "IBM", + "iana_admin_slug": "ibm", + "iana_tech_alias": "IBM", + "iana_tech_slug": "ibm", + "icann_registry_operator_alias": "IBM", + "icann_registry_operator_slug": "ibm", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ibm", @@ -83025,7 +83051,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83063,7 +83089,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83071,7 +83097,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83082,7 +83108,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83090,7 +83116,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83101,7 +83127,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -83109,42 +83135,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.ibm.com", - "whois_server": "whois.nic.ibm", - "rdap_server": "https://rdap.nic.ibm/", - "tld_created": "2014-09-25", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "iana_sponsor_alias": "IBM", - "iana_sponsor_slug": "ibm", - "iana_admin_alias": "IBM", - "iana_admin_slug": "ibm", - "iana_tech_alias": "IBM", - "iana_tech_slug": "ibm", - "icann_registry_operator_alias": "IBM", - "icann_registry_operator_slug": "ibm", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "icbc", @@ -83169,6 +83166,29 @@ "date_removed": null } }, + "registry_url": "http://www.icbc.com.cn/ICBC/%E5%9F%9F%E5%90%8D%E6%B3%A8%E5%86%8C%E5%B1%80/default.htm", + "whois_server": "whois.nic.icbc", + "rdap_server": "https://rdap.zdnsgtld.com/icbc/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -83266,30 +83286,7 @@ } ] } - ], - "registry_url": "http://www.icbc.com.cn/ICBC/%E5%9F%9F%E5%90%8D%E6%B3%A8%E5%86%8C%E5%B1%80/default.htm", - "whois_server": "whois.nic.icbc", - "rdap_server": "https://rdap.zdnsgtld.com/icbc/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "ice", @@ -83314,6 +83311,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ice", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2023-09-05" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ice", @@ -83391,29 +83410,7 @@ } ] } - ], - "whois_server": "whois.nic.ice", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2023-09-05" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "icu", @@ -83438,6 +83435,32 @@ "date_removed": null } }, + "registry_url": "http://nic.icu/", + "whois_server": "whois.nic.icu", + "rdap_server": "https://rdap.centralnic.com/icu", + "tld_created": "2015-03-06", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.icu", @@ -83515,33 +83538,7 @@ } ] } - ], - "registry_url": "http://nic.icu/", - "whois_server": "whois.nic.icu", - "rdap_server": "https://rdap.centralnic.com/icu", - "tld_created": "2015-03-06", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "id", @@ -83555,6 +83552,18 @@ "tech": "Perkumpulan Pengelola Nama Domain Internet Indonesia (PANDI)" } }, + "registry_url": "https://pandi.id", + "whois_server": "whois.id", + "rdap_server": "https://rdap.pandi.id/rdap/", + "tld_created": "1993-02-27", + "tld_updated": [ + "2023-11-22" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Indonesia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.id", @@ -83651,19 +83660,7 @@ } ] } - ], - "registry_url": "https://pandi.id", - "whois_server": "whois.id", - "rdap_server": "https://rdap.pandi.id/rdap/", - "tld_created": "1993-02-27", - "tld_updated": [ - "2023-11-22" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Indonesia", - "geographic_scope": "country" - } + ] }, { "tld": "ie", @@ -83677,6 +83674,26 @@ "tech": "IE Domain Registry Limited" } }, + "registry_url": "http://www.weare.ie", + "whois_server": "whois.weare.ie", + "tld_created": "1988-01-27", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Ireland", + "as_org_aliases": [ + "AFNIC", + "CIRA", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "cira", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.ie", @@ -83792,27 +83809,7 @@ } ] } - ], - "registry_url": "http://www.weare.ie", - "whois_server": "whois.weare.ie", - "tld_created": "1988-01-27", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Ireland", - "as_org_aliases": [ - "AFNIC", - "CIRA", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "cira", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ieee", @@ -83837,14 +83834,39 @@ "date_removed": null } }, + "registry_url": "http://www.ieee.org", + "rdap_server": "https://rdap.nominet.uk/ieee/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.ieee", "ipv4": [ { "ip": "213.248.219.125", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -83862,8 +83884,8 @@ "ipv4": [ { "ip": "103.49.83.125", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -83990,32 +84012,7 @@ } ] } - ], - "registry_url": "http://www.ieee.org", - "rdap_server": "https://rdap.nominet.uk/ieee/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "ifm", @@ -84040,6 +84037,29 @@ "date_removed": null } }, + "registry_url": "http://www.ifm.com", + "whois_server": "whois.nic.ifm", + "rdap_server": "https://rdap.nic.ifm", + "tld_created": "2015-01-15", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -84117,30 +84137,7 @@ } ] } - ], - "registry_url": "http://www.ifm.com", - "whois_server": "whois.nic.ifm", - "rdap_server": "https://rdap.nic.ifm", - "tld_created": "2015-01-15", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "iinet", @@ -84194,6 +84191,28 @@ "date_removed": null } }, + "registry_url": "http://www.ikano.lu", + "whois_server": "whois.nic.ikano", + "rdap_server": "https://rdap.nic.ikano/v1/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.ikano", @@ -84252,29 +84271,7 @@ } ] } - ], - "registry_url": "http://www.ikano.lu", - "whois_server": "whois.nic.ikano", - "rdap_server": "https://rdap.nic.ikano/v1/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "il", @@ -84288,6 +84285,24 @@ "tech": "The Israel Internet Association (RA)" } }, + "registry_url": "http://www.isoc.org.il/domains", + "whois_server": "whois.isoc.org.il", + "tld_created": "1985-10-24", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Israel", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ilns.ilan.net.il", @@ -84428,24 +84443,6 @@ "ipv6": [] } ], - "registry_url": "http://www.isoc.org.il/domains", - "whois_server": "whois.isoc.org.il", - "tld_created": "1985-10-24", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Israel", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--4dbrk0ce" ] @@ -84462,6 +84459,16 @@ "tech": "Domicilium (IoM) Ltd" } }, + "registry_url": "http://www.nic.im", + "whois_server": "whois.nic.im", + "tld_created": "1996-09-11", + "tld_updated": [ + "2018-11-24" + ], + "annotations": { + "country_name_iso": "Isle of Man", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "barney.advsys.co.uk", @@ -84518,17 +84525,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.im", - "whois_server": "whois.nic.im", - "tld_created": "1996-09-11", - "tld_updated": [ - "2018-11-24" - ], - "annotations": { - "country_name_iso": "Isle of Man", - "geographic_scope": "country" - } + ] }, { "tld": "imamat", @@ -84553,6 +84550,28 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org", + "whois_server": "whois.nic.imamat", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.imamat", @@ -84630,29 +84649,7 @@ } ] } - ], - "registry_url": "http://www.akdn.org", - "whois_server": "whois.nic.imamat", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "imdb", @@ -84677,14 +84674,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.imdb", + "rdap_server": "https://rdap.nominet.uk/imdb/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.imdb", "ipv4": [ { "ip": "213.248.218.50", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -84702,8 +84729,8 @@ "ipv4": [ { "ip": "103.49.82.50", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -84830,37 +84857,7 @@ } ] } - ], - "registry_url": "http://www.nic.imdb", - "rdap_server": "https://rdap.nominet.uk/imdb/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "immo", @@ -84885,6 +84882,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.immo", @@ -85000,10 +85024,34 @@ } ] } - ], + ] + }, + { + "tld": "immobilien", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1255-76933", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2014-01-02", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-22", + "tld_created": "2013-12-19", "tld_updated": [ "2025-10-07" ], @@ -85027,30 +85075,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "immobilien", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1255-76933", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2014-01-02", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -85167,34 +85191,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "in", @@ -85208,6 +85205,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "rdap_server": "https://rdap.nixiregistry.in/rdap/", + "tld_created": "1989-05-08", + "tld_updated": [ + "2026-04-15" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "rdap_source": "IANA", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -85286,32 +85309,6 @@ ] } ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "rdap_server": "https://rdap.nixiregistry.in/rdap/", - "tld_created": "1989-05-08", - "tld_updated": [ - "2026-04-15" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "rdap_source": "IANA", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--2scrj9c", "xn--3hcrj9c", @@ -85353,6 +85350,28 @@ "date_removed": null } }, + "registry_url": "https://get.inc", + "whois_server": "whois.nic.inc", + "rdap_server": "https://rdap.centralnic.com/inc/", + "tld_created": "2018-07-03", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.inc", @@ -85430,29 +85449,7 @@ } ] } - ], - "registry_url": "https://get.inc", - "whois_server": "whois.nic.inc", - "rdap_server": "https://rdap.centralnic.com/inc/", - "tld_created": "2018-07-03", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "industries", @@ -85477,6 +85474,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.industries", @@ -85592,34 +85616,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "infiniti", @@ -85644,6 +85641,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -85669,7 +85691,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -85714,32 +85736,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "info", @@ -85764,6 +85761,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2001-06-26", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.info.afilias-nst.info", @@ -85879,34 +85903,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2001-06-26", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ing", @@ -85931,6 +85928,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -86027,34 +86051,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "ink", @@ -86079,6 +86076,34 @@ "date_removed": null } }, + "registry_url": "http://nic.ink/", + "whois_server": "whois.nic.ink", + "rdap_server": "https://rdap.nic.ink/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ink", @@ -86104,7 +86129,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86142,7 +86167,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86150,7 +86175,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86161,7 +86186,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86169,7 +86194,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86180,7 +86205,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86188,41 +86213,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.ink/", - "whois_server": "whois.nic.ink", - "rdap_server": "https://rdap.nic.ink/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "institute", @@ -86247,6 +86244,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.institute", @@ -86362,34 +86386,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "insurance", @@ -86414,6 +86411,35 @@ "date_removed": null } }, + "registry_url": "https://www.ftld.com/", + "whois_server": "whois.nic.insurance", + "rdap_server": "https://rdap.nic.insurance/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_sponsor_alias": "fTLD Registry", + "iana_sponsor_slug": "ftld-registry", + "iana_admin_alias": "fTLD Registry", + "iana_admin_slug": "ftld-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "fTLD Registry", + "icann_registry_operator_slug": "ftld-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "d.nic.insurance", @@ -86496,7 +86522,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -86529,36 +86555,7 @@ } ] } - ], - "registry_url": "https://www.ftld.com/", - "whois_server": "whois.nic.insurance", - "rdap_server": "https://rdap.nic.insurance/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_sponsor_alias": "fTLD Registry", - "iana_sponsor_slug": "ftld-registry", - "iana_admin_alias": "fTLD Registry", - "iana_admin_slug": "ftld-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "fTLD Registry", - "icann_registry_operator_slug": "ftld-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "insure", @@ -86583,6 +86580,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.insure", @@ -86698,34 +86722,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "int", @@ -86739,6 +86736,22 @@ "tech": "ICANN" } }, + "registry_url": "https://www.iana.org/domains/int", + "whois_server": "whois.iana.org", + "rdap_server": "https://rdap.iana.org/", + "tld_created": "1988-11-03", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "rdap_source": "IANA", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "ns.uu.net", @@ -86859,23 +86872,7 @@ } ] } - ], - "registry_url": "https://www.iana.org/domains/int", - "whois_server": "whois.iana.org", - "rdap_server": "https://rdap.iana.org/", - "tld_created": "1988-11-03", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "rdap_source": "IANA", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "intel", @@ -86930,6 +86927,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.international", @@ -87045,34 +87069,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "intuit", @@ -87097,122 +87094,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a.nic.intuit", - "ipv4": [ - { - "ip": "37.209.192.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:1::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "b.nic.intuit", - "ipv4": [ - { - "ip": "37.209.194.9", - "asn": 397213, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:2::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "c.nic.intuit", - "ipv4": [ - { - "ip": "37.209.196.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:3::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns4.dns.nic.intuit", - "ipv4": [ - { - "ip": "156.154.156.82", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1074::52", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns5.dns.nic.intuit", - "ipv4": [ - { - "ip": "156.154.157.82", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1075::52", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns6.dns.nic.intuit", - "ipv4": [ - { - "ip": "156.154.158.82", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1076::52", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - } - ], "registry_url": "https://www.intuit.com/", "rdap_server": "https://rdap.nic.intuit/", "tld_created": "2016-06-09", @@ -87234,7 +87115,123 @@ "as_org_slugs": [ "ultradns" ] - } + }, + "nameservers": [ + { + "hostname": "a.nic.intuit", + "ipv4": [ + { + "ip": "37.209.192.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:1::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "b.nic.intuit", + "ipv4": [ + { + "ip": "37.209.194.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:2::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "c.nic.intuit", + "ipv4": [ + { + "ip": "37.209.196.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:3::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns4.dns.nic.intuit", + "ipv4": [ + { + "ip": "156.154.156.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1074::52", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns5.dns.nic.intuit", + "ipv4": [ + { + "ip": "156.154.157.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1075::52", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns6.dns.nic.intuit", + "ipv4": [ + { + "ip": "156.154.158.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1076::52", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + } + ] }, { "tld": "investments", @@ -87259,6 +87256,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.investments", @@ -87374,12 +87398,26 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", + ] + }, + { + "tld": "io", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "Internet Computer Bureau Limited", + "admin": "Internet Computer Bureau Limited", + "tech": "Internet Computer Bureau Ltd" + } + }, + "registry_url": "http://www.nic.io/", + "whois_server": "whois.nic.io", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "1997-09-16", "tld_updated": [ - "2025-10-07" + "2023-01-18" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -87388,32 +87426,15 @@ "iana_admin_slug": "identity-digital", "iana_tech_alias": "Identity Digital", "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], + "rdap_source": "supplemental", + "country_name_iso": "British Indian Ocean Territory", "as_org_aliases": [ "Identity Digital" ], "as_org_slugs": [ "identity-digital" - ] - } - }, - { - "tld": "io", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "Internet Computer Bureau Limited", - "admin": "Internet Computer Bureau Limited", - "tech": "Internet Computer Bureau Ltd" - } + ], + "geographic_scope": "country" }, "nameservers": [ { @@ -87492,31 +87513,7 @@ } ] } - ], - "registry_url": "http://www.nic.io/", - "whois_server": "whois.nic.io", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-09-16", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "British Indian Ocean Territory", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ipiranga", @@ -87541,6 +87538,28 @@ "date_removed": null } }, + "registry_url": "http://ipiranga.com.br", + "rdap_server": "https://rdap.nic.ipiranga/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ipiranga", @@ -87566,7 +87585,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -87612,7 +87631,7 @@ "ipv6": [ { "ip": "2610:a1:1074::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -87631,7 +87650,7 @@ "ipv6": [ { "ip": "2610:a1:1075::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -87650,35 +87669,13 @@ "ipv6": [ { "ip": "2610:a1:1076::53", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://ipiranga.com.br", - "rdap_server": "https://rdap.nic.ipiranga/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "iq", @@ -87692,6 +87689,24 @@ "tech": "Communications and Media Commission (CMC)" } }, + "registry_url": "https://registrar.cmc.iq", + "whois_server": "whois.cmc.iq", + "tld_created": "1997-05-09", + "tld_updated": [ + "2023-12-18" + ], + "annotations": { + "country_name_iso": "Iraq", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.cmc.iq", @@ -87763,24 +87778,6 @@ ] } ], - "registry_url": "https://registrar.cmc.iq", - "whois_server": "whois.cmc.iq", - "tld_created": "1997-05-09", - "tld_updated": [ - "2023-12-18" - ], - "annotations": { - "country_name_iso": "Iraq", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbtx2b" ] @@ -87797,6 +87794,16 @@ "tech": "Institute for Research in Fundamental Sciences (IPM)" } }, + "registry_url": "http://www.nic.ir", + "whois_server": "whois.nic.ir", + "tld_created": "1994-04-06", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Iran, Islamic Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ir", @@ -87811,9 +87818,9 @@ "ipv6": [ { "ip": "2001:678:b0:0:193:189:123:2", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 39200, + "as_org": "IRNICANYCAST-AS", + "as_country": "IR" } ] }, @@ -87830,9 +87837,9 @@ "ipv6": [ { "ip": "2001:678:b1:0:193:189:122:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 35285, + "as_org": "IRNIC-AS", + "as_country": "IR" } ] }, @@ -87868,23 +87875,13 @@ "ipv6": [ { "ip": "2001:14e8:c:0:194:225:70:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 6736, + "as_org": "IRANET-IPM Institute for Research in Fundamental Sciences IPM", + "as_country": "IR" } ] } ], - "registry_url": "http://www.nic.ir", - "whois_server": "whois.nic.ir", - "tld_created": "1994-04-06", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Iran, Islamic Republic of", - "geographic_scope": "country" - }, "idn": [ "xn--mgba3a4f16a" ] @@ -87912,6 +87909,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.irish", @@ -88027,34 +88051,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "is", @@ -88068,6 +88065,26 @@ "tech": "ISNIC - Internet á Íslandi hf." } }, + "registry_url": "https://www.isnic.is/", + "whois_server": "whois.isnic.is", + "rdap_server": "https://rdap.isnic.is/rdap/", + "tld_created": "1987-11-18", + "tld_updated": [ + "2026-02-18" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Iceland", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.is", @@ -88164,27 +88181,7 @@ } ] } - ], - "registry_url": "https://www.isnic.is/", - "whois_server": "whois.isnic.is", - "rdap_server": "https://rdap.isnic.is/rdap/", - "tld_created": "1987-11-18", - "tld_updated": [ - "2026-02-18" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Iceland", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "iselect", @@ -88239,6 +88236,29 @@ "date_removed": null } }, + "registry_url": "http://www.akdn.org/", + "whois_server": "whois.nic.ismaili", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2023-08-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ismaili", @@ -88316,30 +88336,7 @@ } ] } - ], - "registry_url": "http://www.akdn.org/", - "whois_server": "whois.nic.ismaili", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2023-08-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ist", @@ -88364,6 +88361,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.istanbul", + "whois_server": "whois.nic.ist", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.ist", @@ -88441,29 +88461,7 @@ } ] } - ], - "registry_url": "http://www.nic.istanbul", - "whois_server": "whois.nic.ist", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "istanbul", @@ -88488,6 +88486,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.istanbul", + "whois_server": "whois.nic.istanbul", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2025-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.istanbul", @@ -88565,30 +88586,7 @@ } ] } - ], - "registry_url": "http://www.nic.istanbul", - "whois_server": "whois.nic.istanbul", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2025-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] }, { "tld": "it", @@ -88602,6 +88600,22 @@ "tech": "IIT - CNR" } }, + "registry_url": "https://www.nic.it/", + "whois_server": "whois.nic.it", + "tld_created": "1987-12-23", + "tld_updated": [ + "2025-12-17" + ], + "annotations": { + "country_name_iso": "Italy", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.it", @@ -88717,23 +88731,7 @@ } ] } - ], - "registry_url": "https://www.nic.it/", - "whois_server": "whois.nic.it", - "tld_created": "1987-12-23", - "tld_updated": [ - "2025-12-17" - ], - "annotations": { - "country_name_iso": "Italy", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "itau", @@ -88758,6 +88756,28 @@ "date_removed": null } }, + "registry_url": "http://www.itau.com", + "rdap_server": "https://rdap.nic.itau/", + "tld_created": "2015-05-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.itau", @@ -88783,7 +88803,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -88829,7 +88849,7 @@ "ipv6": [ { "ip": "2610:a1:1074::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -88848,7 +88868,7 @@ "ipv6": [ { "ip": "2610:a1:1075::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -88867,35 +88887,13 @@ "ipv6": [ { "ip": "2610:a1:1076::54", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.itau.com", - "rdap_server": "https://rdap.nic.itau/", - "tld_created": "2015-05-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "itv", @@ -88920,6 +88918,29 @@ "date_removed": null } }, + "registry_url": "http://www.itv.com", + "whois_server": "whois.nic.itv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.itv", @@ -88997,30 +89018,7 @@ } ] } - ], - "registry_url": "http://www.itv.com", - "whois_server": "whois.nic.itv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "iveco", @@ -89105,6 +89103,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.jaguar", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jaguar", @@ -89182,29 +89202,7 @@ } ] } - ], - "whois_server": "whois.nic.jaguar", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "java", @@ -89229,6 +89227,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.java", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-02-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.java", @@ -89306,29 +89326,7 @@ } ] } - ], - "whois_server": "whois.nic.java", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-02-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "jcb", @@ -89353,6 +89351,31 @@ "date_removed": null } }, + "registry_url": "http://nic.jcb", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -89378,7 +89401,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -89423,32 +89446,7 @@ } ] } - ], - "registry_url": "http://nic.jcb", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "jcp", @@ -89492,6 +89490,24 @@ "tech": "Island Networks Limited" } }, + "registry_url": "http://www.nic.je", + "whois_server": "whois.je", + "tld_created": "1996-08-08", + "tld_updated": [ + "2024-02-12" + ], + "annotations": { + "country_name_iso": "Jersey", + "as_org_aliases": [ + "Nominet", + "Packet Clearing House" + ], + "as_org_slugs": [ + "nominet", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.ci-servers.org", @@ -89517,8 +89533,8 @@ "ipv4": [ { "ip": "213.248.219.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -89536,8 +89552,8 @@ "ipv4": [ { "ip": "103.49.83.254", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -89607,25 +89623,7 @@ } ] } - ], - "registry_url": "http://www.nic.je", - "whois_server": "whois.je", - "tld_created": "1996-08-08", - "tld_updated": [ - "2024-02-12" - ], - "annotations": { - "country_name_iso": "Jersey", - "as_org_aliases": [ - "Nominet", - "Packet Clearing House" - ], - "as_org_slugs": [ - "nominet", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "jeep", @@ -89650,6 +89648,35 @@ "date_removed": null } }, + "registry_url": "http://www.fcausllc.com/", + "whois_server": "whois.nic.jeep", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-07", + "tld_updated": [ + "2026-05-20" + ], + "annotations": { + "iana_sponsor_alias": "Stellantis", + "iana_sponsor_slug": "stellantis", + "iana_admin_alias": "Stellantis", + "iana_admin_slug": "stellantis", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Stellantis", + "icann_registry_operator_slug": "stellantis", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a2.nic.jeep", @@ -89746,36 +89773,7 @@ } ] } - ], - "registry_url": "http://www.fcausllc.com/", - "whois_server": "whois.nic.jeep", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-07", - "tld_updated": [ - "2026-05-20" - ], - "annotations": { - "iana_sponsor_alias": "Stellantis", - "iana_sponsor_slug": "stellantis", - "iana_admin_alias": "Stellantis", - "iana_admin_slug": "stellantis", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Stellantis", - "icann_registry_operator_slug": "stellantis", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "jetzt", @@ -89800,6 +89798,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.jetzt", @@ -89915,10 +89940,34 @@ } ] } - ], + ] + }, + { + "tld": "jewelry", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1520-93221", + "registry_operator_country_code": null, + "date_contract_signed": "2015-03-05", + "date_delegated": "2015-04-16", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-06", + "tld_created": "2015-04-09", "tld_updated": [ "2025-10-07" ], @@ -89942,30 +89991,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "jewelry", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1520-93221", - "registry_operator_country_code": null, - "date_contract_signed": "2015-03-05", - "date_delegated": "2015-04-16", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -90082,34 +90107,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "jio", @@ -90134,6 +90132,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.jio", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2024-04-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jio", @@ -90211,30 +90232,7 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.jio", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2024-04-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "jlc", @@ -90289,6 +90287,29 @@ "date_removed": null } }, + "registry_url": "http://www.jll.com", + "whois_server": "whois.nic.jll", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.jll", @@ -90366,30 +90387,7 @@ } ] } - ], - "registry_url": "http://www.jll.com", - "whois_server": "whois.nic.jll", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "jm", @@ -90403,6 +90401,14 @@ "tech": "Mona Information Technology Services\nUniversity of the West Indies" } }, + "tld_created": "1991-09-24", + "tld_updated": [ + "2025-07-10" + ], + "annotations": { + "country_name_iso": "Jamaica", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "jm.cctld.authdns.ripe.net", @@ -90466,15 +90472,7 @@ } ] } - ], - "tld_created": "1991-09-24", - "tld_updated": [ - "2025-07-10" - ], - "annotations": { - "country_name_iso": "Jamaica", - "geographic_scope": "country" - } + ] }, { "tld": "jmp", @@ -90499,6 +90497,28 @@ "date_removed": null } }, + "registry_url": "http://www.jmp.com", + "rdap_server": "https://rdap.nic.jmp/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.jmp", @@ -90524,7 +90544,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -90614,29 +90634,7 @@ } ] } - ], - "registry_url": "http://www.jmp.com", - "rdap_server": "https://rdap.nic.jmp/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "jnj", @@ -90661,6 +90659,30 @@ "date_removed": null } }, + "registry_url": "http://www.jnj.com/", + "rdap_server": "https://rdap.centralnicregistry.com/jnj", + "tld_created": "2016-01-14", + "tld_updated": [ + "2025-04-09" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "w.nic.jnj", @@ -90738,31 +90760,7 @@ } ] } - ], - "registry_url": "http://www.jnj.com/", - "rdap_server": "https://rdap.centralnicregistry.com/jnj", - "tld_created": "2016-01-14", - "tld_updated": [ - "2025-04-09" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "jo", @@ -90776,6 +90774,21 @@ "tech": "Ministry of Digital Economy and Entrepreneurship (MoDEE)" } }, + "registry_url": "https://www.dns.jo", + "tld_created": "1994-11-23", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Jordan", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.cctld-servers.net.jo", @@ -90892,21 +90905,6 @@ ] } ], - "registry_url": "https://www.dns.jo", - "tld_created": "1994-11-23", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Jordan", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbayh7gpa" ] @@ -90934,14 +90932,44 @@ "date_removed": null } }, + "registry_url": "http://www.goto.jobs", + "rdap_server": "https://rdap.nominet.uk/jobs/", + "tld_created": "2005-09-08", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.jobs", "ipv4": [ { "ip": "213.248.219.120", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -90959,8 +90987,8 @@ "ipv4": [ { "ip": "103.49.83.120", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -91087,37 +91115,7 @@ } ] } - ], - "registry_url": "http://www.goto.jobs", - "rdap_server": "https://rdap.nominet.uk/jobs/", - "tld_created": "2005-09-08", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "joburg", @@ -91142,6 +91140,33 @@ "date_removed": null } }, + "registry_url": "http://www.registry.net.za", + "whois_server": "whois.nic.joburg", + "rdap_server": "https://rdap.nic.joburg/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-08-05" + ], + "annotations": { + "iana_sponsor_alias": "ZACR", + "iana_sponsor_slug": "zacr", + "iana_admin_alias": "ZACR", + "iana_admin_slug": "zacr", + "icann_registry_operator_alias": "ZACR", + "icann_registry_operator_slug": "zacr", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZACR" + ], + "as_org_slugs": [ + "zacr" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "coza1.dnsnode.net", @@ -91200,34 +91225,7 @@ } ] } - ], - "registry_url": "http://www.registry.net.za", - "whois_server": "whois.nic.joburg", - "rdap_server": "https://rdap.nic.joburg/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-08-05" - ], - "annotations": { - "iana_sponsor_alias": "ZACR", - "iana_sponsor_slug": "zacr", - "iana_admin_alias": "ZACR", - "iana_admin_slug": "zacr", - "icann_registry_operator_alias": "ZACR", - "icann_registry_operator_slug": "zacr", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZACR" - ], - "as_org_slugs": [ - "zacr" - ], - "geographic_scope": "city" - } + ] }, { "tld": "jot", @@ -91252,14 +91250,39 @@ "date_removed": null } }, + "registry_url": "http://www.nic.jot", + "rdap_server": "https://rdap.nominet.uk/jot/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2026-05-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.jot", "ipv4": [ { "ip": "213.248.218.70", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -91277,8 +91300,8 @@ "ipv4": [ { "ip": "103.49.82.70", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -91405,32 +91428,7 @@ } ] } - ], - "registry_url": "http://www.nic.jot", - "rdap_server": "https://rdap.nominet.uk/jot/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2026-05-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "joy", @@ -91455,14 +91453,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.joy", + "rdap_server": "https://rdap.nominet.uk/joy/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.joy", "ipv4": [ { "ip": "213.248.218.71", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -91480,8 +91507,8 @@ "ipv4": [ { "ip": "103.49.82.71", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -91608,36 +91635,7 @@ } ] } - ], - "registry_url": "http://www.nic.joy", - "rdap_server": "https://rdap.nominet.uk/joy/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "jp", @@ -91651,6 +91649,24 @@ "tech": "Japan Registry Services Co., Ltd." } }, + "registry_url": "https://jprs.jp/", + "whois_server": "whois.jprs.jp", + "tld_created": "1986-08-05", + "tld_updated": [ + "2025-11-06" + ], + "annotations": { + "country_name_iso": "Japan", + "as_org_aliases": [ + "Identity Digital", + "UltraDNS" + ], + "as_org_slugs": [ + "identity-digital", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.jp", @@ -91797,25 +91813,7 @@ } ] } - ], - "registry_url": "https://jprs.jp/", - "whois_server": "whois.jprs.jp", - "tld_created": "1986-08-05", - "tld_updated": [ - "2025-11-06" - ], - "annotations": { - "country_name_iso": "Japan", - "as_org_aliases": [ - "Identity Digital", - "UltraDNS" - ], - "as_org_slugs": [ - "identity-digital", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "jpmorgan", @@ -91840,122 +91838,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a.nic.jpmorgan", - "ipv4": [ - { - "ip": "37.209.192.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:1::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "b.nic.jpmorgan", - "ipv4": [ - { - "ip": "37.209.194.9", - "asn": 397213, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:2::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "c.nic.jpmorgan", - "ipv4": [ - { - "ip": "37.209.196.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:3::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns4.dns.nic.jpmorgan", - "ipv4": [ - { - "ip": "156.154.156.92", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1074::5c", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns5.dns.nic.jpmorgan", - "ipv4": [ - { - "ip": "156.154.157.92", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1075::5c", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "ns6.dns.nic.jpmorgan", - "ipv4": [ - { - "ip": "156.154.158.92", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1076::5c", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - } - ], "registry_url": "http://www.jpmorganchase.com", "rdap_server": "https://rdap.nic.jpmorgan/", "tld_created": "2016-01-14", @@ -91977,7 +91859,123 @@ "as_org_slugs": [ "ultradns" ] - } + }, + "nameservers": [ + { + "hostname": "a.nic.jpmorgan", + "ipv4": [ + { + "ip": "37.209.192.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:1::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "b.nic.jpmorgan", + "ipv4": [ + { + "ip": "37.209.194.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:2::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "c.nic.jpmorgan", + "ipv4": [ + { + "ip": "37.209.196.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:3::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns4.dns.nic.jpmorgan", + "ipv4": [ + { + "ip": "156.154.156.92", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1074::5c", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns5.dns.nic.jpmorgan", + "ipv4": [ + { + "ip": "156.154.157.92", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1075::5c", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "ns6.dns.nic.jpmorgan", + "ipv4": [ + { + "ip": "156.154.158.92", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1076::5c", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + } + ] }, { "tld": "jprs", @@ -92002,6 +92000,26 @@ "date_removed": null } }, + "registry_url": "https://nic.jprs/", + "whois_server": "whois.nic.jprs", + "rdap_server": "https://rdap.nic.jprs/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-09-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.jprs", @@ -92098,27 +92116,7 @@ } ] } - ], - "registry_url": "https://nic.jprs/", - "whois_server": "whois.nic.jprs", - "rdap_server": "https://rdap.nic.jprs/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-09-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "juegos", @@ -92143,6 +92141,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-09-25" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.juegos", @@ -92258,34 +92283,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-09-25" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "juniper", @@ -92310,6 +92308,29 @@ "date_removed": null } }, + "registry_url": "http://juniper.net", + "whois_server": "whois.nic.juniper", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.juniper", @@ -92387,30 +92408,7 @@ } ] } - ], - "registry_url": "http://juniper.net", - "whois_server": "whois.nic.juniper", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kaufen", @@ -92435,6 +92433,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.kaufen", @@ -92550,34 +92575,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kddi", @@ -92602,6 +92600,31 @@ "date_removed": null } }, + "registry_url": "http://nic.kddi", + "whois_server": "whois.nic.kddi", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -92627,7 +92650,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -92672,32 +92695,7 @@ } ] } - ], - "registry_url": "http://nic.kddi", - "whois_server": "whois.nic.kddi", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ke", @@ -92711,6 +92709,24 @@ "tech": "Kenya Network Information Center (KeNIC)" } }, + "registry_url": "http://www.kenic.or.ke", + "whois_server": "whois.kenic.or.ke", + "rdap_server": "https://rdap.kenic.or.ke", + "tld_created": "1993-04-29", + "tld_updated": [ + "2025-10-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Kenya", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "kenic.anycastdns.cz", @@ -92735,9 +92751,9 @@ "ipv4": [ { "ip": "196.13.202.53", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 36948, + "as_org": "KENIC", + "as_country": "KE" }, { "ip": "196.1.4.130", @@ -92799,25 +92815,7 @@ } ] } - ], - "registry_url": "http://www.kenic.or.ke", - "whois_server": "whois.kenic.or.ke", - "rdap_server": "https://rdap.kenic.or.ke", - "tld_created": "1993-04-29", - "tld_updated": [ - "2025-10-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Kenya", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "kerryhotels", @@ -92842,6 +92840,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kerryhotels", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kerryhotels", @@ -92919,35 +92945,7 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kerryhotels", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kerrylogistics", @@ -93001,6 +92999,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kerryproperties", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kerryproperties", @@ -93078,35 +93104,7 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kerryproperties", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kfh", @@ -93131,6 +93129,28 @@ "date_removed": null } }, + "registry_url": "http://kfh.com", + "whois_server": "whois.nic.kfh", + "rdap_server": "https://rdap.registry.kfh/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2026-04-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -93208,29 +93228,7 @@ } ] } - ], - "registry_url": "http://kfh.com", - "whois_server": "whois.nic.kfh", - "rdap_server": "https://rdap.registry.kfh/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2026-04-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "kg", @@ -93244,6 +93242,18 @@ "tech": "AsiaInfo Telecommunication Enterprise" } }, + "registry_url": "https://www.cctld.kg/", + "whois_server": "whois.kg", + "rdap_server": "http://rdap.cctld.kg/", + "tld_created": "1995-07-12", + "tld_updated": [ + "2025-07-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Kyrgyzstan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "kg.cctld.authdns.ripe.net", @@ -93302,19 +93312,7 @@ } ] } - ], - "registry_url": "https://www.cctld.kg/", - "whois_server": "whois.kg", - "rdap_server": "http://rdap.cctld.kg/", - "tld_created": "1995-07-12", - "tld_updated": [ - "2025-07-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Kyrgyzstan", - "geographic_scope": "country" - } + ] }, { "tld": "kh", @@ -93328,6 +93326,15 @@ "tech": "TRC" } }, + "registry_url": "http://www.trc.gov.kh", + "tld_created": "1996-02-20", + "tld_updated": [ + "2026-02-26" + ], + "annotations": { + "country_name_iso": "Cambodia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.online.com.kh", @@ -93384,16 +93391,7 @@ } ] } - ], - "registry_url": "http://www.trc.gov.kh", - "tld_created": "1996-02-20", - "tld_updated": [ - "2026-02-26" - ], - "annotations": { - "country_name_iso": "Cambodia", - "geographic_scope": "country" - } + ] }, { "tld": "ki", @@ -93407,6 +93405,22 @@ "tech": "Communications Commission of Kiribati" } }, + "registry_url": "http://www.nic.ki", + "whois_server": "whois.nic.ki", + "tld_created": "1995-04-19", + "tld_updated": [ + "2024-02-06" + ], + "annotations": { + "country_name_iso": "Kiribati", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycastdns1.nic.ki", @@ -93458,23 +93472,7 @@ } ] } - ], - "registry_url": "http://www.nic.ki", - "whois_server": "whois.nic.ki", - "tld_created": "1995-04-19", - "tld_updated": [ - "2024-02-06" - ], - "annotations": { - "country_name_iso": "Kiribati", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "kia", @@ -93499,6 +93497,29 @@ "date_removed": null } }, + "registry_url": "http://www.kia.com", + "whois_server": "whois.nic.kia", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -93524,7 +93545,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -93569,30 +93590,7 @@ } ] } - ], - "registry_url": "http://www.kia.com", - "whois_server": "whois.nic.kia", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "kids", @@ -93617,6 +93615,29 @@ "date_removed": null } }, + "registry_url": "https://www.dotkids.asia", + "whois_server": "whois.nic.kids", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2022-03-05", + "tld_updated": [ + "2025-09-02" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kids", @@ -93694,30 +93715,7 @@ } ] } - ], - "registry_url": "https://www.dotkids.asia", - "whois_server": "whois.nic.kids", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2022-03-05", - "tld_updated": [ - "2025-09-02" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kim", @@ -93742,6 +93740,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kim", @@ -93819,34 +93844,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kinder", @@ -93901,14 +93899,42 @@ "date_removed": null } }, + "registry_url": "http://www.nic.kindle", + "rdap_server": "https://rdap.nominet.uk/kindle/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.kindle", "ipv4": [ { "ip": "213.248.218.58", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -93926,8 +93952,8 @@ "ipv4": [ { "ip": "103.49.82.58", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -94054,35 +94080,7 @@ } ] } - ], - "registry_url": "http://www.nic.kindle", - "rdap_server": "https://rdap.nominet.uk/kindle/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "kitchen", @@ -94107,6 +94105,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.kitchen", @@ -94222,34 +94247,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kiwi", @@ -94274,6 +94272,31 @@ "date_removed": null } }, + "registry_url": "http://hello.kiwi", + "whois_server": "whois.nic.kiwi", + "rdap_server": "https://rdap.kiwi.fury.ca/rdap/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2026-05-07" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "cultural_affiliation": "kiwi" + }, "nameservers": [ { "hostname": "a.ns.nic.kiwi", @@ -94351,32 +94374,7 @@ } ] } - ], - "registry_url": "http://hello.kiwi", - "whois_server": "whois.nic.kiwi", - "rdap_server": "https://rdap.kiwi.fury.ca/rdap/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2026-05-07" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "cultural_affiliation": "kiwi" - } + ] }, { "tld": "km", @@ -94390,6 +94388,15 @@ "tech": "Comores Telecom" } }, + "registry_url": "http://www.domaine.km/", + "tld_created": "1998-06-08", + "tld_updated": [ + "2020-06-01" + ], + "annotations": { + "country_name_iso": "Comoros", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.km", @@ -94434,16 +94441,7 @@ } ] } - ], - "registry_url": "http://www.domaine.km/", - "tld_created": "1998-06-08", - "tld_updated": [ - "2020-06-01" - ], - "annotations": { - "country_name_iso": "Comoros", - "geographic_scope": "country" - } + ] }, { "tld": "kn", @@ -94457,6 +94455,21 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "whois_server": "whois.nic.kn", + "tld_created": "1991-09-03", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Saint Kitts and Nevis", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -94508,22 +94521,7 @@ } ] } - ], - "whois_server": "whois.nic.kn", - "tld_created": "1991-09-03", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Saint Kitts and Nevis", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "koeln", @@ -94548,6 +94546,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.koeln", + "whois_server": "whois.ryce-rsp.com", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -94606,30 +94627,7 @@ } ] } - ], - "registry_url": "https://www.nic.koeln", - "whois_server": "whois.ryce-rsp.com", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] }, { "tld": "komatsu", @@ -94654,6 +94652,29 @@ "date_removed": null } }, + "registry_url": "http://www.komatsu.com/", + "whois_server": "whois.nic.komatsu", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -94679,7 +94700,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -94724,30 +94745,7 @@ } ] } - ], - "registry_url": "http://www.komatsu.com/", - "whois_server": "whois.nic.komatsu", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "kosher", @@ -94772,6 +94770,28 @@ "date_removed": null } }, + "registry_url": "http://www.ok.org/", + "whois_server": "whois.nic.kosher", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2023-08-07" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kosher", @@ -94849,29 +94869,7 @@ } ] } - ], - "registry_url": "http://www.ok.org/", - "whois_server": "whois.nic.kosher", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2023-08-07" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kp", @@ -94885,6 +94883,15 @@ "tech": "Star Joint Venture Company" } }, + "registry_url": "http://www.star.co.kp", + "tld_created": "2007-09-24", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Korea, Democratic People's Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.kptc.kp", @@ -94910,16 +94917,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.star.co.kp", - "tld_created": "2007-09-24", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Korea, Democratic People's Republic of", - "geographic_scope": "country" - } + ] }, { "tld": "kpmg", @@ -94944,6 +94942,28 @@ "date_removed": null } }, + "registry_url": "https://home.kpmg.com", + "rdap_server": "https://rdap.nic.kpmg/", + "tld_created": "2016-01-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.kpmg", @@ -94969,7 +94989,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95059,29 +95079,7 @@ } ] } - ], - "registry_url": "https://home.kpmg.com", - "rdap_server": "https://rdap.nic.kpmg/", - "tld_created": "2016-01-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "kpn", @@ -95106,6 +95104,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.centralnic.com/kpn", + "tld_created": "2015-12-04", + "tld_updated": [ + "2024-06-04" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.kpn", @@ -95183,28 +95202,7 @@ } ] } - ], - "rdap_server": "https://rdap.centralnic.com/kpn", - "tld_created": "2015-12-04", - "tld_updated": [ - "2024-06-04" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "kr", @@ -95218,6 +95216,20 @@ "tech": "Korea Internet & Security Agency (KISA)" } }, + "registry_url": "http://www.nic.or.kr/", + "whois_server": "whois.kr", + "tld_created": "1986-09-29", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "iana_sponsor_alias": "KISA", + "iana_sponsor_slug": "kisa", + "iana_tech_alias": "KISA", + "iana_tech_slug": "kisa", + "country_name_iso": "Korea, Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.kr", @@ -95320,20 +95332,6 @@ ] } ], - "registry_url": "http://www.nic.or.kr/", - "whois_server": "whois.kr", - "tld_created": "1986-09-29", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "iana_sponsor_alias": "KISA", - "iana_sponsor_slug": "kisa", - "iana_tech_alias": "KISA", - "iana_tech_slug": "kisa", - "country_name_iso": "Korea, Republic of", - "geographic_scope": "country" - }, "idn": [ "xn--3e0b707e" ] @@ -95361,6 +95359,27 @@ "date_removed": null } }, + "registry_url": "https://dot.krd", + "whois_server": "whois.nic.krd", + "rdap_server": "https://rdap.nic.krd", + "tld_created": "2014-07-10", + "tld_updated": [ + "2023-12-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "kurdish" + }, "nameservers": [ { "hostname": "a.nic.krd", @@ -95386,7 +95405,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95424,7 +95443,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95432,7 +95451,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95443,7 +95462,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95451,7 +95470,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95462,7 +95481,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -95470,34 +95489,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://dot.krd", - "whois_server": "whois.nic.krd", - "rdap_server": "https://rdap.nic.krd", - "tld_created": "2014-07-10", - "tld_updated": [ - "2023-12-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "cultural_affiliation": "kurdish" - } + ] }, { "tld": "kred", @@ -95522,6 +95520,27 @@ "date_removed": null } }, + "registry_url": "http://www.peoplebrowsr.com", + "rdap_server": "https://rdap.centralnic.com/kred/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.kred", @@ -95599,28 +95618,7 @@ } ] } - ], - "registry_url": "http://www.peoplebrowsr.com", - "rdap_server": "https://rdap.centralnic.com/kred/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "kuokgroup", @@ -95645,6 +95643,34 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.kuokgroup", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.kuokgroup", @@ -95722,35 +95748,7 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.kuokgroup", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "kw", @@ -95764,6 +95762,23 @@ "tech": "Kuwaitnet General Trading & Contracting Co" } }, + "registry_url": "http://www.nic.kw", + "tld_created": "1992-10-26", + "tld_updated": [ + "2024-10-30" + ], + "annotations": { + "country_name_iso": "Kuwait", + "as_org_aliases": [ + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.kw", @@ -95846,24 +95861,7 @@ } ] } - ], - "registry_url": "http://www.nic.kw", - "tld_created": "1992-10-26", - "tld_updated": [ - "2024-10-30" - ], - "annotations": { - "country_name_iso": "Kuwait", - "as_org_aliases": [ - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ky", @@ -95877,6 +95875,28 @@ "tech": "Tucows.com, Co." } }, + "registry_url": "http://uniregistry.com", + "whois_server": "whois.kyregistry.ky", + "rdap_server": "https://whois.kyregistry.ky/rdap/", + "tld_created": "1995-05-03", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "country_name_iso": "Cayman Islands", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -95954,29 +95974,7 @@ } ] } - ], - "registry_url": "http://uniregistry.com", - "whois_server": "whois.kyregistry.ky", - "rdap_server": "https://whois.kyregistry.ky/rdap/", - "tld_created": "1995-05-03", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "country_name_iso": "Cayman Islands", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "kyoto", @@ -96001,6 +95999,31 @@ "date_removed": null } }, + "registry_url": "http://nic.kyoto", + "whois_server": "whois.nic.kyoto", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -96026,7 +96049,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -96071,32 +96094,7 @@ } ] } - ], - "registry_url": "http://nic.kyoto", - "whois_server": "whois.nic.kyoto", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "kz", @@ -96110,6 +96108,22 @@ "tech": "KazNIC Organization" } }, + "registry_url": "http://www.nic.kz", + "whois_server": "whois.nic.kz", + "tld_created": "1994-09-19", + "tld_updated": [ + "2023-01-24" + ], + "annotations": { + "country_name_iso": "Kazakhstan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.nic.kz", @@ -96169,22 +96183,6 @@ ] } ], - "registry_url": "http://www.nic.kz", - "whois_server": "whois.nic.kz", - "tld_created": "1994-09-19", - "tld_updated": [ - "2023-01-24" - ], - "annotations": { - "country_name_iso": "Kazakhstan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--80ao21a" ] @@ -96201,6 +96199,22 @@ "tech": "Lao National Internet Center (LANIC)" } }, + "registry_url": "http://www.la", + "whois_server": "whois.nic.la", + "tld_created": "1996-05-14", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Lao People's Democratic Republic", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.la", @@ -96279,22 +96293,6 @@ ] } ], - "registry_url": "http://www.la", - "whois_server": "whois.nic.la", - "tld_created": "1996-05-14", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Lao People's Democratic Republic", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--q7ce6a" ] @@ -96322,6 +96320,26 @@ "date_removed": null } }, + "registry_url": "http://www.lacaixa.com", + "whois_server": "whois.nic.lacaixa", + "rdap_server": "https://rdap.nic.lacaixa/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -96399,27 +96417,7 @@ } ] } - ], - "registry_url": "http://www.lacaixa.com", - "whois_server": "whois.nic.lacaixa", - "rdap_server": "https://rdap.nic.lacaixa/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "ladbrokes", @@ -96474,6 +96472,34 @@ "date_removed": null } }, + "registry_url": "http://www.lamborghini.com", + "whois_server": "whois.nic.lamborghini", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Audi", + "iana_sponsor_slug": "audi", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Audi", + "icann_registry_operator_slug": "audi", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lamborghini", @@ -96551,35 +96577,7 @@ } ] } - ], - "registry_url": "http://www.lamborghini.com", - "whois_server": "whois.nic.lamborghini", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Audi", - "iana_sponsor_slug": "audi", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Audi", - "icann_registry_operator_slug": "audi", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lamer", @@ -96604,6 +96602,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.lamer", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lamer", @@ -96681,30 +96702,7 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.lamer", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lancaster", @@ -96819,6 +96817,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.land", @@ -96934,34 +96959,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "landrover", @@ -96986,6 +96984,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.landrover", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.landrover", @@ -97063,29 +97083,7 @@ } ] } - ], - "whois_server": "whois.nic.landrover", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lanxess", @@ -97110,6 +97108,28 @@ "date_removed": null } }, + "registry_url": "http://www.lanxess.com", + "rdap_server": "https://rdap.nic.lanxess/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lanxess", @@ -97135,7 +97155,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97225,29 +97245,7 @@ } ] } - ], - "registry_url": "http://www.lanxess.com", - "rdap_server": "https://rdap.nic.lanxess/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "lasalle", @@ -97272,6 +97270,28 @@ "date_removed": null } }, + "registry_url": "http://www.jll.com", + "whois_server": "whois.nic.lasalle", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lasalle", @@ -97349,29 +97369,7 @@ } ] } - ], - "registry_url": "http://www.jll.com", - "whois_server": "whois.nic.lasalle", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lat", @@ -97396,6 +97394,35 @@ "date_removed": null } }, + "registry_url": "https://nic.lat", + "whois_server": "whois.nic.lat", + "rdap_server": "https://rdap.centralnic.com/lat/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "supranational" + }, "nameservers": [ { "hostname": "a.nic.lat", @@ -97473,36 +97500,7 @@ } ] } - ], - "registry_url": "https://nic.lat", - "whois_server": "whois.nic.lat", - "rdap_server": "https://rdap.centralnic.com/lat/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "supranational" - } + ] }, { "tld": "latino", @@ -97527,6 +97525,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com/", + "whois_server": "whois.nic.latino", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -97604,35 +97630,7 @@ } ] } - ], - "registry_url": "http://www.dish.com/", - "whois_server": "whois.nic.latino", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "latrobe", @@ -97657,6 +97655,27 @@ "date_removed": null } }, + "registry_url": "http://nic.latrobe", + "whois_server": "whois.nic.latrobe", + "rdap_server": "https://rdap.nic.latrobe/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.latrobe", @@ -97682,7 +97701,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97720,7 +97739,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97728,7 +97747,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97739,7 +97758,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97747,7 +97766,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97758,7 +97777,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97766,34 +97785,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.latrobe", - "whois_server": "whois.nic.latrobe", - "rdap_server": "https://rdap.nic.latrobe/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "law", @@ -97818,6 +97816,34 @@ "date_removed": null } }, + "registry_url": "http://nic.law/", + "whois_server": "whois.nic.law", + "rdap_server": "https://rdap.nic.law/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2024-04-16" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.law", @@ -97843,7 +97869,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97881,7 +97907,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97889,7 +97915,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97900,7 +97926,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97908,7 +97934,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97919,7 +97945,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -97927,41 +97953,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.law/", - "whois_server": "whois.nic.law", - "rdap_server": "https://rdap.nic.law/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2024-04-16" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "lawyer", @@ -97986,6 +97984,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lawyer", @@ -98101,34 +98126,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lb", @@ -98142,6 +98140,18 @@ "tech": "5147 Crystal Springs Drive NE" } }, + "registry_url": "https://www.lbdr.org.lb", + "whois_server": "whois.lbdr.org.lb", + "rdap_server": "https://rdap.lbdr.org.lb", + "tld_created": "1993-08-25", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Lebanon", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.ns.lb", @@ -98314,19 +98324,7 @@ } ] } - ], - "registry_url": "https://www.lbdr.org.lb", - "whois_server": "whois.lbdr.org.lb", - "rdap_server": "https://rdap.lbdr.org.lb", - "tld_created": "1993-08-25", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Lebanon", - "geographic_scope": "country" - } + ] }, { "tld": "lc", @@ -98340,6 +98338,23 @@ "tech": "NIC LC" } }, + "registry_url": "http://www.nic.lc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Saint Lucia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -98455,24 +98470,7 @@ } ] } - ], - "registry_url": "http://www.nic.lc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Saint Lucia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "lds", @@ -98497,84 +98495,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a0.nic.lds", - "ipv4": [ - { - "ip": "65.22.152.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:96::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "a2.nic.lds", - "ipv4": [ - { - "ip": "65.22.155.9", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:99::9", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "b0.nic.lds", - "ipv4": [ - { - "ip": "65.22.153.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:97::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "c0.nic.lds", - "ipv4": [ - { - "ip": "65.22.154.9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:98::9", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - } - ], "registry_url": "https://www.lds.org", "whois_server": "whois.nic.lds", "rdap_server": "https://rdap.identitydigital.services/rdap/", @@ -98602,7 +98522,85 @@ "as_org_slugs": [ "identity-digital" ] - } + }, + "nameservers": [ + { + "hostname": "a0.nic.lds", + "ipv4": [ + { + "ip": "65.22.152.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:96::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "a2.nic.lds", + "ipv4": [ + { + "ip": "65.22.155.9", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:99::9", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "b0.nic.lds", + "ipv4": [ + { + "ip": "65.22.153.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:97::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "c0.nic.lds", + "ipv4": [ + { + "ip": "65.22.154.9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:98::9", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + } + ] }, { "tld": "lease", @@ -98627,6 +98625,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lease", @@ -98742,34 +98767,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "leclerc", @@ -98794,6 +98792,32 @@ "date_removed": null } }, + "registry_url": "http://www.mouvement-leclerc.com", + "whois_server": "whois.nic.leclerc", + "rdap_server": "https://rdap.nic.leclerc", + "tld_created": "2015-01-29", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -98852,33 +98876,7 @@ } ] } - ], - "registry_url": "http://www.mouvement-leclerc.com", - "whois_server": "whois.nic.leclerc", - "rdap_server": "https://rdap.nic.leclerc", - "tld_created": "2015-01-29", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "lefrak", @@ -98903,6 +98901,29 @@ "date_removed": null } }, + "registry_url": "http://lefrak.com", + "whois_server": "whois.nic.lefrak", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-31", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lefrak", @@ -98980,30 +99001,7 @@ } ] } - ], - "registry_url": "http://lefrak.com", - "whois_server": "whois.nic.lefrak", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-31", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "legal", @@ -99028,6 +99026,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.legal", @@ -99143,34 +99168,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lego", @@ -99195,6 +99193,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lego", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lego", @@ -99310,29 +99330,7 @@ } ] } - ], - "whois_server": "whois.nic.lego", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lexus", @@ -99357,6 +99355,29 @@ "date_removed": null } }, + "registry_url": "http://lexus.jp/", + "whois_server": "whois.nic.lexus", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -99382,7 +99403,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -99427,30 +99448,7 @@ } ] } - ], - "registry_url": "http://lexus.jp/", - "whois_server": "whois.nic.lexus", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "lgbt", @@ -99475,6 +99473,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lgbt", @@ -99552,34 +99577,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "li", @@ -99593,6 +99591,26 @@ "tech": "SWITCH The Swiss Education & Research Network" } }, + "registry_url": "https://www.nic.li", + "whois_server": "whois.nic.li", + "rdap_server": "https://rdap.nic.li/", + "tld_created": "1993-02-26", + "tld_updated": [ + "2025-11-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Liechtenstein", + "as_org_aliases": [ + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.li", @@ -99689,27 +99707,7 @@ } ] } - ], - "registry_url": "https://www.nic.li", - "whois_server": "whois.nic.li", - "rdap_server": "https://rdap.nic.li/", - "tld_created": "1993-02-26", - "tld_updated": [ - "2025-11-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Liechtenstein", - "as_org_aliases": [ - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "liaison", @@ -99764,6 +99762,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.lidl", + "whois_server": "whois.nic.lidl", + "rdap_server": "https://rdap.centralnic.com/lidl", + "tld_created": "2014-12-04", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lidl", @@ -99841,30 +99862,7 @@ } ] } - ], - "registry_url": "https://www.nic.lidl", - "whois_server": "whois.nic.lidl", - "rdap_server": "https://rdap.centralnic.com/lidl", - "tld_created": "2014-12-04", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "life", @@ -99889,6 +99887,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.life", @@ -100004,34 +100029,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lifeinsurance", @@ -100056,6 +100054,28 @@ "date_removed": null } }, + "registry_url": "http://acli.com", + "whois_server": "whois.nic.lifeinsurance", + "rdap_server": "https://rdap.nic.lifeinsurance/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lifeinsurance", @@ -100081,7 +100101,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -100171,29 +100191,7 @@ } ] } - ], - "registry_url": "http://acli.com", - "whois_server": "whois.nic.lifeinsurance", - "rdap_server": "https://rdap.nic.lifeinsurance/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "lifestyle", @@ -100218,6 +100216,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -100295,31 +100317,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "lighting", @@ -100344,6 +100342,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.lighting", @@ -100459,34 +100484,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "like", @@ -100511,14 +100509,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.like", + "rdap_server": "https://rdap.nominet.uk/like/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.like", "ipv4": [ { "ip": "213.248.218.72", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -100536,8 +100563,8 @@ "ipv4": [ { "ip": "103.49.82.72", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -100664,36 +100691,7 @@ } ] } - ], - "registry_url": "http://www.nic.like", - "rdap_server": "https://rdap.nominet.uk/like/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "lilly", @@ -100718,6 +100716,28 @@ "date_removed": null } }, + "registry_url": "http://www.lilly.com", + "rdap_server": "https://rdap.nic.lilly/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lilly", @@ -100743,7 +100763,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -100833,29 +100853,7 @@ } ] } - ], - "registry_url": "http://www.lilly.com", - "rdap_server": "https://rdap.nic.lilly/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "limited", @@ -100880,6 +100878,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.limited", @@ -100995,10 +101020,34 @@ } ] } - ], + ] + }, + { + "tld": "limo", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1543-47454", + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-17", + "date_delegated": "2013-12-17", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2013-12-12", "tld_updated": [ "2025-10-07" ], @@ -101022,30 +101071,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "limo", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1543-47454", - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-17", - "date_delegated": "2013-12-17", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -101162,34 +101187,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lincoln", @@ -101214,6 +101212,28 @@ "date_removed": null } }, + "registry_url": "http://www.lincoln.com", + "rdap_server": "https://rdap.nic.lincoln/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.lincoln", @@ -101239,7 +101259,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -101329,29 +101349,7 @@ } ] } - ], - "registry_url": "http://www.lincoln.com", - "rdap_server": "https://rdap.nic.lincoln/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "linde", @@ -101406,6 +101404,30 @@ "date_removed": null } }, + "registry_url": "http://uniregistry.link", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -101483,31 +101505,7 @@ } ] } - ], - "registry_url": "http://uniregistry.link", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "lipsy", @@ -101562,6 +101560,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.live", @@ -101677,34 +101702,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "living", @@ -101729,6 +101727,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -101806,31 +101828,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "lixil", @@ -101874,6 +101872,21 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk/", + "tld_created": "1990-06-15", + "tld_updated": [ + "2025-08-04" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.lk", @@ -102021,21 +102034,6 @@ ] } ], - "registry_url": "http://www.domains.lk/", - "tld_created": "1990-06-15", - "tld_updated": [ - "2025-08-04" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--fzc2c9e2c", "xn--xkc2al3hye2a" @@ -102064,6 +102062,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2018-02-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.llc", @@ -102141,34 +102166,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2018-02-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "llp", @@ -102193,6 +102191,29 @@ "date_removed": null } }, + "registry_url": "https://intercap.inc", + "whois_server": "whois.nic.llp", + "rdap_server": "https://rdap.centralnic.com/llp/", + "tld_created": "2019-11-20", + "tld_updated": [ + "2024-01-31" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.llp", @@ -102270,30 +102291,7 @@ } ] } - ], - "registry_url": "https://intercap.inc", - "whois_server": "whois.nic.llp", - "rdap_server": "https://rdap.centralnic.com/llp/", - "tld_created": "2019-11-20", - "tld_updated": [ - "2024-01-31" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "loan", @@ -102318,6 +102316,32 @@ "date_removed": null } }, + "registry_url": "http://nic.loan", + "whois_server": "whois.nic.loan", + "rdap_server": "https://rdap.nic.loan/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.loan", @@ -102343,7 +102367,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -102433,33 +102457,7 @@ } ] } - ], - "registry_url": "http://nic.loan", - "whois_server": "whois.nic.loan", - "rdap_server": "https://rdap.nic.loan/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "loans", @@ -102484,6 +102482,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.loans", @@ -102599,34 +102624,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "locker", @@ -102651,6 +102649,30 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.locker", + "rdap_server": "https://rdap.nic.locker/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -102728,31 +102750,7 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.locker", - "rdap_server": "https://rdap.nic.locker/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "locus", @@ -102777,14 +102775,38 @@ "date_removed": null } }, + "registry_url": "http://nic.locus", + "rdap_server": "https://rdap.nominet.uk/locus/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.locus", "ipv4": [ { "ip": "213.248.219.11", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -102802,8 +102824,8 @@ "ipv4": [ { "ip": "103.49.83.11", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -102930,31 +102952,7 @@ } ] } - ], - "registry_url": "http://nic.locus", - "rdap_server": "https://rdap.nominet.uk/locus/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "loft", @@ -103009,6 +103007,34 @@ "date_removed": null } }, + "registry_url": "https://nic.lol", + "whois_server": "whois.nic.lol", + "rdap_server": "https://rdap.centralnic.com/lol/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lol", @@ -103086,35 +103112,7 @@ } ] } - ], - "registry_url": "https://nic.lol", - "whois_server": "whois.nic.lol", - "rdap_server": "https://rdap.centralnic.com/lol/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "london", @@ -103139,6 +103137,29 @@ "date_removed": null } }, + "registry_url": "http://dotlondondomains.london/", + "whois_server": "whois.nic.london", + "rdap_server": "https://rdap.centralnic.com/london/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.london", @@ -103216,30 +103237,7 @@ } ] } - ], - "registry_url": "http://dotlondondomains.london/", - "whois_server": "whois.nic.london", - "rdap_server": "https://rdap.centralnic.com/london/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] }, { "tld": "lotte", @@ -103264,6 +103262,31 @@ "date_removed": null } }, + "registry_url": "http://nic.lotte", + "whois_server": "whois.nic.lotte", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -103289,7 +103312,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -103334,32 +103357,7 @@ } ] } - ], - "registry_url": "http://nic.lotte", - "whois_server": "whois.nic.lotte", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "lotto", @@ -103384,6 +103382,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lotto", @@ -103461,34 +103486,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "love", @@ -103513,6 +103511,30 @@ "date_removed": null } }, + "registry_url": "https://get.love", + "whois_server": "whois.nic.love", + "rdap_server": "https://rdap.registry.love/rdap/", + "tld_created": "2015-03-25", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -103590,31 +103612,7 @@ } ] } - ], - "registry_url": "https://get.love", - "whois_server": "whois.nic.love", - "rdap_server": "https://rdap.registry.love/rdap/", - "tld_created": "2015-03-25", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "lpl", @@ -103639,6 +103637,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lpl", + "rdap_server": "https://rdap.centralnic.com/lpl", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lpl", @@ -103716,29 +103736,7 @@ } ] } - ], - "whois_server": "whois.nic.lpl", - "rdap_server": "https://rdap.centralnic.com/lpl", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "lplfinancial", @@ -103763,6 +103761,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lplfinancial", + "rdap_server": "https://rdap.centralnic.com/lplfinancial", + "tld_created": "2016-06-30", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.lplfinancial", @@ -103840,29 +103860,7 @@ } ] } - ], - "whois_server": "whois.nic.lplfinancial", - "rdap_server": "https://rdap.centralnic.com/lplfinancial", - "tld_created": "2016-06-30", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "lr", @@ -103876,6 +103874,21 @@ "tech": "5147 Crystal Springs Drive NE" } }, + "registry_url": "http://psg.com/dns/lr", + "tld_created": "1997-04-09", + "tld_updated": [ + "2026-01-10" + ], + "annotations": { + "country_name_iso": "Liberia", + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -103953,22 +103966,7 @@ } ] } - ], - "registry_url": "http://psg.com/dns/lr", - "tld_created": "1997-04-09", - "tld_updated": [ - "2026-01-10" - ], - "annotations": { - "country_name_iso": "Liberia", - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ls", @@ -103982,6 +103980,22 @@ "tech": "Lesotho Communications Authority" } }, + "registry_url": "http://www.nic.ls", + "whois_server": "whois.nic.ls", + "tld_created": "1993-01-13", + "tld_updated": [ + "2024-06-17" + ], + "annotations": { + "country_name_iso": "Lesotho", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ls-ns.anycast.pch.net", @@ -104045,23 +104059,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ls", - "whois_server": "whois.nic.ls", - "tld_created": "1993-01-13", - "tld_updated": [ - "2024-06-17" - ], - "annotations": { - "country_name_iso": "Lesotho", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "lt", @@ -104075,6 +104073,22 @@ "tech": "Kaunas University of Technology" } }, + "registry_url": "http://www.domreg.lt", + "whois_server": "whois.domreg.lt", + "tld_created": "1992-06-03", + "tld_updated": [ + "2026-05-01" + ], + "annotations": { + "country_name_iso": "Lithuania", + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tld.lt", @@ -104176,23 +104190,7 @@ } ] } - ], - "registry_url": "http://www.domreg.lt", - "whois_server": "whois.domreg.lt", - "tld_created": "1992-06-03", - "tld_updated": [ - "2026-05-01" - ], - "annotations": { - "country_name_iso": "Lithuania", - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ltd", @@ -104217,6 +104215,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ltd", @@ -104332,34 +104357,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ltda", @@ -104384,6 +104382,28 @@ "date_removed": null } }, + "registry_url": "http://www.internetx.info", + "whois_server": "whois.nic.ltda", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ltda", @@ -104461,29 +104481,7 @@ } ] } - ], - "registry_url": "http://www.internetx.info", - "whois_server": "whois.nic.ltda", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lu", @@ -104497,6 +104495,24 @@ "tech": "Fondation RESTENA" } }, + "registry_url": "http://www.dns.lu", + "whois_server": "whois.dns.lu", + "tld_created": "1995-01-27", + "tld_updated": [ + "2023-07-28" + ], + "annotations": { + "country_name_iso": "Luxembourg", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "g.dns.lu", @@ -104612,25 +104628,7 @@ } ] } - ], - "registry_url": "http://www.dns.lu", - "whois_server": "whois.dns.lu", - "tld_created": "1995-01-27", - "tld_updated": [ - "2023-07-28" - ], - "annotations": { - "country_name_iso": "Luxembourg", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "lundbeck", @@ -104655,6 +104653,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.lundbeck", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.lundbeck", @@ -104732,29 +104752,7 @@ } ] } - ], - "whois_server": "whois.nic.lundbeck", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "lupin", @@ -104809,6 +104807,34 @@ "date_removed": null } }, + "registry_url": "http://nic.luxe/", + "whois_server": "whois.nic.luxe", + "rdap_server": "https://rdap.nic.luxe/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.luxe", @@ -104834,7 +104860,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104872,7 +104898,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104880,7 +104906,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104891,7 +104917,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104899,7 +104925,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104910,7 +104936,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -104918,41 +104944,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.luxe/", - "whois_server": "whois.nic.luxe", - "rdap_server": "https://rdap.nic.luxe/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "luxury", @@ -104977,6 +104975,28 @@ "date_removed": null } }, + "registry_url": "https://join.luxury/", + "whois_server": "whois.nic.luxury", + "rdap_server": "https://rdap.centralnic.com/luxury/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-10-05" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.luxury", @@ -105054,29 +105074,7 @@ } ] } - ], - "registry_url": "https://join.luxury/", - "whois_server": "whois.nic.luxury", - "rdap_server": "https://rdap.centralnic.com/luxury/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-10-05" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "lv", @@ -105090,6 +105088,22 @@ "tech": "Institute of Mathematics and Computer Science\nDepartment of Network Solutions (DNS)" } }, + "registry_url": "http://www.nic.lv/", + "whois_server": "whois.nic.lv", + "tld_created": "1993-04-29", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Latvia", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.lv", @@ -105217,23 +105231,7 @@ } ] } - ], - "registry_url": "http://www.nic.lv/", - "whois_server": "whois.nic.lv", - "tld_created": "1993-04-29", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Latvia", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ly", @@ -105247,6 +105245,24 @@ "tech": "Libya Telecom and Technology" } }, + "registry_url": "https://wsm.ltt.ly/", + "whois_server": "whois.nic.ly", + "rdap_server": "https://rdap.nic.ly", + "tld_created": "1997-04-23", + "tld_updated": [ + "2025-11-01" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Libya", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.lttnet.net", @@ -105329,25 +105345,7 @@ } ] } - ], - "registry_url": "https://wsm.ltt.ly/", - "whois_server": "whois.nic.ly", - "rdap_server": "https://rdap.nic.ly", - "tld_created": "1997-04-23", - "tld_updated": [ - "2025-11-01" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Libya", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ma", @@ -105361,6 +105359,22 @@ "tech": "Agence Nationale de Réglementation des Télécommunications (ANRT)" } }, + "registry_url": "http://www.registre.ma", + "whois_server": "whois.registre.ma", + "tld_created": "1993-11-26", + "tld_updated": [ + "2025-06-08" + ], + "annotations": { + "country_name_iso": "Morocco", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tld.ma", @@ -105525,22 +105539,6 @@ ] } ], - "registry_url": "http://www.registre.ma", - "whois_server": "whois.registre.ma", - "tld_created": "1993-11-26", - "tld_updated": [ - "2025-06-08" - ], - "annotations": { - "country_name_iso": "Morocco", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbc0a9azcg" ] @@ -105598,6 +105596,28 @@ "date_removed": null } }, + "registry_url": "http://dominios.madrid.org", + "whois_server": "whois.nic.madrid", + "rdap_server": "https://rdap.nic.madrid/", + "tld_created": "2014-10-02", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -105675,29 +105695,7 @@ } ] } - ], - "registry_url": "http://dominios.madrid.org", - "whois_server": "whois.nic.madrid", - "rdap_server": "https://rdap.nic.madrid/", - "tld_created": "2014-10-02", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] }, { "tld": "maif", @@ -105722,6 +105720,29 @@ "date_removed": null } }, + "registry_url": "http://www.maif.fr", + "whois_server": "whois.nic.maif", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.maif", @@ -105837,30 +105858,7 @@ } ] } - ], - "registry_url": "http://www.maif.fr", - "whois_server": "whois.nic.maif", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "maison", @@ -105885,6 +105883,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.maison", @@ -106000,34 +106025,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "makeup", @@ -106052,6 +106050,34 @@ "date_removed": null } }, + "registry_url": "https://nic.makeup/", + "whois_server": "whois.nic.makeup", + "rdap_server": "https://rdap.centralnic.com/makeup/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.makeup", @@ -106129,35 +106155,7 @@ } ] } - ], - "registry_url": "https://nic.makeup/", - "whois_server": "whois.nic.makeup", - "rdap_server": "https://rdap.centralnic.com/makeup/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "man", @@ -106182,6 +106180,29 @@ "date_removed": null } }, + "registry_url": "http://www.man.eu", + "whois_server": "whois.nic.man", + "rdap_server": "https://rdap.nic.man/", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-12-18" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -106259,30 +106280,7 @@ } ] } - ], - "registry_url": "http://www.man.eu", - "whois_server": "whois.nic.man", - "rdap_server": "https://rdap.nic.man/", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-12-18" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "management", @@ -106307,6 +106305,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.management", @@ -106422,34 +106447,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "mango", @@ -106474,6 +106472,26 @@ "date_removed": null } }, + "registry_url": "http://www.mango.com", + "whois_server": "whois.nic.mango", + "rdap_server": "https://rdap.nic.mango/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -106551,27 +106569,7 @@ } ] } - ], - "registry_url": "http://www.mango.com", - "whois_server": "whois.nic.mango", - "rdap_server": "https://rdap.nic.mango/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "map", @@ -106596,6 +106594,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -106692,34 +106717,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "market", @@ -106744,6 +106742,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.market", @@ -106859,10 +106884,34 @@ } ] } - ], + ] + }, + { + "tld": "marketing", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1557-30317", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2014-01-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", + "tld_created": "2014-01-09", "tld_updated": [ "2025-10-07" ], @@ -106886,30 +106935,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "marketing", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1557-30317", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2014-01-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -107026,10 +107051,34 @@ } ] } - ], + ] + }, + { + "tld": "markets", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-2042-29017", + "registry_operator_country_code": null, + "date_contract_signed": "2014-12-11", + "date_delegated": "2015-03-12", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", + "tld_created": "2015-03-06", "tld_updated": [ "2025-10-07" ], @@ -107053,30 +107102,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "markets", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-2042-29017", - "registry_operator_country_code": null, - "date_contract_signed": "2014-12-11", - "date_delegated": "2015-03-12", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -107193,34 +107218,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "marriott", @@ -107245,6 +107243,29 @@ "date_removed": null } }, + "registry_url": "http://www.marriott.com", + "whois_server": "whois.nic.marriott", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2024-05-02" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.marriott", @@ -107322,30 +107343,7 @@ } ] } - ], - "registry_url": "http://www.marriott.com", - "whois_server": "whois.nic.marriott", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2024-05-02" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "marshalls", @@ -107370,6 +107368,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.marshalls/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.marshalls", @@ -107395,7 +107419,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -107485,33 +107509,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.marshalls/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "maserati", @@ -107566,6 +107564,28 @@ "date_removed": null } }, + "registry_url": "http://www.mattel.com", + "rdap_server": "https://rdap.nic.mattel/", + "tld_created": "2016-01-22", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mattel", @@ -107591,7 +107611,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -107681,29 +107701,7 @@ } ] } - ], - "registry_url": "http://www.mattel.com", - "rdap_server": "https://rdap.nic.mattel/", - "tld_created": "2016-01-22", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "mba", @@ -107728,6 +107726,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.mba", @@ -107843,34 +107868,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "mc", @@ -107884,6 +107882,22 @@ "tech": "Direction des Plateformes et des Ressources Numériques" } }, + "registry_url": "https://www.nic.mc/", + "whois_server": "whois.nic.mc", + "tld_created": "1995-01-20", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "country_name_iso": "Monaco", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "mc.cctld.authdns.ripe.net", @@ -107940,23 +107954,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.nic.mc/", - "whois_server": "whois.nic.mc", - "tld_created": "1995-01-20", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "country_name_iso": "Monaco", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mcd", @@ -108041,6 +108039,29 @@ "date_removed": null } }, + "registry_url": "http://www.mckinsey.com/", + "whois_server": "whois.nic.mckinsey", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mckinsey", @@ -108118,30 +108139,7 @@ } ] } - ], - "registry_url": "http://www.mckinsey.com/", - "whois_server": "whois.nic.mckinsey", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "md", @@ -108155,6 +108153,16 @@ "tech": "IP Serviciul Tehnologia Informatiei si Securitate Cibernetica" } }, + "registry_url": "http://www.nic.md", + "whois_server": "whois.nic.md", + "tld_created": "1994-03-24", + "tld_updated": [ + "2026-03-09" + ], + "annotations": { + "country_name_iso": "Moldova, Republic of", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nsa.tld.md", @@ -108237,17 +108245,7 @@ } ] } - ], - "registry_url": "http://www.nic.md", - "whois_server": "whois.nic.md", - "tld_created": "1994-03-24", - "tld_updated": [ - "2026-03-09" - ], - "annotations": { - "country_name_iso": "Moldova, Republic of", - "geographic_scope": "country" - } + ] }, { "tld": "me", @@ -108261,6 +108259,24 @@ "tech": "Center of Information System (CIS)\nUniversity of Montenegro" } }, + "registry_url": "http://www.domain.me", + "whois_server": "whois.nic.me", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2007-09-24", + "tld_updated": [ + "2020-10-19" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Montenegro", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.me", @@ -108357,25 +108373,7 @@ } ] } - ], - "registry_url": "http://www.domain.me", - "whois_server": "whois.nic.me", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2007-09-24", - "tld_updated": [ - "2020-10-19" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Montenegro", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "med", @@ -108400,14 +108398,40 @@ "date_removed": null } }, + "rdap_server": "https://rdap.nominet.uk/med/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.med", "ipv4": [ { "ip": "213.248.219.124", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -108425,8 +108449,8 @@ "ipv4": [ { "ip": "103.49.83.124", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -108553,33 +108577,7 @@ } ] } - ], - "rdap_server": "https://rdap.nominet.uk/med/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "media", @@ -108604,6 +108602,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.media", @@ -108719,34 +108744,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "meet", @@ -108771,6 +108769,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -108867,34 +108892,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "melbourne", @@ -108919,6 +108917,31 @@ "date_removed": null } }, + "registry_url": "https://www.live.melbourne/", + "whois_server": "whois.nic.melbourne", + "rdap_server": "https://rdap.nic.melbourne/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.melbourne", @@ -108944,7 +108967,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -108982,7 +109005,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -108990,7 +109013,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109001,7 +109024,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109009,7 +109032,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109020,7 +109043,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109028,38 +109051,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.live.melbourne/", - "whois_server": "whois.nic.melbourne", - "rdap_server": "https://rdap.nic.melbourne/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "meme", @@ -109084,6 +109082,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -109180,34 +109205,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "memorial", @@ -109232,6 +109230,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.memorial", @@ -109347,34 +109372,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "men", @@ -109399,6 +109397,32 @@ "date_removed": null } }, + "registry_url": "http://nic.men", + "whois_server": "whois.nic.men", + "rdap_server": "https://rdap.nic.men/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.men", @@ -109424,7 +109448,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109462,7 +109486,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109470,7 +109494,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109481,7 +109505,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109489,7 +109513,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109500,7 +109524,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109508,39 +109532,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.men", - "whois_server": "whois.nic.men", - "rdap_server": "https://rdap.nic.men/", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "menu", @@ -109565,6 +109563,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.menu", + "whois_server": "whois.nic.menu", + "rdap_server": "https://rdap.nic.menu/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2024-07-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.menu", @@ -109590,7 +109608,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109628,7 +109646,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109636,7 +109654,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109647,7 +109665,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109655,7 +109673,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109666,7 +109684,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109674,33 +109692,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nic.menu", - "whois_server": "whois.nic.menu", - "rdap_server": "https://rdap.nic.menu/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2024-07-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "meo", @@ -109755,6 +109753,25 @@ "date_removed": null } }, + "registry_url": "https://nic.merck", + "whois_server": "whois.nic.merck", + "rdap_server": "https://rdap-merck.dns.business/rdap/", + "tld_updated": [ + "2026-04-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Hetzner" + ], + "as_org_slugs": [ + "hetzner" + ] + }, "nameservers": [ { "hostname": "ns1.dns.business", @@ -109813,26 +109830,7 @@ } ] } - ], - "registry_url": "https://nic.merck", - "whois_server": "whois.nic.merck", - "rdap_server": "https://rdap-merck.dns.business/rdap/", - "tld_updated": [ - "2026-04-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Hetzner" - ], - "as_org_slugs": [ - "hetzner" - ] - } + ] }, { "tld": "merckmsd", @@ -109857,6 +109855,27 @@ "date_removed": null } }, + "whois_server": "whois.nic.merckmsd", + "rdap_server": "https://rdap.nic.merckmsd", + "tld_created": "2017-06-15", + "tld_updated": [ + "2025-01-24" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.merckmsd", @@ -109882,7 +109901,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109920,7 +109939,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109928,7 +109947,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109939,7 +109958,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109947,7 +109966,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109958,7 +109977,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -109966,34 +109985,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.merckmsd", - "rdap_server": "https://rdap.nic.merckmsd", - "tld_created": "2017-06-15", - "tld_updated": [ - "2025-01-24" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "metlife", @@ -110057,6 +110055,26 @@ "tech": "NIC-MG (Network Information Center Madagascar)" } }, + "registry_url": "http://www.nic.mg", + "whois_server": "whois.nic.mg", + "rdap_server": "http://rdap.nic.mg", + "tld_created": "1995-07-25", + "tld_updated": [ + "2025-10-02" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Madagascar", + "as_org_aliases": [ + "Amazon", + "Packet Clearing House" + ], + "as_org_slugs": [ + "amazon", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-tld.ird.fr", @@ -110132,27 +110150,7 @@ } ] } - ], - "registry_url": "http://www.nic.mg", - "whois_server": "whois.nic.mg", - "rdap_server": "http://rdap.nic.mg", - "tld_created": "1995-07-25", - "tld_updated": [ - "2025-10-02" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Madagascar", - "as_org_aliases": [ - "Amazon", - "Packet Clearing House" - ], - "as_org_slugs": [ - "amazon", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mh", @@ -110166,6 +110164,15 @@ "tech": "National Telecommunications Authority" } }, + "registry_url": "http://www.nic.net.mh/", + "tld_created": "1996-08-16", + "tld_updated": [ + "2013-08-03" + ], + "annotations": { + "country_name_iso": "Marshall Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.amarshallinc.com", @@ -110191,16 +110198,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.net.mh/", - "tld_created": "1996-08-16", - "tld_updated": [ - "2013-08-03" - ], - "annotations": { - "country_name_iso": "Marshall Islands", - "geographic_scope": "country" - } + ] }, { "tld": "miami", @@ -110225,6 +110223,35 @@ "date_removed": null } }, + "registry_url": "http://nic.miami", + "whois_server": "whois.nic.miami", + "rdap_server": "https://rdap.nic.miami/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.miami", @@ -110250,7 +110277,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110288,7 +110315,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110296,7 +110323,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110307,7 +110334,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110315,7 +110342,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110326,7 +110353,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110334,42 +110361,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.miami", - "whois_server": "whois.nic.miami", - "rdap_server": "https://rdap.nic.miami/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "microsoft", @@ -110394,14 +110392,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/microsoft/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.microsoft", "ipv4": [ { "ip": "213.248.219.132", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -110419,8 +110447,8 @@ "ipv4": [ { "ip": "103.49.83.132", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -110547,37 +110575,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/microsoft/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "mil", @@ -110591,6 +110589,10 @@ "tech": "DoD Network Information Center" } }, + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], "nameservers": [ { "hostname": "con1.nipr.mil", @@ -110706,10 +110708,6 @@ } ] } - ], - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" ] }, { @@ -110735,6 +110733,35 @@ "date_removed": null } }, + "registry_url": "http://nic.mini.com", + "whois_server": "whois.nic.mini", + "rdap_server": "https://rdap.centralnic.com/mini", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_sponsor_alias": "BMW", + "iana_sponsor_slug": "bmw", + "iana_admin_alias": "BMW", + "iana_admin_slug": "bmw", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "BMW", + "icann_registry_operator_slug": "bmw", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.mini", @@ -110812,36 +110839,7 @@ } ] } - ], - "registry_url": "http://nic.mini.com", - "whois_server": "whois.nic.mini", - "rdap_server": "https://rdap.centralnic.com/mini", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_sponsor_alias": "BMW", - "iana_sponsor_slug": "bmw", - "iana_admin_alias": "BMW", - "iana_admin_slug": "bmw", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "BMW", - "icann_registry_operator_slug": "bmw", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "mint", @@ -110866,6 +110864,28 @@ "date_removed": null } }, + "registry_url": "https://www.intuit.com/", + "rdap_server": "https://rdap.nic.mint/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mint", @@ -110891,7 +110911,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110937,7 +110957,7 @@ "ipv6": [ { "ip": "2610:a1:1074::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110956,7 +110976,7 @@ "ipv6": [ { "ip": "2610:a1:1075::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -110975,35 +110995,13 @@ "ipv6": [ { "ip": "2610:a1:1076::70", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.intuit.com/", - "rdap_server": "https://rdap.nic.mint/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "mit", @@ -111028,6 +111026,29 @@ "date_removed": null } }, + "registry_url": "http://www.mit.edu", + "whois_server": "whois.nic.mit", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-08-04" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mit", @@ -111105,30 +111126,7 @@ } ] } - ], - "registry_url": "http://www.mit.edu", - "whois_server": "whois.nic.mit", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-08-04" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "mitsubishi", @@ -111153,6 +111151,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -111178,7 +111199,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -111223,30 +111244,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "mk", @@ -111260,6 +111258,22 @@ "tech": "Faculty of Computer Science and Engineering" } }, + "registry_url": "http://marnet.mk/", + "whois_server": "whois.marnet.mk", + "tld_created": "1993-09-23", + "tld_updated": [ + "2024-02-15" + ], + "annotations": { + "country_name_iso": "North Macedonia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -111331,22 +111345,6 @@ "ipv6": [] } ], - "registry_url": "http://marnet.mk/", - "whois_server": "whois.marnet.mk", - "tld_created": "1993-09-23", - "tld_updated": [ - "2024-02-15" - ], - "annotations": { - "country_name_iso": "North Macedonia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - }, "idn": [ "xn--d1alf" ] @@ -111363,6 +111361,24 @@ "tech": "Agence des Technologies de l'Information et de la Communication" } }, + "registry_url": "http://www.nic.ml", + "whois_server": "whois.nic.ml", + "rdap_server": "https://rdap.nic.ml", + "tld_created": "1993-09-29", + "tld_updated": [ + "2025-12-03" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Mali", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.ml", @@ -111433,25 +111449,7 @@ } ] } - ], - "registry_url": "http://www.nic.ml", - "whois_server": "whois.nic.ml", - "rdap_server": "https://rdap.nic.ml", - "tld_created": "1993-09-29", - "tld_updated": [ - "2025-12-03" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Mali", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mlb", @@ -111476,6 +111474,28 @@ "date_removed": null } }, + "registry_url": "http://www.mlb.com", + "rdap_server": "https://rdap.nic.mlb/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.mlb", @@ -111501,7 +111521,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -111591,29 +111611,7 @@ } ] } - ], - "registry_url": "http://www.mlb.com", - "rdap_server": "https://rdap.nic.mlb/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "mls", @@ -111638,6 +111636,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.mls", + "rdap_server": "https://rdap.mls.fury.ca/rdap/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ] + }, "nameservers": [ { "hostname": "a.ns.nic.mls", @@ -111715,30 +111736,7 @@ } ] } - ], - "whois_server": "whois.nic.mls", - "rdap_server": "https://rdap.mls.fury.ca/rdap/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ] - } + ] }, { "tld": "mm", @@ -111752,6 +111750,22 @@ "tech": "Posts and Telecommunications Department" } }, + "registry_url": "http://www.ptd.gov.mm/", + "whois_server": "whois.registry.gov.mm", + "tld_created": "1997-02-04", + "tld_updated": [ + "2025-07-28" + ], + "annotations": { + "country_name_iso": "Myanmar", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.net.mm", @@ -111770,7 +111784,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -111801,23 +111815,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.ptd.gov.mm/", - "whois_server": "whois.registry.gov.mm", - "tld_created": "1997-02-04", - "tld_updated": [ - "2025-07-28" - ], - "annotations": { - "country_name_iso": "Myanmar", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mma", @@ -111842,6 +111840,33 @@ "date_removed": null } }, + "registry_url": "https://www.mma.fr", + "whois_server": "whois.nic.mma", + "rdap_server": "https://rdap.nic.mma", + "tld_created": "2015-02-27", + "tld_updated": [ + "2024-07-23" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -111900,34 +111925,7 @@ } ] } - ], - "registry_url": "https://www.mma.fr", - "whois_server": "whois.nic.mma", - "rdap_server": "https://rdap.nic.mma", - "tld_created": "2015-02-27", - "tld_updated": [ - "2024-07-23" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "mn", @@ -111941,6 +111939,30 @@ "tech": "Datacom Co. Ltd." } }, + "registry_url": "http://www.nic.mn", + "whois_server": "whois.nic.mn", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-03-02", + "tld_updated": [ + "2022-06-15" + ], + "annotations": { + "iana_sponsor_alias": "Datacom Mongolia", + "iana_sponsor_slug": "datacom-mongolia", + "iana_admin_alias": "Datacom Mongolia", + "iana_admin_slug": "datacom-mongolia", + "iana_tech_alias": "Datacom Mongolia", + "iana_tech_slug": "datacom-mongolia", + "rdap_source": "supplemental", + "country_name_iso": "Mongolia", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -112105,30 +112127,6 @@ "ipv6": [] } ], - "registry_url": "http://www.nic.mn", - "whois_server": "whois.nic.mn", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-03-02", - "tld_updated": [ - "2022-06-15" - ], - "annotations": { - "iana_sponsor_alias": "Datacom Mongolia", - "iana_sponsor_slug": "datacom-mongolia", - "iana_admin_alias": "Datacom Mongolia", - "iana_admin_slug": "datacom-mongolia", - "iana_tech_alias": "Datacom Mongolia", - "iana_tech_slug": "datacom-mongolia", - "rdap_source": "supplemental", - "country_name_iso": "Mongolia", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - }, "idn": [ "xn--l1acc" ] @@ -112145,6 +112143,22 @@ "tech": "Macao Network Information Centre (MONIC) - HNET Asia" } }, + "registry_url": "https://www.monic.mo", + "whois_server": "whois.monic.mo", + "tld_created": "1992-09-17", + "tld_updated": [ + "2022-06-08" + ], + "annotations": { + "country_name_iso": "Macao", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.monic.mo", @@ -112280,22 +112294,6 @@ ] } ], - "registry_url": "https://www.monic.mo", - "whois_server": "whois.monic.mo", - "tld_created": "1992-09-17", - "tld_updated": [ - "2022-06-08" - ], - "annotations": { - "country_name_iso": "Macao", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mix891f" ] @@ -112323,6 +112321,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2005-10-17", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.mobi.afilias-nst.info", @@ -112438,34 +112463,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2005-10-17", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "mobile", @@ -112490,6 +112488,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.mobile", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -112567,35 +112593,7 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.mobile", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "mobily", @@ -112649,6 +112647,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.moda", @@ -112764,34 +112789,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "moe", @@ -112816,6 +112814,28 @@ "date_removed": null } }, + "registry_url": "https://get.moe/", + "whois_server": "whois.nic.moe", + "rdap_server": "https://rdap.nic.moe/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.moe", @@ -112841,7 +112861,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -112931,29 +112951,7 @@ } ] } - ], - "registry_url": "https://get.moe/", - "whois_server": "whois.nic.moe", - "rdap_server": "https://rdap.nic.moe/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "moi", @@ -112978,14 +112976,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.moi", + "rdap_server": "https://rdap.nominet.uk/moi/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.moi", "ipv4": [ { "ip": "213.248.218.54", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -113003,8 +113030,8 @@ "ipv4": [ { "ip": "103.49.82.54", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -113131,36 +113158,7 @@ } ] } - ], - "registry_url": "http://www.nic.moi", - "rdap_server": "https://rdap.nominet.uk/moi/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "mom", @@ -113185,6 +113183,34 @@ "date_removed": null } }, + "registry_url": "https://nic.mom", + "whois_server": "whois.nic.mom", + "rdap_server": "https://rdap.centralnic.com/mom/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.mom", @@ -113262,35 +113288,7 @@ } ] } - ], - "registry_url": "https://nic.mom", - "whois_server": "whois.nic.mom", - "rdap_server": "https://rdap.centralnic.com/mom/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "monash", @@ -113315,6 +113313,27 @@ "date_removed": null } }, + "registry_url": "http://nic.monash", + "whois_server": "whois.nic.monash", + "rdap_server": "https://rdap.nic.monash/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2024-03-13" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.monash", @@ -113340,7 +113359,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113378,7 +113397,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113386,7 +113405,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113397,7 +113416,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113405,7 +113424,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113416,7 +113435,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -113424,34 +113443,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.monash", - "whois_server": "whois.nic.monash", - "rdap_server": "https://rdap.nic.monash/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2024-03-13" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "money", @@ -113476,6 +113474,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.money", @@ -113591,34 +113616,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "monster", @@ -113643,6 +113641,34 @@ "date_removed": null } }, + "registry_url": "https://nic.monster/", + "whois_server": "whois.nic.monster", + "rdap_server": "https://rdap.centralnic.com/monster", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.monster", @@ -113720,35 +113746,7 @@ } ] } - ], - "registry_url": "https://nic.monster/", - "whois_server": "whois.nic.monster", - "rdap_server": "https://rdap.centralnic.com/monster", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "montblanc", @@ -113833,6 +113831,33 @@ "date_removed": null } }, + "registry_url": "http://www.mormon.org", + "whois_server": "whois.nic.mormon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-16", + "tld_updated": [ + "2023-08-15" + ], + "annotations": { + "iana_sponsor_alias": "LDS", + "iana_sponsor_slug": "lds", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "LDS", + "icann_registry_operator_slug": "lds", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.mormon", @@ -113910,34 +113935,7 @@ } ] } - ], - "registry_url": "http://www.mormon.org", - "whois_server": "whois.nic.mormon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-16", - "tld_updated": [ - "2023-08-15" - ], - "annotations": { - "iana_sponsor_alias": "LDS", - "iana_sponsor_slug": "lds", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "LDS", - "icann_registry_operator_slug": "lds", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "mortgage", @@ -113962,6 +113960,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.mortgage", @@ -114077,34 +114102,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "moscow", @@ -114129,6 +114127,27 @@ "date_removed": null } }, + "registry_url": "http://www.faitid.org", + "whois_server": "whois.nic.moscow", + "rdap_server": "https://rdap.flexireg.net", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.flexireg.ru", @@ -114206,28 +114225,7 @@ } ] } - ], - "registry_url": "http://www.faitid.org", - "whois_server": "whois.nic.moscow", - "rdap_server": "https://rdap.flexireg.net", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] }, { "tld": "moto", @@ -114252,6 +114250,29 @@ "date_removed": null } }, + "registry_url": "http://www.motorola.com", + "whois_server": "whois.nic.moto", + "rdap_server": "https://rdap.nic.moto/", + "tld_created": "2016-09-30", + "tld_updated": [ + "2025-02-07" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.moto", @@ -114277,7 +114298,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114315,7 +114336,7 @@ "ipv4": [ { "ip": "156.154.172.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114323,7 +114344,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114334,7 +114355,7 @@ "ipv4": [ { "ip": "156.154.173.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114342,7 +114363,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114353,7 +114374,7 @@ "ipv4": [ { "ip": "156.154.174.81", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -114361,36 +114382,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:51", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.motorola.com", - "whois_server": "whois.nic.moto", - "rdap_server": "https://rdap.nic.moto/", - "tld_created": "2016-09-30", - "tld_updated": [ - "2025-02-07" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "motorcycles", @@ -114415,6 +114413,34 @@ "date_removed": null } }, + "registry_url": "http://nic.motorcycles", + "whois_server": "whois.nic.motorcycles", + "rdap_server": "https://rdap.centralnic.com/motorcycles/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.motorcycles", @@ -114492,35 +114518,7 @@ } ] } - ], - "registry_url": "http://nic.motorcycles", - "whois_server": "whois.nic.motorcycles", - "rdap_server": "https://rdap.centralnic.com/motorcycles/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "mov", @@ -114545,6 +114543,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -114641,34 +114666,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "movie", @@ -114693,6 +114691,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.movie", @@ -114808,34 +114833,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "movistar", @@ -114878,6 +114876,21 @@ "tech": "Saipan Datacom, Inc." } }, + "registry_url": "https://get.mp/", + "tld_created": "1996-10-22", + "tld_updated": [ + "2022-05-06" + ], + "annotations": { + "country_name_iso": "Northern Mariana Islands", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.mp", @@ -114927,22 +114940,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://get.mp/", - "tld_created": "1996-10-22", - "tld_updated": [ - "2022-05-06" - ], - "annotations": { - "country_name_iso": "Northern Mariana Islands", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mq", @@ -114956,6 +114954,16 @@ "tech": "CANAL+ TELECOM" } }, + "registry_url": "https://www.dom-enic.com", + "whois_server": "whois.mediaserv.net", + "tld_created": "1997-03-28", + "tld_updated": [ + "2021-10-18" + ], + "annotations": { + "country_name_iso": "Martinique", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1-fr.mediaserv.net", @@ -114993,17 +115001,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.dom-enic.com", - "whois_server": "whois.mediaserv.net", - "tld_created": "1997-03-28", - "tld_updated": [ - "2021-10-18" - ], - "annotations": { - "country_name_iso": "Martinique", - "geographic_scope": "country" - } + ] }, { "tld": "mr", @@ -115017,6 +115015,24 @@ "tech": "Faculte de Sciences et Techniques, UNA" } }, + "registry_url": "http://www.nic.mr", + "whois_server": "whois.nic.mr", + "tld_created": "1996-04-24", + "tld_updated": [ + "2021-06-04" + ], + "annotations": { + "country_name_iso": "Mauritania", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-mr.afrinic.net", @@ -115100,24 +115116,6 @@ ] } ], - "registry_url": "http://www.nic.mr", - "whois_server": "whois.nic.mr", - "tld_created": "1996-04-24", - "tld_updated": [ - "2021-06-04" - ], - "annotations": { - "country_name_iso": "Mauritania", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbah1a3hjkrd" ] @@ -115134,6 +115132,26 @@ "tech": "MNI Networks Ltd." } }, + "registry_url": "http://www.nic.ms", + "whois_server": "whois.nic.ms", + "rdap_server": "https://rdap.nic.ms", + "tld_created": "1997-03-06", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Montserrat", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -115204,27 +115222,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.ms", - "whois_server": "whois.nic.ms", - "rdap_server": "https://rdap.nic.ms", - "tld_created": "1997-03-06", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Montserrat", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "msd", @@ -115249,6 +115247,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.msd", + "rdap_server": "https://rdap.nic.msd", + "tld_created": "2016-06-24", + "tld_updated": [ + "2025-01-24" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.msd", @@ -115274,7 +115294,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115312,7 +115332,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115320,7 +115340,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115331,7 +115351,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115339,7 +115359,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115350,7 +115370,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -115358,35 +115378,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.msd", - "rdap_server": "https://rdap.nic.msd", - "tld_created": "2016-06-24", - "tld_updated": [ - "2025-01-24" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "mt", @@ -115400,6 +115398,23 @@ "tech": "NIC (Malta)" } }, + "registry_url": "https://www.nic.org.mt/", + "tld_created": "1992-12-02", + "tld_updated": [ + "2020-01-23" + ], + "annotations": { + "country_name_iso": "Malta", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.mt", @@ -115463,24 +115478,7 @@ } ] } - ], - "registry_url": "https://www.nic.org.mt/", - "tld_created": "1992-12-02", - "tld_updated": [ - "2020-01-23" - ], - "annotations": { - "country_name_iso": "Malta", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mtn", @@ -115505,14 +115503,40 @@ "date_removed": null } }, + "registry_url": "http://www.mtn.com", + "rdap_server": "https://rdap.nominet.uk/mtn/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.mtn", "ipv4": [ { "ip": "213.248.219.42", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -115530,8 +115554,8 @@ "ipv4": [ { "ip": "103.49.83.42", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -115658,33 +115682,7 @@ } ] } - ], - "registry_url": "http://www.mtn.com", - "rdap_server": "https://rdap.nominet.uk/mtn/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "mtpc", @@ -115738,6 +115736,21 @@ "date_removed": null } }, + "registry_url": "http://nic.mtr", + "whois_server": "whois.nic.mtr", + "rdap_server": "https://whois.nic.mtr/rdap/", + "tld_created": "2015-07-31", + "tld_updated": [ + "2025-12-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "ns1.nic.mtr", @@ -115815,22 +115828,7 @@ } ] } - ], - "registry_url": "http://nic.mtr", - "whois_server": "whois.nic.mtr", - "rdap_server": "https://whois.nic.mtr/rdap/", - "tld_created": "2015-07-31", - "tld_updated": [ - "2025-12-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] }, { "tld": "mu", @@ -115844,6 +115842,24 @@ "tech": "Internet Direct Ltd" } }, + "registry_url": "http://www.nic.mu/", + "whois_server": "whois.tld.mu", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1995-10-06", + "tld_updated": [ + "2025-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Mauritius", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "v0n0.tld.mu", @@ -115959,25 +115975,7 @@ } ] } - ], - "registry_url": "http://www.nic.mu/", - "whois_server": "whois.tld.mu", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1995-10-06", - "tld_updated": [ - "2025-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Mauritius", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "museum", @@ -116002,6 +116000,32 @@ "date_removed": null } }, + "registry_url": "https://about.museum", + "whois_server": "whois.nic.museum", + "rdap_server": "https://rdap.nic.museum", + "tld_created": "2001-10-20", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -116060,33 +116084,7 @@ } ] } - ], - "registry_url": "https://about.museum", - "whois_server": "whois.nic.museum", - "rdap_server": "https://rdap.nic.museum", - "tld_created": "2001-10-20", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "music", @@ -116111,6 +116109,31 @@ "date_removed": null } }, + "registry_url": "https://nic.music/", + "whois_server": "whois.registryservices.music", + "rdap_server": "https://rdap.registryservices.music/rdap/", + "tld_created": "2021-10-14", + "tld_updated": [ + "2026-05-06" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -116188,32 +116211,7 @@ } ] } - ], - "registry_url": "https://nic.music/", - "whois_server": "whois.registryservices.music", - "rdap_server": "https://rdap.registryservices.music/rdap/", - "tld_created": "2021-10-14", - "tld_updated": [ - "2026-05-06" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "mutual", @@ -116285,6 +116283,20 @@ "tech": "Dhivehi Raajjeyge Gulhun PLC" } }, + "tld_created": "1996-09-25", + "tld_updated": [ + "2026-02-05" + ], + "annotations": { + "country_name_iso": "Maldives", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "baraveli.ns.mv", @@ -116398,21 +116410,7 @@ } ] } - ], - "tld_created": "1996-09-25", - "tld_updated": [ - "2026-02-05" - ], - "annotations": { - "country_name_iso": "Maldives", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mw", @@ -116426,6 +116424,24 @@ "tech": "Malawi SDNP" } }, + "registry_url": "http://www.registrar.mw", + "whois_server": "whois.nic.mw", + "tld_created": "1997-01-03", + "tld_updated": [ + "2025-08-21" + ], + "annotations": { + "country_name_iso": "Malawi", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "chambo.sdnp.org.mw", @@ -116558,25 +116574,7 @@ } ] } - ], - "registry_url": "http://www.registrar.mw", - "whois_server": "whois.nic.mw", - "tld_created": "1997-01-03", - "tld_updated": [ - "2025-08-21" - ], - "annotations": { - "country_name_iso": "Malawi", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "mx", @@ -116590,6 +116588,24 @@ "tech": "NIC-Mexico, ITESM - Campus Monterrey" } }, + "registry_url": "http://www.registry.mx/", + "whois_server": "whois.mx", + "tld_created": "1989-02-01", + "tld_updated": [ + "2026-02-28" + ], + "annotations": { + "country_name_iso": "Mexico", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c.mx-ns.mx", @@ -116705,25 +116721,7 @@ } ] } - ], - "registry_url": "http://www.registry.mx/", - "whois_server": "whois.mx", - "tld_created": "1989-02-01", - "tld_updated": [ - "2026-02-28" - ], - "annotations": { - "country_name_iso": "Mexico", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "my", @@ -116737,6 +116735,26 @@ "tech": "MYNIC Berhad" } }, + "registry_url": "http://www.mynic.my", + "whois_server": "whois.mynic.my", + "rdap_server": "https://rdap.mynic.my/rdap/", + "tld_created": "1987-06-08", + "tld_updated": [ + "2026-04-18" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Malaysia", + "as_org_aliases": [ + "CentralNic", + "Tucows" + ], + "as_org_slugs": [ + "centralnic", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.mynic.centralnic-dns.com", @@ -116872,26 +116890,6 @@ ] } ], - "registry_url": "http://www.mynic.my", - "whois_server": "whois.mynic.my", - "rdap_server": "https://rdap.mynic.my/rdap/", - "tld_created": "1987-06-08", - "tld_updated": [ - "2026-04-18" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Malaysia", - "as_org_aliases": [ - "CentralNic", - "Tucows" - ], - "as_org_slugs": [ - "centralnic", - "tucows" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbx4cd0ab" ] @@ -116908,6 +116906,21 @@ "tech": "Centro de Informatica da Universidade Eduardo Mondlane" } }, + "whois_server": "whois.nic.mz", + "tld_created": "1992-09-04", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Mozambique", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyns.uem.mz", @@ -116995,22 +117008,7 @@ ], "ipv6": [] } - ], - "whois_server": "whois.nic.mz", - "tld_created": "1992-09-04", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Mozambique", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "na", @@ -117024,6 +117022,25 @@ "tech": "Namibian Network Information Center" } }, + "registry_url": "http://www.na-nic.com.na/", + "rdap_server": "https://keetmans.omadhina.co.na", + "tld_created": "1991-05-08", + "tld_updated": [ + "2024-10-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Namibia", + "as_org_aliases": [ + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anyc2.irondns.net", @@ -117100,26 +117117,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.na-nic.com.na/", - "rdap_server": "https://keetmans.omadhina.co.na", - "tld_created": "1991-05-08", - "tld_updated": [ - "2024-10-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Namibia", - "as_org_aliases": [ - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "knipp-medien", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nab", @@ -117144,6 +117142,29 @@ "date_removed": null } }, + "registry_url": "http://www.nab.com.au", + "whois_server": "whois.nic.nab", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-01" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nab", @@ -117221,30 +117242,7 @@ } ] } - ], - "registry_url": "http://www.nab.com.au", - "whois_server": "whois.nic.nab", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-01" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nadex", @@ -117299,6 +117297,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.nagoya", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -117324,7 +117351,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -117369,36 +117396,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.nagoya", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "name", @@ -117423,22 +117421,49 @@ "date_removed": null } }, + "registry_url": "http://www.nic.name", + "whois_server": "whois.nic.name", + "rdap_server": "https://tld-rdap.verisign.com/name/v1/", + "tld_created": "2001-08-17", + "tld_updated": [ + "2026-03-23" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -117467,16 +117492,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -117500,34 +117525,7 @@ } ] } - ], - "registry_url": "http://www.nic.name", - "whois_server": "whois.nic.name", - "rdap_server": "https://tld-rdap.verisign.com/name/v1/", - "tld_created": "2001-08-17", - "tld_updated": [ - "2026-03-23" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "nationwide", @@ -117612,6 +117610,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.navy", @@ -117727,34 +117752,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nba", @@ -117779,6 +117777,28 @@ "date_removed": null } }, + "registry_url": "http://www.nba.com", + "rdap_server": "https://rdap.nic.nba/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nba", @@ -117804,7 +117824,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -117894,29 +117914,7 @@ } ] } - ], - "registry_url": "http://www.nba.com", - "rdap_server": "https://rdap.nic.nba/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "nc", @@ -117930,6 +117928,22 @@ "tech": "Office des Postes et Telecommunications" } }, + "registry_url": "http://www.domaine.nc", + "whois_server": "whois.nc", + "tld_created": "1993-10-13", + "tld_updated": [ + "2025-07-23" + ], + "annotations": { + "country_name_iso": "New Caledonia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "any-ns1.nc", @@ -118007,23 +118021,7 @@ } ] } - ], - "registry_url": "http://www.domaine.nc", - "whois_server": "whois.nc", - "tld_created": "1993-10-13", - "tld_updated": [ - "2025-07-23" - ], - "annotations": { - "country_name_iso": "New Caledonia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ne", @@ -118037,6 +118035,15 @@ "tech": "SONITEL" } }, + "registry_url": "http://www.intnet.ne", + "tld_created": "1996-04-24", + "tld_updated": [ + "2023-11-09" + ], + "annotations": { + "country_name_iso": "Niger", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bow.rain.fr", @@ -118063,9 +118070,9 @@ "ipv6": [ { "ip": "2001:67c:e0::101", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] }, @@ -118100,16 +118107,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.intnet.ne", - "tld_created": "1996-04-24", - "tld_updated": [ - "2023-11-09" - ], - "annotations": { - "country_name_iso": "Niger", - "geographic_scope": "country" - } + ] }, { "tld": "nec", @@ -118134,6 +118132,29 @@ "date_removed": null } }, + "registry_url": "http://www.nec.com/", + "whois_server": "whois.nic.nec", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -118159,7 +118180,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118204,30 +118225,7 @@ } ] } - ], - "registry_url": "http://www.nec.com/", - "whois_server": "whois.nic.nec", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "net", @@ -118252,6 +118250,33 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.verisign-grs.com", + "rdap_server": "https://rdap.verisign.com/net/v1/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "a.gtld-servers.net", @@ -118277,7 +118302,7 @@ "ipv4": [ { "ip": "192.33.14.30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -118285,7 +118310,7 @@ "ipv6": [ { "ip": "2001:503:231d::2:30", - "asn": 396654, + "asn": 396628, "as_org": "VRSN-AC50-340", "as_country": "US" } @@ -118296,7 +118321,7 @@ "ipv4": [ { "ip": "192.26.92.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118304,7 +118329,7 @@ "ipv6": [ { "ip": "2001:503:83eb::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118315,7 +118340,7 @@ "ipv4": [ { "ip": "192.31.80.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118323,7 +118348,7 @@ "ipv6": [ { "ip": "2001:500:856e::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118334,7 +118359,7 @@ "ipv4": [ { "ip": "192.12.94.30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118342,7 +118367,7 @@ "ipv6": [ { "ip": "2001:502:1ca1::30", - "asn": 397204, + "asn": 397198, "as_org": "VRSN-AC28", "as_country": "US" } @@ -118437,8 +118462,8 @@ "ipv6": [ { "ip": "2001:502:7094::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -118456,8 +118481,8 @@ "ipv6": [ { "ip": "2001:503:d2d::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -118475,8 +118500,8 @@ "ipv6": [ { "ip": "2001:500:d937::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -118494,40 +118519,13 @@ "ipv6": [ { "ip": "2001:501:b1f9::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 397193, + "as_org": "VRSN-AC28", "as_country": "US" } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.verisign-grs.com", - "rdap_server": "https://rdap.verisign.com/net/v1/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "netbank", @@ -118552,6 +118550,27 @@ "date_removed": null } }, + "registry_url": "http://www.commbank.com.au", + "whois_server": "whois.nic.netbank", + "rdap_server": "https://rdap.nic.netbank/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.netbank", @@ -118577,7 +118596,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118615,7 +118634,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118623,7 +118642,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118634,7 +118653,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118642,7 +118661,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118653,7 +118672,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118661,34 +118680,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.commbank.com.au", - "whois_server": "whois.nic.netbank", - "rdap_server": "https://rdap.nic.netbank/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "netflix", @@ -118713,6 +118711,28 @@ "date_removed": null } }, + "registry_url": "http://www.netflix.com", + "rdap_server": "https://rdap.nic.netflix/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.netflix", @@ -118738,7 +118758,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118784,7 +118804,7 @@ "ipv6": [ { "ip": "2610:a1:1074::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118803,7 +118823,7 @@ "ipv6": [ { "ip": "2610:a1:1075::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -118822,35 +118842,13 @@ "ipv6": [ { "ip": "2610:a1:1076::79", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.netflix.com", - "rdap_server": "https://rdap.nic.netflix/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "network", @@ -118875,6 +118873,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.network", @@ -118990,34 +119015,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "neustar", @@ -119042,6 +119040,30 @@ "date_removed": null } }, + "registry_url": "http://www.neustar.biz", + "rdap_server": "https://rdap.nic.neustar/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.neustar", @@ -119067,7 +119089,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -119157,31 +119179,7 @@ } ] } - ], - "registry_url": "http://www.neustar.biz", - "rdap_server": "https://rdap.nic.neustar/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "new", @@ -119206,6 +119204,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -119302,34 +119327,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "newholland", @@ -119384,6 +119382,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.news", @@ -119499,34 +119524,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "next", @@ -119551,6 +119549,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.next", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.next", @@ -119628,29 +119648,7 @@ } ] } - ], - "whois_server": "whois.nic.next", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nextdirect", @@ -119675,6 +119673,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.nextdirect", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nextdirect", @@ -119752,29 +119772,7 @@ } ] } - ], - "whois_server": "whois.nic.nextdirect", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nexus", @@ -119799,6 +119797,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -119895,34 +119920,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "nf", @@ -119936,6 +119934,24 @@ "tech": "Norfolk Island Data Services" } }, + "registry_url": "http://nic.nf", + "whois_server": "whois.nic.nf", + "rdap_server": "https://rdap.nic.nf", + "tld_created": "1996-03-18", + "tld_updated": [ + "2024-02-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Norfolk Island", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.nf", @@ -119987,25 +120003,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://nic.nf", - "whois_server": "whois.nic.nf", - "rdap_server": "https://rdap.nic.nf", - "tld_created": "1996-03-18", - "tld_updated": [ - "2024-02-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Norfolk Island", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nfl", @@ -120030,6 +120028,28 @@ "date_removed": null } }, + "registry_url": "http://www.nfl.com/", + "rdap_server": "https://rdap.nic.nfl/", + "tld_created": "2016-06-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nfl", @@ -120055,7 +120075,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120101,7 +120121,7 @@ "ipv6": [ { "ip": "2610:a1:1074::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120120,7 +120140,7 @@ "ipv6": [ { "ip": "2610:a1:1075::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120139,35 +120159,13 @@ "ipv6": [ { "ip": "2610:a1:1076::7a", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nfl.com/", - "rdap_server": "https://rdap.nic.nfl/", - "tld_created": "2016-06-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ng", @@ -120181,6 +120179,24 @@ "tech": "Nigeria Internet Registration Association" } }, + "registry_url": "http://www.nira.org.ng/", + "whois_server": "whois.nic.net.ng", + "rdap_server": "http://rdap.nic.net.ng", + "tld_created": "1995-03-15", + "tld_updated": [ + "2026-02-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Nigeria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns2.nic.net.ng", @@ -120270,25 +120286,7 @@ } ] } - ], - "registry_url": "http://www.nira.org.ng/", - "whois_server": "whois.nic.net.ng", - "rdap_server": "http://rdap.nic.net.ng", - "tld_created": "1995-03-15", - "tld_updated": [ - "2026-02-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Nigeria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ngo", @@ -120313,6 +120311,35 @@ "date_removed": null } }, + "registry_url": "http://nic.ngo", + "whois_server": "whois.nic.ngo", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ngo", @@ -120428,36 +120455,7 @@ } ] } - ], - "registry_url": "http://nic.ngo", - "whois_server": "whois.nic.ngo", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nhk", @@ -120482,6 +120480,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.nhk", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-04-24", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -120507,7 +120530,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120552,32 +120575,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.nhk", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-04-24", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ni", @@ -120591,6 +120589,21 @@ "tech": "Universidad Nacional del Ingernieria" } }, + "registry_url": "http://www.nic.ni", + "tld_created": "1989-10-13", + "tld_updated": [ + "2026-03-23" + ], + "annotations": { + "country_name_iso": "Nicaragua", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-ext.nic.cr", @@ -120666,22 +120679,7 @@ } ] } - ], - "registry_url": "http://www.nic.ni", - "tld_created": "1989-10-13", - "tld_updated": [ - "2026-03-23" - ], - "annotations": { - "country_name_iso": "Nicaragua", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nico", @@ -120706,6 +120704,31 @@ "date_removed": null } }, + "registry_url": "http://nic.nico", + "whois_server": "whois.nic.nico", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -120731,7 +120754,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120776,32 +120799,7 @@ } ] } - ], - "registry_url": "http://nic.nico", - "whois_server": "whois.nic.nico", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "nike", @@ -120826,6 +120824,28 @@ "date_removed": null } }, + "registry_url": "http://www.nike.com", + "rdap_server": "https://rdap.nic.nike/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.nike", @@ -120851,7 +120871,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -120941,29 +120961,7 @@ } ] } - ], - "registry_url": "http://www.nike.com", - "rdap_server": "https://rdap.nic.nike/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "nikon", @@ -120988,6 +120986,29 @@ "date_removed": null } }, + "registry_url": "http://www.nikon.com", + "whois_server": "whois.nic.nikon", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nikon", @@ -121065,30 +121086,7 @@ } ] } - ], - "registry_url": "http://www.nikon.com", - "whois_server": "whois.nic.nikon", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ninja", @@ -121113,6 +121111,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ninja", @@ -121228,34 +121253,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nissan", @@ -121280,6 +121278,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -121305,7 +121328,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -121350,32 +121373,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "nissay", @@ -121400,6 +121398,29 @@ "date_removed": null } }, + "registry_url": "http://www.nissay.co.jp/english/", + "whois_server": "whois.nic.nissay", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.nissay", @@ -121515,30 +121536,7 @@ } ] } - ], - "registry_url": "http://www.nissay.co.jp/english/", - "whois_server": "whois.nic.nissay", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nl", @@ -121552,6 +121550,28 @@ "tech": "SIDN (Stichting Internet Domeinregistratie Nederland)" } }, + "registry_url": "https://www.sidn.nl/", + "whois_server": "whois.domain-registry.nl", + "rdap_server": "https://rdap.sidn.nl/", + "tld_created": "1986-04-25", + "tld_updated": [ + "2024-06-20" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Netherlands", + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.dns.nl", @@ -121610,29 +121630,7 @@ } ] } - ], - "registry_url": "https://www.sidn.nl/", - "whois_server": "whois.domain-registry.nl", - "rdap_server": "https://rdap.sidn.nl/", - "tld_created": "1986-04-25", - "tld_updated": [ - "2024-06-20" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Netherlands", - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ], - "geographic_scope": "country" - } + ] }, { "tld": "no", @@ -121646,6 +121644,24 @@ "tech": "Norid A/S" } }, + "registry_url": "http://www.norid.no", + "whois_server": "whois.norid.no", + "rdap_server": "https://rdap.norid.no/", + "tld_created": "1987-03-17", + "tld_updated": [ + "2022-01-14" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Norway", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "i.nic.no", @@ -121754,25 +121770,7 @@ } ] } - ], - "registry_url": "http://www.norid.no", - "whois_server": "whois.norid.no", - "rdap_server": "https://rdap.norid.no/", - "tld_created": "1987-03-17", - "tld_updated": [ - "2022-01-14" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Norway", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nokia", @@ -121797,6 +121795,29 @@ "date_removed": null } }, + "registry_url": "http://nic.nokia/", + "whois_server": "whois.nic.nokia", + "rdap_server": "https://rdap.centralnic.com/nokia/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-06-26" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.nokia", @@ -121874,30 +121895,7 @@ } ] } - ], - "registry_url": "http://nic.nokia/", - "whois_server": "whois.nic.nokia", - "rdap_server": "https://rdap.centralnic.com/nokia/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-06-26" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "northwesternmutual", @@ -121952,6 +121950,29 @@ "date_removed": null } }, + "registry_url": "http://www.symantec.com", + "whois_server": "whois.nic.norton", + "rdap_server": "https://rdap.nic.norton", + "tld_created": "2015-09-24", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.norton", @@ -121977,7 +121998,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122015,7 +122036,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122023,7 +122044,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122034,7 +122055,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122042,7 +122063,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122053,7 +122074,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -122061,36 +122082,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.symantec.com", - "whois_server": "whois.nic.norton", - "rdap_server": "https://rdap.nic.norton", - "tld_created": "2015-09-24", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "now", @@ -122115,14 +122113,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.now", + "rdap_server": "https://rdap.nominet.uk/now/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.now", "ipv4": [ { "ip": "213.248.218.73", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -122140,8 +122167,8 @@ "ipv4": [ { "ip": "103.49.82.73", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -122268,36 +122295,7 @@ } ] } - ], - "registry_url": "http://www.nic.now", - "rdap_server": "https://rdap.nominet.uk/now/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "nowruz", @@ -122322,14 +122320,39 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/nowruz/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -122347,8 +122370,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -122475,32 +122498,7 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/nowruz/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "nowtv", @@ -122525,6 +122523,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.nowtv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nowtv", @@ -122602,30 +122623,7 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.nowtv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "np", @@ -122639,15 +122637,30 @@ "tech": "Mercantile Communications Pvt. Ltd." } }, + "registry_url": "http://www.mos.com.np", + "tld_created": "1995-01-25", + "tld_updated": [ + "2025-07-14" + ], + "annotations": { + "country_name_iso": "Nepal", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "np-ns.npix.net.np", "ipv4": [ { "ip": "198.32.126.50", - "asn": 62, - "as_org": "CONE", - "as_country": "US" + "asn": 24474, + "as_org": "ASNPANYCAST Nepal Internet Exchange NP Anycast", + "as_country": "NP" } ], "ipv6": [] @@ -122721,22 +122734,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.mos.com.np", - "tld_created": "1995-01-25", - "tld_updated": [ - "2025-07-14" - ], - "annotations": { - "country_name_iso": "Nepal", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nr", @@ -122750,6 +122748,15 @@ "tech": "Government of the Republic of Nauru" } }, + "registry_url": "http://www.cenpac.net.nr", + "tld_created": "1998-03-30", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Nauru", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns0.cenpac.net.nr", @@ -122813,16 +122820,7 @@ } ] } - ], - "registry_url": "http://www.cenpac.net.nr", - "tld_created": "1998-03-30", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Nauru", - "geographic_scope": "country" - } + ] }, { "tld": "nra", @@ -122847,6 +122845,29 @@ "date_removed": null } }, + "registry_url": "http://contact.nra.org/contact-us.aspx", + "whois_server": "whois.nic.nra", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-12-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.nra", @@ -122924,30 +122945,7 @@ } ] } - ], - "registry_url": "http://contact.nra.org/contact-us.aspx", - "whois_server": "whois.nic.nra", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-12-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nrw", @@ -122972,6 +122970,33 @@ "date_removed": null } }, + "registry_url": "http://mindsandmachines.com", + "whois_server": "whois.nic.nrw", + "rdap_server": "https://rdap.nic.nrw/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2023-06-13" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "UltraDNS" + ], + "as_org_slugs": [ + "knipp-medien", + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -123073,7 +123098,7 @@ "ipv4": [ { "ip": "37.209.194.2", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -123125,34 +123150,7 @@ } ] } - ], - "registry_url": "http://mindsandmachines.com", - "whois_server": "whois.nic.nrw", - "rdap_server": "https://rdap.nic.nrw/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2023-06-13" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "UltraDNS" - ], - "as_org_slugs": [ - "knipp-medien", - "ultradns" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "ntt", @@ -123177,6 +123175,27 @@ "date_removed": null } }, + "registry_url": "https://group.ntt/en/dotntt/", + "whois_server": "whois.nic.ntt", + "rdap_server": "https://rdap.nic.ntt/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-12-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.ntt", @@ -123254,28 +123273,7 @@ } ] } - ], - "registry_url": "https://group.ntt/en/dotntt/", - "whois_server": "whois.nic.ntt", - "rdap_server": "https://rdap.nic.ntt/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-12-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "nu", @@ -123289,6 +123287,24 @@ "tech": "The Internet Infrastructure Foundation" } }, + "registry_url": "https://www.internetstiftelsen.se", + "whois_server": "whois.iis.nu", + "tld_created": "1997-06-20", + "tld_updated": [ + "2025-07-03" + ], + "annotations": { + "country_name_iso": "Niue", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.nu", @@ -123404,25 +123420,7 @@ } ] } - ], - "registry_url": "https://www.internetstiftelsen.se", - "whois_server": "whois.iis.nu", - "tld_created": "1997-06-20", - "tld_updated": [ - "2025-07-03" - ], - "annotations": { - "country_name_iso": "Niue", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "nyc", @@ -123447,6 +123445,31 @@ "date_removed": null } }, + "registry_url": "http://www.mydotnyc.com", + "whois_server": "whois.nic.nyc", + "rdap_server": "https://rdap.nic.nyc/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.nyc", @@ -123472,7 +123495,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -123562,32 +123585,7 @@ } ] } - ], - "registry_url": "http://www.mydotnyc.com", - "whois_server": "whois.nic.nyc", - "rdap_server": "https://rdap.nic.nyc/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "nz", @@ -123601,6 +123599,22 @@ "tech": "InternetNZ" } }, + "registry_url": "http://www.dnc.org.nz/", + "whois_server": "whois.irs.net.nz", + "tld_created": "1987-01-19", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "country_name_iso": "New Zealand", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.dns.net.nz", @@ -123735,23 +123749,7 @@ } ] } - ], - "registry_url": "http://www.dnc.org.nz/", - "whois_server": "whois.irs.net.nz", - "tld_created": "1987-01-19", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "country_name_iso": "New Zealand", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - } + ] }, { "tld": "obi", @@ -123776,6 +123774,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.obi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-03", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.obi", @@ -123853,29 +123873,7 @@ } ] } - ], - "whois_server": "whois.nic.obi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-03", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "observer", @@ -123900,6 +123898,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.nic.observer", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2016-09-15", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -123977,31 +123999,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.nic.observer", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2016-09-15", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "off", @@ -124056,14 +124054,43 @@ "date_removed": null } }, + "registry_url": "http://www.office.com", + "rdap_server": "https://rdap.nominet.uk/office/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2026-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.office", "ipv4": [ { "ip": "213.248.219.136", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -124081,8 +124108,8 @@ "ipv4": [ { "ip": "103.49.83.136", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -124209,36 +124236,7 @@ } ] } - ], - "registry_url": "http://www.office.com", - "rdap_server": "https://rdap.nominet.uk/office/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2026-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "okinawa", @@ -124263,6 +124261,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.okinawa", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -124288,7 +124311,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124333,31 +124356,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.okinawa", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "olayan", @@ -124382,6 +124381,26 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.olayan", + "rdap_server": "https://rdap.nic.olayan/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.olayan", @@ -124407,7 +124426,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124445,7 +124464,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124453,7 +124472,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124464,7 +124483,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124472,7 +124491,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124483,7 +124502,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124491,33 +124510,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.olayan", - "rdap_server": "https://rdap.nic.olayan/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "olayangroup", @@ -124542,6 +124541,26 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.olayangroup", + "rdap_server": "https://rdap.nic.olayangroup/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.olayangroup", @@ -124567,7 +124586,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124605,7 +124624,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124613,7 +124632,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124624,7 +124643,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124632,7 +124651,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124643,7 +124662,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124651,33 +124670,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.olayangroup", - "rdap_server": "https://rdap.nic.olayangroup/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "oldnavy", @@ -124732,6 +124731,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.ollo", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -124809,35 +124836,7 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.ollo", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "om", @@ -124851,6 +124850,22 @@ "tech": "Telecommunications Regulatory Authority (TRA)" } }, + "registry_url": "http://www.registry.om/om/en/?page_id=197", + "whois_server": "whois.registry.om", + "tld_created": "1996-04-11", + "tld_updated": [ + "2017-11-21" + ], + "annotations": { + "country_name_iso": "Oman", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "cctld.alpha.aridns.net.au", @@ -124876,7 +124891,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -124967,22 +124982,6 @@ ] } ], - "registry_url": "http://www.registry.om/om/en/?page_id=197", - "whois_server": "whois.registry.om", - "tld_created": "1996-04-11", - "tld_updated": [ - "2017-11-21" - ], - "annotations": { - "country_name_iso": "Oman", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgb9awbf" ] @@ -125010,14 +125009,38 @@ "date_removed": null } }, + "registry_url": "http://www.swatchgroup.com/", + "rdap_server": "https://rdap.nominet.uk/omega/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.omega", "ipv4": [ { "ip": "213.248.219.140", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -125035,8 +125058,8 @@ "ipv4": [ { "ip": "103.49.83.140", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -125163,31 +125186,7 @@ } ] } - ], - "registry_url": "http://www.swatchgroup.com/", - "rdap_server": "https://rdap.nominet.uk/omega/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "one", @@ -125212,6 +125211,26 @@ "date_removed": null } }, + "registry_url": "https://get.one/", + "whois_server": "whois.nic.one", + "rdap_server": "https://rdap.nic.one/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2026-05-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.one", @@ -125237,7 +125256,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125275,7 +125294,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125283,7 +125302,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125294,7 +125313,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125302,7 +125321,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125313,7 +125332,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -125321,33 +125340,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://get.one/", - "whois_server": "whois.nic.one", - "rdap_server": "https://rdap.nic.one/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2026-05-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ong", @@ -125372,6 +125371,35 @@ "date_removed": null } }, + "registry_url": "http://nic.ong", + "whois_server": "whois.nic.ong", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ong", @@ -125487,36 +125515,7 @@ } ] } - ], - "registry_url": "http://nic.ong", - "whois_server": "whois.nic.ong", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "onl", @@ -125541,6 +125540,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-03-04" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.onl", @@ -125618,30 +125640,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-03-04" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "online", @@ -125666,6 +125665,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.online", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -125743,35 +125770,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.online", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "onyourside", @@ -125826,6 +125825,28 @@ "date_removed": null } }, + "registry_url": "http://www.infibeam.com", + "whois_server": "whois.nic.ooo", + "rdap_server": "https://rdap.centralnic.com/ooo", + "tld_created": "2014-07-31", + "tld_updated": [ + "2024-04-30" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.ooo", @@ -125903,29 +125924,7 @@ } ] } - ], - "registry_url": "http://www.infibeam.com", - "whois_server": "whois.nic.ooo", - "rdap_server": "https://rdap.centralnic.com/ooo", - "tld_created": "2014-07-31", - "tld_updated": [ - "2024-04-30" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "open", @@ -125950,6 +125949,29 @@ "date_removed": null } }, + "registry_url": "https://www.americanexpress.com", + "whois_server": "whois.nic.open", + "rdap_server": "https://rdap.nic.open/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.open", @@ -125975,7 +125997,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -126065,30 +126087,7 @@ } ] } - ], - "registry_url": "https://www.americanexpress.com", - "whois_server": "whois.nic.open", - "rdap_server": "https://rdap.nic.open/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "oracle", @@ -126113,6 +126112,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.oracle", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-02-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.oracle", @@ -126190,29 +126211,7 @@ } ] } - ], - "whois_server": "whois.nic.oracle", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-02-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "orange", @@ -126237,6 +126236,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.orange", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-18", + "tld_updated": [ + "2024-03-31" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.orange", @@ -126352,29 +126373,7 @@ } ] } - ], - "whois_server": "whois.nic.orange", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-18", - "tld_updated": [ - "2024-03-31" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "org", @@ -126399,6 +126398,34 @@ "date_removed": null } }, + "registry_url": "http://publicinterestregistry.org", + "whois_server": "whois.publicinterestregistry.org", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "1985-01-01", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.org.afilias-nst.info", @@ -126514,35 +126541,7 @@ } ] } - ], - "registry_url": "http://publicinterestregistry.org", - "whois_server": "whois.publicinterestregistry.org", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "1985-01-01", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "organic", @@ -126567,6 +126566,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.organic", @@ -126644,34 +126670,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "orientexpress", @@ -126725,6 +126724,29 @@ "date_removed": null } }, + "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", + "whois_server": "whois.nic.origins", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.origins", @@ -126802,30 +126824,7 @@ } ] } - ], - "registry_url": "http://elcompanies.com/Pages/Homepage.aspx", - "whois_server": "whois.nic.origins", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "osaka", @@ -126850,6 +126849,30 @@ "date_removed": null } }, + "registry_url": "http://domain.osaka/", + "whois_server": "whois.nic.osaka", + "rdap_server": "https://rdap.nic.osaka/", + "tld_created": "2014-12-04", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.osaka", @@ -126875,7 +126898,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -126965,31 +126988,7 @@ } ] } - ], - "registry_url": "http://domain.osaka/", - "whois_server": "whois.nic.osaka", - "rdap_server": "https://rdap.nic.osaka/", - "tld_created": "2014-12-04", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "otsuka", @@ -127014,6 +127013,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.otsuka", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -127039,7 +127063,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -127084,32 +127108,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.otsuka", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ott", @@ -127134,6 +127133,34 @@ "date_removed": null } }, + "registry_url": "http://www.dish.com", + "whois_server": "whois.nic.ott", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -127211,35 +127238,7 @@ } ] } - ], - "registry_url": "http://www.dish.com", - "whois_server": "whois.nic.ott", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "ovh", @@ -127264,6 +127263,31 @@ "date_removed": null } }, + "registry_url": "https://www.ovh.com", + "whois_server": "whois.nic.ovh", + "rdap_server": "https://rdap.nic.ovh", + "tld_created": "2014-05-01", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -127322,32 +127346,7 @@ } ] } - ], - "registry_url": "https://www.ovh.com", - "whois_server": "whois.nic.ovh", - "rdap_server": "https://rdap.nic.ovh", - "tld_created": "2014-05-01", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "pa", @@ -127361,6 +127360,21 @@ "tech": "Universidad Tecnologica de Panama" } }, + "registry_url": "http://www.nic.pa/", + "tld_created": "1994-05-25", + "tld_updated": [ + "2024-11-25" + ], + "annotations": { + "country_name_iso": "Panama", + "as_org_aliases": [ + "LACTLD" + ], + "as_org_slugs": [ + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -127505,22 +127519,7 @@ } ] } - ], - "registry_url": "http://www.nic.pa/", - "tld_created": "1994-05-25", - "tld_updated": [ - "2024-11-25" - ], - "annotations": { - "country_name_iso": "Panama", - "as_org_aliases": [ - "LACTLD" - ], - "as_org_slugs": [ - "lactld" - ], - "geographic_scope": "country" - } + ] }, { "tld": "page", @@ -127545,6 +127544,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -127641,34 +127667,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "pamperedchef", @@ -127723,6 +127722,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -127748,7 +127770,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -127793,30 +127815,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "panerai", @@ -127871,6 +127870,34 @@ "date_removed": null } }, + "registry_url": "http://mondomaine.paris.fr/", + "whois_server": "whois.nic.paris", + "rdap_server": "https://rdap.nic.paris", + "tld_created": "2014-03-27", + "tld_updated": [ + "2025-04-29" + ], + "annotations": { + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -127929,35 +127956,7 @@ } ] } - ], - "registry_url": "http://mondomaine.paris.fr/", - "whois_server": "whois.nic.paris", - "rdap_server": "https://rdap.nic.paris", - "tld_created": "2014-03-27", - "tld_updated": [ - "2025-04-29" - ], - "annotations": { - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "city" - } + ] }, { "tld": "pars", @@ -127982,14 +127981,40 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/pars/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -128007,8 +128032,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -128135,33 +128160,7 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/pars/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "partners", @@ -128186,6 +128185,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.partners", @@ -128301,10 +128327,34 @@ } ] } - ], + ] + }, + { + "tld": "parts", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1577-85976", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-02-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", + "tld_created": "2014-02-06", "tld_updated": [ "2025-10-07" ], @@ -128328,30 +128378,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "parts", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1577-85976", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-02-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -128468,34 +128494,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "party", @@ -128520,6 +128519,32 @@ "date_removed": null } }, + "registry_url": "http://nic.party", + "whois_server": "whois.nic.party", + "rdap_server": "https://rdap.nic.party/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.party", @@ -128545,7 +128570,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -128635,33 +128660,7 @@ } ] } - ], - "registry_url": "http://nic.party", - "whois_server": "whois.nic.party", - "rdap_server": "https://rdap.nic.party/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "passagens", @@ -128715,14 +128714,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pay", + "rdap_server": "https://rdap.nominet.uk/pay/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pay", "ipv4": [ { "ip": "213.248.218.74", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -128740,8 +128768,8 @@ "ipv4": [ { "ip": "103.49.82.74", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -128868,36 +128896,7 @@ } ] } - ], - "registry_url": "http://www.nic.pay", - "rdap_server": "https://rdap.nominet.uk/pay/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "pccw", @@ -128922,6 +128921,29 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.pccw", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pccw", @@ -128999,30 +129021,7 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.pccw", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pe", @@ -129036,6 +129035,24 @@ "tech": "Red Cientifica Peruana" } }, + "registry_url": "http://www.nic.pe", + "whois_server": "kero.yachay.pe", + "tld_created": "1991-11-25", + "tld_updated": [ + "2026-03-25" + ], + "annotations": { + "country_name_iso": "Peru", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -129106,25 +129123,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.pe", - "whois_server": "kero.yachay.pe", - "tld_created": "1991-11-25", - "tld_updated": [ - "2026-03-25" - ], - "annotations": { - "country_name_iso": "Peru", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pet", @@ -129149,84 +129148,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a0.nic.pet", - "ipv4": [ - { - "ip": "65.22.16.17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:12::17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "a2.nic.pet", - "ipv4": [ - { - "ip": "65.22.19.17", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:15::17", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "b0.nic.pet", - "ipv4": [ - { - "ip": "65.22.17.17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:13::17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "c0.nic.pet", - "ipv4": [ - { - "ip": "65.22.18.17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:14::17", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - } - ], "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2015-07-16", @@ -129253,7 +129174,85 @@ "as_org_slugs": [ "identity-digital" ] - } + }, + "nameservers": [ + { + "hostname": "a0.nic.pet", + "ipv4": [ + { + "ip": "65.22.16.17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:12::17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "a2.nic.pet", + "ipv4": [ + { + "ip": "65.22.19.17", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:15::17", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "b0.nic.pet", + "ipv4": [ + { + "ip": "65.22.17.17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:13::17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "c0.nic.pet", + "ipv4": [ + { + "ip": "65.22.18.17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:14::17", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + } + ] }, { "tld": "pf", @@ -129267,6 +129266,15 @@ "tech": "ONATI SA" } }, + "whois_server": "whois.registry.pf", + "tld_created": "1996-03-19", + "tld_updated": [ + "2025-10-03" + ], + "annotations": { + "country_name_iso": "French Polynesia", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns03.pf", @@ -129311,16 +129319,7 @@ ], "ipv6": [] } - ], - "whois_server": "whois.registry.pf", - "tld_created": "1996-03-19", - "tld_updated": [ - "2025-10-03" - ], - "annotations": { - "country_name_iso": "French Polynesia", - "geographic_scope": "country" - } + ] }, { "tld": "pfizer", @@ -129345,6 +129344,28 @@ "date_removed": null } }, + "registry_url": "http://www.pfizer.com", + "rdap_server": "https://rdap.nic.pfizer/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.pfizer", @@ -129370,7 +129391,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -129460,29 +129481,7 @@ } ] } - ], - "registry_url": "http://www.pfizer.com", - "rdap_server": "https://rdap.nic.pfizer/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "pg", @@ -129496,6 +129495,23 @@ "tech": "The Papua New Guinea University of Technology" } }, + "whois_server": "whois.nic.pg", + "rdap_server": "https://rdap.nic.pg", + "tld_created": "1991-09-26", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Papua New Guinea", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.pch.pg", @@ -129559,24 +129575,7 @@ ], "ipv6": [] } - ], - "whois_server": "whois.nic.pg", - "rdap_server": "https://rdap.nic.pg", - "tld_created": "1991-09-26", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Papua New Guinea", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ph", @@ -129590,6 +129589,23 @@ "tech": "DotPH" } }, + "registry_url": "http://dot.ph", + "tld_created": "1990-09-14", + "tld_updated": [ + "2024-01-30" + ], + "annotations": { + "country_name_iso": "Philippines", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "1.ns.ph", @@ -129667,24 +129683,7 @@ } ] } - ], - "registry_url": "http://dot.ph", - "tld_created": "1990-09-14", - "tld_updated": [ - "2024-01-30" - ], - "annotations": { - "country_name_iso": "Philippines", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pharmacy", @@ -129709,14 +129708,40 @@ "date_removed": null } }, + "registry_url": "https://nabp.pharmacy/programs/accreditations-inspections/dotpharmacy/", + "rdap_server": "https://rdap.nominet.uk/pharmacy/", + "tld_created": "2014-08-28", + "tld_updated": [ + "2025-05-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pharmacy", "ipv4": [ { "ip": "213.248.219.45", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -129734,8 +129759,8 @@ "ipv4": [ { "ip": "103.49.83.45", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -129862,33 +129887,7 @@ } ] } - ], - "registry_url": "https://nabp.pharmacy/programs/accreditations-inspections/dotpharmacy/", - "rdap_server": "https://rdap.nominet.uk/pharmacy/", - "tld_created": "2014-08-28", - "tld_updated": [ - "2025-05-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "phd", @@ -129913,6 +129912,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-15", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -130009,34 +130035,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-15", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "philips", @@ -130061,6 +130060,27 @@ "date_removed": null } }, + "registry_url": "http://nic.philips", + "whois_server": "whois.nic.philips", + "rdap_server": "https://rdap.nic.philips/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.philips", @@ -130086,7 +130106,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130124,7 +130144,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130132,7 +130152,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130143,7 +130163,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130151,7 +130171,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130162,7 +130182,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130170,34 +130190,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.philips", - "whois_server": "whois.nic.philips", - "rdap_server": "https://rdap.nic.philips/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "phone", @@ -130222,6 +130221,34 @@ "date_removed": null } }, + "registry_url": "https://www.dish.com/", + "whois_server": "whois.nic.phone", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-12-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -130299,35 +130326,7 @@ } ] } - ], - "registry_url": "https://www.dish.com/", - "whois_server": "whois.nic.phone", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-12-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "photo", @@ -130352,6 +130351,34 @@ "date_removed": null } }, + "registry_url": "http://nic.photo/", + "whois_server": "whois.nic.photo", + "rdap_server": "https://rdap.nic.photo/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.photo", @@ -130377,7 +130404,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130415,7 +130442,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130423,7 +130450,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130434,7 +130461,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130442,7 +130469,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130453,7 +130480,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130461,41 +130488,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.photo/", - "whois_server": "whois.nic.photo", - "rdap_server": "https://rdap.nic.photo/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "photography", @@ -130520,6 +130519,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.photography", @@ -130635,10 +130661,34 @@ } ] } - ], + ] + }, + { + "tld": "photos", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1580-67148", + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-17", + "date_delegated": "2013-12-17", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", + "tld_created": "2013-12-12", "tld_updated": [ "2025-10-07" ], @@ -130662,30 +130712,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "photos", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1580-67148", - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-17", - "date_delegated": "2013-12-17", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -130802,34 +130828,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "physio", @@ -130854,6 +130853,26 @@ "date_removed": null } }, + "registry_url": "http://www.registry.physio", + "whois_server": "whois.nic.physio", + "rdap_server": "https://rdap.nic.physio/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2023-12-05" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.physio", @@ -130879,7 +130898,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130917,7 +130936,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130925,7 +130944,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130936,7 +130955,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130944,7 +130963,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130955,7 +130974,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -130963,33 +130982,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.registry.physio", - "whois_server": "whois.nic.physio", - "rdap_server": "https://rdap.nic.physio/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2023-12-05" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "piaget", @@ -131044,6 +131043,34 @@ "date_removed": null } }, + "registry_url": "https://nic.pics", + "whois_server": "whois.nic.pics", + "rdap_server": "https://rdap.centralnic.com/pics/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.pics", @@ -131121,35 +131148,7 @@ } ] } - ], - "registry_url": "https://nic.pics", - "whois_server": "whois.nic.pics", - "rdap_server": "https://rdap.centralnic.com/pics/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "pictet", @@ -131174,6 +131173,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.pictet", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2025-04-29" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pictet", @@ -131289,29 +131310,7 @@ } ] } - ], - "whois_server": "whois.nic.pictet", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2025-04-29" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pictures", @@ -131336,6 +131335,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pictures", @@ -131451,34 +131477,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pid", @@ -131503,6 +131502,30 @@ "date_removed": null } }, + "registry_url": "http://www.topspectrum.com/", + "whois_server": "whois.registry.click", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-18" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -131580,31 +131603,7 @@ } ] } - ], - "registry_url": "http://www.topspectrum.com/", - "whois_server": "whois.registry.click", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-18" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "pin", @@ -131629,14 +131628,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pin", + "rdap_server": "https://rdap.nominet.uk/pin/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pin", "ipv4": [ { "ip": "213.248.218.75", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -131654,8 +131682,8 @@ "ipv4": [ { "ip": "103.49.82.75", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -131782,36 +131810,7 @@ } ] } - ], - "registry_url": "http://www.nic.pin", - "rdap_server": "https://rdap.nominet.uk/pin/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "ping", @@ -131836,6 +131835,29 @@ "date_removed": null } }, + "registry_url": "http://www.ping.com", + "whois_server": "whois.nic.ping", + "rdap_server": "https://rdap.nic.ping/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.ping", @@ -131861,7 +131883,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -131951,30 +131973,7 @@ } ] } - ], - "registry_url": "http://www.ping.com", - "whois_server": "whois.nic.ping", - "rdap_server": "https://rdap.nic.ping/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "pink", @@ -131999,6 +131998,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pink", @@ -132095,34 +132121,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pioneer", @@ -132147,14 +132146,38 @@ "date_removed": null } }, + "registry_url": "http://www.nic.pioneer/", + "rdap_server": "https://rdap.nominet.uk/pioneer/", + "tld_created": "2016-05-26", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.pioneer", "ipv4": [ { "ip": "213.248.219.126", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -132172,8 +132195,8 @@ "ipv4": [ { "ip": "103.49.83.126", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -132300,31 +132323,7 @@ } ] } - ], - "registry_url": "http://www.nic.pioneer/", - "rdap_server": "https://rdap.nominet.uk/pioneer/", - "tld_created": "2016-05-26", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "pizza", @@ -132349,6 +132348,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-08-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pizza", @@ -132464,34 +132490,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-08-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pk", @@ -132505,6 +132504,22 @@ "tech": "PKNIC" } }, + "registry_url": "http://www.pknic.net.pk/", + "whois_server": "whois.pknic.net.pk", + "tld_created": "1992-06-03", + "tld_updated": [ + "2022-07-06" + ], + "annotations": { + "country_name_iso": "Pakistan", + "as_org_aliases": [ + "CIRA" + ], + "as_org_slugs": [ + "cira" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "root-c1.pknic.pk", @@ -132569,22 +132584,6 @@ "ipv6": [] } ], - "registry_url": "http://www.pknic.net.pk/", - "whois_server": "whois.pknic.net.pk", - "tld_created": "1992-06-03", - "tld_updated": [ - "2022-07-06" - ], - "annotations": { - "country_name_iso": "Pakistan", - "as_org_aliases": [ - "CIRA" - ], - "as_org_slugs": [ - "cira" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbai9azgqp6j" ] @@ -132601,6 +132600,28 @@ "tech": "Research and Academic Computer Network" } }, + "registry_url": "https://www.dns.pl/en/", + "whois_server": "whois.dns.pl", + "rdap_server": "https://rdap.dns.pl", + "tld_created": "1990-07-30", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Poland", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a-dns.pl", @@ -132716,29 +132737,7 @@ } ] } - ], - "registry_url": "https://www.dns.pl/en/", - "whois_server": "whois.dns.pl", - "rdap_server": "https://rdap.dns.pl", - "tld_created": "1990-07-30", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Poland", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "place", @@ -132763,6 +132762,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.place", @@ -132878,34 +132904,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "play", @@ -132930,6 +132929,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -133026,34 +133052,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "playstation", @@ -133078,6 +133077,31 @@ "date_removed": null } }, + "registry_url": "http://www.playstation.com", + "whois_server": "whois.nic.playstation", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_sponsor_alias": "Sony", + "iana_sponsor_slug": "sony", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -133103,7 +133127,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -133148,32 +133172,7 @@ } ] } - ], - "registry_url": "http://www.playstation.com", - "whois_server": "whois.nic.playstation", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_sponsor_alias": "Sony", - "iana_sponsor_slug": "sony", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "plumbing", @@ -133198,6 +133197,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.plumbing", @@ -133313,10 +133339,34 @@ } ] } - ], + ] + }, + { + "tld": "plus", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1589-56456", + "registry_operator_country_code": null, + "date_contract_signed": "2015-02-05", + "date_delegated": "2015-03-24", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", + "tld_created": "2015-03-12", "tld_updated": [ "2025-10-07" ], @@ -133340,30 +133390,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "plus", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1589-56456", - "registry_operator_country_code": null, - "date_contract_signed": "2015-02-05", - "date_delegated": "2015-03-24", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -133480,34 +133506,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pm", @@ -133521,6 +133520,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.pm", + "whois_server": "whois.nic.pm", + "rdap_server": "https://rdap.nic.pm/", + "tld_created": "1997-08-20", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Saint Pierre and Miquelon", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -133579,33 +133604,7 @@ } ] } - ], - "registry_url": "http://www.nic.pm", - "whois_server": "whois.nic.pm", - "rdap_server": "https://rdap.nic.pm/", - "tld_created": "1997-08-20", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Saint Pierre and Miquelon", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pn", @@ -133619,14 +133618,37 @@ "tech": "Nominet" } }, + "registry_url": "https://nic.pn", + "rdap_server": "https://rdap.nominet.uk/pn/", + "tld_created": "1997-07-10", + "tld_updated": [ + "2024-02-15" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "country_name_iso": "Pitcairn", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.pn", "ipv4": [ { "ip": "213.248.219.128", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -133644,8 +133666,8 @@ "ipv4": [ { "ip": "103.49.83.128", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -133772,30 +133794,7 @@ } ] } - ], - "registry_url": "https://nic.pn", - "rdap_server": "https://rdap.nominet.uk/pn/", - "tld_created": "1997-07-10", - "tld_updated": [ - "2024-02-15" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "country_name_iso": "Pitcairn", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pnc", @@ -133820,6 +133819,29 @@ "date_removed": null } }, + "registry_url": "http://www.pnc.com", + "whois_server": "whois.nic.pnc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pnc", @@ -133897,30 +133919,7 @@ } ] } - ], - "registry_url": "http://www.pnc.com", - "whois_server": "whois.nic.pnc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pohl", @@ -133945,6 +133944,28 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.pohl", + "rdap_server": "https://rdap.centralnic.com/pohl", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.pohl", @@ -134022,29 +134043,7 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.pohl", - "rdap_server": "https://rdap.centralnic.com/pohl", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "poker", @@ -134069,6 +134068,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.poker", @@ -134146,34 +134172,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "politie", @@ -134198,6 +134197,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.politie", + "rdap_server": "https://rdap.nic.politie/", + "tld_created": "2016-06-16", + "tld_updated": [ + "2023-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CIRA", + "RcodeZero", + "SIDN" + ], + "as_org_slugs": [ + "cira", + "rcodezero", + "sidn" + ] + }, "nameservers": [ { "hostname": "ns1.dns.politie", @@ -134256,30 +134278,7 @@ } ] } - ], - "whois_server": "whois.nic.politie", - "rdap_server": "https://rdap.nic.politie/", - "tld_created": "2016-06-16", - "tld_updated": [ - "2023-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CIRA", - "RcodeZero", - "SIDN" - ], - "as_org_slugs": [ - "cira", - "rcodezero", - "sidn" - ] - } + ] }, { "tld": "porn", @@ -134304,6 +134303,34 @@ "date_removed": null } }, + "registry_url": "https://nic.porn", + "whois_server": "whois.nic.porn", + "rdap_server": "https://rdap.nic.porn/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.porn", @@ -134329,7 +134356,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134367,7 +134394,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134375,7 +134402,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134386,7 +134413,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134394,7 +134421,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134405,7 +134432,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134413,41 +134440,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://nic.porn", - "whois_server": "whois.nic.porn", - "rdap_server": "https://rdap.nic.porn/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "post", @@ -134472,6 +134471,27 @@ "date_removed": null } }, + "registry_url": "http://www.upu.int", + "whois_server": "whois.nic.post", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2012-08-07", + "tld_updated": [ + "2025-05-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.post", @@ -134587,28 +134607,7 @@ } ] } - ], - "registry_url": "http://www.upu.int", - "whois_server": "whois.nic.post", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2012-08-07", - "tld_updated": [ - "2025-05-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pr", @@ -134622,6 +134621,28 @@ "tech": "Gauss Research Laboratory Inc." } }, + "registry_url": "http://www.nic.pr", + "whois_server": "whois.afilias-srs.net", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1989-08-27", + "tld_updated": [ + "2022-07-20" + ], + "annotations": { + "rdap_source": "supplemental", + "country_name_iso": "Puerto Rico", + "as_org_aliases": [ + "DENIC", + "Identity Digital", + "LACTLD" + ], + "as_org_slugs": [ + "denic", + "identity-digital", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -134775,29 +134796,7 @@ } ] } - ], - "registry_url": "http://www.nic.pr", - "whois_server": "whois.afilias-srs.net", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1989-08-27", - "tld_updated": [ - "2022-07-20" - ], - "annotations": { - "rdap_source": "supplemental", - "country_name_iso": "Puerto Rico", - "as_org_aliases": [ - "DENIC", - "Identity Digital", - "LACTLD" - ], - "as_org_slugs": [ - "denic", - "identity-digital", - "lactld" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pramerica", @@ -134852,6 +134851,28 @@ "date_removed": null } }, + "registry_url": "http://www.praxi.com", + "rdap_server": "https://rdap.nic.praxi/", + "tld_created": "2014-03-27", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.praxi", @@ -134877,7 +134898,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -134967,29 +134988,7 @@ } ] } - ], - "registry_url": "http://www.praxi.com", - "rdap_server": "https://rdap.nic.praxi/", - "tld_created": "2014-03-27", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "press", @@ -135014,6 +135013,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.press", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -135091,35 +135118,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.press", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "prime", @@ -135144,14 +135143,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.prime", + "rdap_server": "https://rdap.nominet.uk/prime/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.prime", "ipv4": [ { "ip": "213.248.218.51", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -135169,8 +135198,8 @@ "ipv4": [ { "ip": "103.49.82.51", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -135297,37 +135326,7 @@ } ] } - ], - "registry_url": "http://www.nic.prime", - "rdap_server": "https://rdap.nominet.uk/prime/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "pro", @@ -135352,6 +135351,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2002-05-08", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.pro.afilias-nst.info", @@ -135467,34 +135493,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2002-05-08", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "prod", @@ -135519,6 +135518,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -135615,34 +135641,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "productions", @@ -135667,6 +135666,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.productions", @@ -135782,34 +135808,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "prof", @@ -135834,6 +135833,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-09-04", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -135930,34 +135956,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-09-04", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "progressive", @@ -135982,6 +135981,29 @@ "date_removed": null } }, + "registry_url": "http://www.progressive.com", + "whois_server": "whois.nic.progressive", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-19", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.progressive", @@ -136059,30 +136081,7 @@ } ] } - ], - "registry_url": "http://www.progressive.com", - "whois_server": "whois.nic.progressive", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-19", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "promo", @@ -136107,6 +136106,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-18", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.promo", @@ -136184,12 +136210,36 @@ } ] } - ], + ] + }, + { + "tld": "properties", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1588-73251", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-02-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-18", + "tld_created": "2014-01-30", "tld_updated": [ - "2025-09-04" + "2025-10-07" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -136211,30 +136261,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "properties", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1588-73251", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-02-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -136351,34 +136377,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "property", @@ -136403,6 +136402,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -136480,31 +136503,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "protection", @@ -136529,6 +136528,34 @@ "date_removed": null } }, + "registry_url": "https://nic.protection/", + "whois_server": "whois.nic.protection", + "rdap_server": "https://rdap.centralnic.com/protection", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.protection", @@ -136606,35 +136633,7 @@ } ] } - ], - "registry_url": "https://nic.protection/", - "whois_server": "whois.nic.protection", - "rdap_server": "https://rdap.centralnic.com/protection", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "pru", @@ -136659,6 +136658,28 @@ "date_removed": null } }, + "registry_url": "https://www.prudential.com", + "rdap_server": "https://rdap.nic.pru/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.pru", @@ -136684,7 +136705,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -136774,29 +136795,7 @@ } ] } - ], - "registry_url": "https://www.prudential.com", - "rdap_server": "https://rdap.nic.pru/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "prudential", @@ -136821,6 +136820,28 @@ "date_removed": null } }, + "registry_url": "https://www.prudential.com", + "rdap_server": "https://rdap.nic.prudential/", + "tld_created": "2016-07-14", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.prudential", @@ -136846,7 +136867,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -136936,29 +136957,7 @@ } ] } - ], - "registry_url": "https://www.prudential.com", - "rdap_server": "https://rdap.nic.prudential/", - "tld_created": "2016-07-14", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ps", @@ -136972,6 +136971,23 @@ "tech": "Palestinian National Internet Naming Authority PNINA" } }, + "registry_url": "http://www.nic.ps", + "tld_created": "2000-03-22", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Palestine, State of", + "as_org_aliases": [ + "Hetzner", + "Packet Clearing House" + ], + "as_org_slugs": [ + "hetzner", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bilal.pnina.ps", @@ -137048,9 +137064,9 @@ "ipv6": [ { "ip": "2001:67c:e0::105", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] }, @@ -137074,23 +137090,6 @@ ] } ], - "registry_url": "http://www.nic.ps", - "tld_created": "2000-03-22", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Palestine, State of", - "as_org_aliases": [ - "Hetzner", - "Packet Clearing House" - ], - "as_org_slugs": [ - "hetzner", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--ygbi2ammx" ] @@ -137107,6 +137106,26 @@ "tech": "Associação DNS.PT" } }, + "registry_url": "http://www.dns.pt/", + "whois_server": "whois.dns.pt", + "tld_created": "1988-06-30", + "tld_updated": [ + "2023-08-02" + ], + "annotations": { + "country_name_iso": "Portugal", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.pt", @@ -137279,27 +137298,7 @@ } ] } - ], - "registry_url": "http://www.dns.pt/", - "whois_server": "whois.dns.pt", - "tld_created": "1988-06-30", - "tld_updated": [ - "2023-08-02" - ], - "annotations": { - "country_name_iso": "Portugal", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pub", @@ -137324,6 +137323,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.pub", @@ -137439,34 +137465,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "pw", @@ -137480,6 +137479,26 @@ "tech": "Radix Technologies Inc SEZC" } }, + "registry_url": "http://www.registry.pw", + "whois_server": "whois.nic.pw", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "1997-06-12", + "tld_updated": [ + "2026-03-31" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Palau", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -137557,27 +137576,7 @@ } ] } - ], - "registry_url": "http://www.registry.pw", - "whois_server": "whois.nic.pw", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "1997-06-12", - "tld_updated": [ - "2026-03-31" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Palau", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "pwc", @@ -137602,6 +137601,29 @@ "date_removed": null } }, + "registry_url": "http://pwc.com", + "whois_server": "whois.nic.pwc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.pwc", @@ -137679,30 +137701,7 @@ } ] } - ], - "registry_url": "http://pwc.com", - "whois_server": "whois.nic.pwc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "py", @@ -137716,6 +137715,23 @@ "tech": "Centro Nacional de Computación (CNC-UNA)" } }, + "registry_url": "http://www.nic.py", + "tld_created": "1991-09-09", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "country_name_iso": "Paraguay", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.py", @@ -137805,24 +137821,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.py", - "tld_created": "1991-09-09", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "country_name_iso": "Paraguay", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "qa", @@ -137836,6 +137835,24 @@ "tech": "Communications Regulatory Authority" } }, + "registry_url": "https://www.cra.gov.qa/", + "whois_server": "whois.registry.qa", + "tld_created": "1996-06-12", + "tld_updated": [ + "2022-02-07" + ], + "annotations": { + "country_name_iso": "Qatar", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.registry.qa", @@ -137921,7 +137938,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -137974,24 +137991,6 @@ ] } ], - "registry_url": "https://www.cra.gov.qa/", - "whois_server": "whois.registry.qa", - "tld_created": "1996-06-12", - "tld_updated": [ - "2022-02-07" - ], - "annotations": { - "country_name_iso": "Qatar", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - }, "idn": [ "xn--wgbl6a" ] @@ -138019,6 +138018,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.qpon", + "whois_server": "whois.nic.qpon", + "rdap_server": "https://rdap.centralnic.com/qpon/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.qpon", @@ -138096,29 +138117,7 @@ } ] } - ], - "registry_url": "http://www.nic.qpon", - "whois_server": "whois.nic.qpon", - "rdap_server": "https://rdap.centralnic.com/qpon/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "quebec", @@ -138143,6 +138142,28 @@ "date_removed": null } }, + "registry_url": "http://www.registre.quebec", + "whois_server": "whois.nic.quebec", + "rdap_server": "https://rdap.nic.quebec", + "tld_created": "2014-03-13", + "tld_updated": [ + "2025-09-19" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -138220,29 +138241,7 @@ } ] } - ], - "registry_url": "http://www.registre.quebec", - "whois_server": "whois.nic.quebec", - "rdap_server": "https://rdap.nic.quebec", - "tld_created": "2014-03-13", - "tld_updated": [ - "2025-09-19" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "quest", @@ -138267,6 +138266,34 @@ "date_removed": null } }, + "registry_url": "https://nic.quest/", + "whois_server": "whois.nic.quest", + "rdap_server": "https://rdap.centralnic.com/quest/", + "tld_created": "2015-08-06", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a-cnic.nic.quest", @@ -138344,35 +138371,7 @@ } ] } - ], - "registry_url": "https://nic.quest/", - "whois_server": "whois.nic.quest", - "rdap_server": "https://rdap.centralnic.com/quest/", - "tld_created": "2015-08-06", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "qvc", @@ -138427,6 +138426,32 @@ "date_removed": null } }, + "registry_url": "http://nic.racing", + "whois_server": "whois.nic.racing", + "rdap_server": "https://rdap.nic.racing/", + "tld_created": "2015-03-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.racing", @@ -138452,7 +138477,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -138542,33 +138567,7 @@ } ] } - ], - "registry_url": "http://nic.racing", - "whois_server": "whois.nic.racing", - "rdap_server": "https://rdap.nic.racing/", - "tld_created": "2015-03-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "radio", @@ -138593,6 +138592,27 @@ "date_removed": null } }, + "registry_url": "https://www.nic.radio/", + "whois_server": "whois.nic.radio", + "rdap_server": "https://rdap.nic.radio/", + "tld_created": "2016-09-22", + "tld_updated": [ + "2026-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -138670,28 +138690,7 @@ } ] } - ], - "registry_url": "https://www.nic.radio/", - "whois_server": "whois.nic.radio", - "rdap_server": "https://rdap.nic.radio/", - "tld_created": "2016-09-22", - "tld_updated": [ - "2026-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "raid", @@ -138735,6 +138734,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.re", + "whois_server": "whois.nic.re", + "rdap_server": "https://rdap.nic.re/", + "tld_created": "1997-04-07", + "tld_updated": [ + "2026-05-10" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Réunion", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -138793,33 +138818,7 @@ } ] } - ], - "registry_url": "http://www.nic.re", - "whois_server": "whois.nic.re", - "rdap_server": "https://rdap.nic.re/", - "tld_created": "1997-04-07", - "tld_updated": [ - "2026-05-10" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Réunion", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "read", @@ -138844,14 +138843,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.read", + "rdap_server": "https://rdap.nominet.uk/read/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.read", "ipv4": [ { "ip": "213.248.218.76", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -138869,8 +138897,8 @@ "ipv4": [ { "ip": "103.49.82.76", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -138997,36 +139025,7 @@ } ] } - ], - "registry_url": "http://www.nic.read", - "rdap_server": "https://rdap.nominet.uk/read/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "realestate", @@ -139051,14 +139050,43 @@ "date_removed": null } }, + "registry_url": "https://www.get.realtor/", + "rdap_server": "https://rdap.nominet.uk/realestate/", + "tld_created": "2016-04-28", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "Second Genistry", + "iana_sponsor_slug": "second-genistry", + "iana_admin_alias": "Second Genistry", + "iana_admin_slug": "second-genistry", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Second Genistry", + "icann_registry_operator_slug": "second-genistry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.realestate", "ipv4": [ { "ip": "213.248.219.123", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -139076,8 +139104,8 @@ "ipv4": [ { "ip": "103.49.83.123", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -139204,10 +139232,34 @@ } ] } - ], - "registry_url": "https://www.get.realtor/", - "rdap_server": "https://rdap.nominet.uk/realestate/", - "tld_created": "2016-04-28", + ] + }, + { + "tld": "realtor", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Real Estate Domains LLC", + "admin": "Real Estate Domains LLC", + "tech": "Nominet" + }, + "icann": { + "registry_operator": "Real Estate Domains LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-907-41079", + "registry_operator_country_code": null, + "date_contract_signed": "2014-05-29", + "date_delegated": "2014-07-30", + "contract_terminated": false, + "date_removed": null + } + }, + "registry_url": "https://www.get.realtor", + "rdap_server": "https://rdap.nominet.uk/realtor/", + "tld_created": "2014-07-24", "tld_updated": [ "2025-01-30" ], @@ -139233,30 +139285,6 @@ "nominet", "ultradns" ] - } - }, - { - "tld": "realtor", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Real Estate Domains LLC", - "admin": "Real Estate Domains LLC", - "tech": "Nominet" - }, - "icann": { - "registry_operator": "Real Estate Domains LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-907-41079", - "registry_operator_country_code": null, - "date_contract_signed": "2014-05-29", - "date_delegated": "2014-07-30", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -139264,8 +139292,8 @@ "ipv4": [ { "ip": "213.248.219.122", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -139283,8 +139311,8 @@ "ipv4": [ { "ip": "103.49.83.122", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -139411,36 +139439,7 @@ } ] } - ], - "registry_url": "https://www.get.realtor", - "rdap_server": "https://rdap.nominet.uk/realtor/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "Second Genistry", - "iana_sponsor_slug": "second-genistry", - "iana_admin_alias": "Second Genistry", - "iana_admin_slug": "second-genistry", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Second Genistry", - "icann_registry_operator_slug": "second-genistry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "realty", @@ -139465,6 +139464,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.nic.realty", + "rdap_server": "https://rdap.registry.click/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -139542,31 +139565,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.nic.realty", - "rdap_server": "https://rdap.registry.click/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "recipes", @@ -139591,6 +139590,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.recipes", @@ -139706,12 +139732,36 @@ } ] } - ], + ] + }, + { + "tld": "red", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Identity Digital Limited", + "admin": "Identity Digital Limited", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Identity Digital Domains Limited", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-868-93793", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2014-01-18", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", + "tld_created": "2014-01-16", "tld_updated": [ - "2025-10-07" + "2025-09-04" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -139733,30 +139783,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "red", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Identity Digital Limited", - "admin": "Identity Digital Limited", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Identity Digital Domains Limited", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-868-93793", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2014-01-18", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -139835,34 +139861,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "redstone", @@ -139917,6 +139916,34 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.redumbrella", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.redumbrella", @@ -139994,35 +140021,7 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.redumbrella", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rehab", @@ -140047,6 +140046,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rehab", @@ -140162,10 +140188,34 @@ } ] } - ], + ] + }, + { + "tld": "reise", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-892-71956", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-13", + "date_delegated": "2014-05-22", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", + "tld_created": "2014-05-15", "tld_updated": [ "2025-10-07" ], @@ -140189,30 +140239,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "reise", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-892-71956", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-13", - "date_delegated": "2014-05-22", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -140329,10 +140355,34 @@ } ] } - ], + ] + }, + { + "tld": "reisen", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1606-68851", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-15", + "tld_created": "2014-04-03", "tld_updated": [ "2025-10-07" ], @@ -140356,30 +140406,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "reisen", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1606-68851", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -140496,34 +140522,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "reit", @@ -140548,6 +140547,29 @@ "date_removed": null } }, + "registry_url": "http://www.reit.com", + "whois_server": "whois.nic.reit", + "rdap_server": "https://rdap.centralnic.com/reit", + "tld_created": "2014-10-23", + "tld_updated": [ + "2023-09-19" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.reit", @@ -140625,30 +140647,7 @@ } ] } - ], - "registry_url": "http://www.reit.com", - "whois_server": "whois.nic.reit", - "rdap_server": "https://rdap.centralnic.com/reit", - "tld_created": "2014-10-23", - "tld_updated": [ - "2023-09-19" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "reliance", @@ -140673,6 +140672,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.reliance", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.reliance", @@ -140750,30 +140772,7 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.reliance", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ren", @@ -140798,6 +140797,30 @@ "date_removed": null } }, + "registry_url": "http://nic.ren/", + "whois_server": "whois.nic.ren", + "rdap_server": "https://rdap.zdnsgtld.com/ren", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-10-16" + ], + "annotations": { + "iana_admin_alias": "ZDNS", + "iana_admin_slug": "zdns", + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -140895,31 +140918,7 @@ } ] } - ], - "registry_url": "http://nic.ren/", - "whois_server": "whois.nic.ren", - "rdap_server": "https://rdap.zdnsgtld.com/ren", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-10-16" - ], - "annotations": { - "iana_admin_alias": "ZDNS", - "iana_admin_slug": "zdns", - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "rent", @@ -140944,6 +140943,34 @@ "date_removed": null } }, + "registry_url": "https://nic.rent/", + "whois_server": "whois.nic.rent", + "rdap_server": "https://rdap.centralnic.com/rent", + "tld_created": "2015-04-02", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.rent", @@ -141021,35 +141048,7 @@ } ] } - ], - "registry_url": "https://nic.rent/", - "whois_server": "whois.nic.rent", - "rdap_server": "https://rdap.centralnic.com/rent", - "tld_created": "2015-04-02", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "rentals", @@ -141074,6 +141073,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rentals", @@ -141189,10 +141215,34 @@ } ] } - ], + ] + }, + { + "tld": "repair", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1611-39225", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", + "tld_created": "2013-12-19", "tld_updated": [ "2025-10-07" ], @@ -141216,30 +141266,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "repair", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1611-39225", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -141356,10 +141382,34 @@ } ] } - ], + ] + }, + { + "tld": "report", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1615-74729", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-05", + "date_delegated": "2014-02-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", + "tld_created": "2014-01-30", "tld_updated": [ "2025-10-07" ], @@ -141383,30 +141433,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "report", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1615-74729", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-05", - "date_delegated": "2014-02-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -141523,10 +141549,34 @@ } ] } - ], + ] + }, + { + "tld": "republican", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1255-42012", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-20", + "date_delegated": "2014-06-04", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-30", + "tld_created": "2014-05-29", "tld_updated": [ "2025-10-07" ], @@ -141550,30 +141600,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "republican", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1255-42012", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-20", - "date_delegated": "2014-06-04", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -141690,34 +141716,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rest", @@ -141742,6 +141741,30 @@ "date_removed": null } }, + "registry_url": "http://www.register.rest/", + "whois_server": "whois.nic.rest", + "rdap_server": "https://rdap.registry.bar/rdap/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -141819,31 +141842,7 @@ } ] } - ], - "registry_url": "http://www.register.rest/", - "whois_server": "whois.nic.rest", - "rdap_server": "https://rdap.registry.bar/rdap/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "restaurant", @@ -141868,6 +141867,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.restaurant", @@ -141983,34 +142009,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "review", @@ -142035,6 +142034,32 @@ "date_removed": null } }, + "registry_url": "http://nic.review", + "whois_server": "whois.nic.review", + "rdap_server": "https://rdap.nic.review/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.review", @@ -142060,7 +142085,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -142150,33 +142175,7 @@ } ] } - ], - "registry_url": "http://nic.review", - "whois_server": "whois.nic.review", - "rdap_server": "https://rdap.nic.review/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "reviews", @@ -142201,6 +142200,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.reviews", @@ -142316,34 +142342,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rexroth", @@ -142368,6 +142367,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.rexroth", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rexroth", @@ -142445,29 +142466,7 @@ } ] } - ], - "whois_server": "whois.nic.rexroth", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rich", @@ -142492,6 +142491,28 @@ "date_removed": null } }, + "registry_url": "http://www.i-registry.com", + "whois_server": "whois.nic.rich", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-06-23" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rich", @@ -142569,29 +142590,7 @@ } ] } - ], - "registry_url": "http://www.i-registry.com", - "whois_server": "whois.nic.rich", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-06-23" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "richardli", @@ -142616,6 +142615,28 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.richardli", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.richardli", @@ -142693,29 +142714,7 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.richardli", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ricoh", @@ -142740,6 +142739,29 @@ "date_removed": null } }, + "registry_url": "http://www.ricoh.com", + "whois_server": "whois.nic.ricoh", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -142765,7 +142787,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -142810,30 +142832,7 @@ } ] } - ], - "registry_url": "http://www.ricoh.com", - "whois_server": "whois.nic.ricoh", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "rightathome", @@ -142888,6 +142887,29 @@ "date_removed": null } }, + "registry_url": "http://www.ril.com", + "whois_server": "whois.nic.ril", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-11", + "tld_updated": [ + "2023-08-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ril", @@ -142965,30 +142987,7 @@ } ] } - ], - "registry_url": "http://www.ril.com", - "whois_server": "whois.nic.ril", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-11", - "tld_updated": [ - "2023-08-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rio", @@ -143013,6 +143012,20 @@ "date_removed": null } }, + "registry_url": "https://nic.rio/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.dns.br", @@ -143128,21 +143141,7 @@ } ] } - ], - "registry_url": "https://nic.rio/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "geographic_scope": "city" - } + ] }, { "tld": "rip", @@ -143167,6 +143166,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rip", @@ -143282,34 +143308,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rmit", @@ -143353,6 +143352,22 @@ "tech": "National Institute for R&D in Informatics" } }, + "registry_url": "http://www.rotld.ro/", + "whois_server": "whois.rotld.ro", + "tld_created": "1993-02-26", + "tld_updated": [ + "2026-04-28" + ], + "annotations": { + "country_name_iso": "Romania", + "as_org_aliases": [ + "DENIC" + ], + "as_org_slugs": [ + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-at.rotld.ro", @@ -143461,23 +143476,7 @@ } ] } - ], - "registry_url": "http://www.rotld.ro/", - "whois_server": "whois.rotld.ro", - "tld_created": "1993-02-26", - "tld_updated": [ - "2026-04-28" - ], - "annotations": { - "country_name_iso": "Romania", - "as_org_aliases": [ - "DENIC" - ], - "as_org_slugs": [ - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "rocher", @@ -143532,6 +143531,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rocks", @@ -143647,34 +143673,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rodeo", @@ -143699,6 +143698,34 @@ "date_removed": null } }, + "registry_url": "http://nic.rodeo/", + "whois_server": "whois.nic.rodeo", + "rdap_server": "https://rdap.nic.rodeo/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.rodeo", @@ -143724,7 +143751,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143762,7 +143789,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143770,7 +143797,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143781,7 +143808,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143789,7 +143816,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143800,7 +143827,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -143808,41 +143835,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.rodeo/", - "whois_server": "whois.nic.rodeo", - "rdap_server": "https://rdap.nic.rodeo/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "rogers", @@ -143867,6 +143866,29 @@ "date_removed": null } }, + "registry_url": "http://www.rogers.com/consumer/home", + "whois_server": "whois.nic.rogers", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.rogers", @@ -143944,30 +143966,7 @@ } ] } - ], - "registry_url": "http://www.rogers.com/consumer/home", - "whois_server": "whois.nic.rogers", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "room", @@ -143992,14 +143991,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.room", + "rdap_server": "https://rdap.nominet.uk/room/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.room", "ipv4": [ { "ip": "213.248.218.77", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -144017,8 +144045,8 @@ "ipv4": [ { "ip": "103.49.82.77", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -144145,36 +144173,7 @@ } ] } - ], - "registry_url": "http://www.nic.room", - "rdap_server": "https://rdap.nominet.uk/room/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "rs", @@ -144188,6 +144187,24 @@ "tech": "Serbian National Internet Domain Registry (RNIDS)" } }, + "registry_url": "http://www.rnids.rs", + "whois_server": "whois.rnids.rs", + "tld_created": "2007-09-24", + "tld_updated": [ + "2025-02-06" + ], + "annotations": { + "country_name_iso": "Serbia", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.rs", @@ -144304,24 +144321,6 @@ ] } ], - "registry_url": "http://www.rnids.rs", - "whois_server": "whois.rnids.rs", - "tld_created": "2007-09-24", - "tld_updated": [ - "2025-02-06" - ], - "annotations": { - "country_name_iso": "Serbia", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--90a3ac" ] @@ -144349,6 +144348,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -144445,34 +144471,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "ru", @@ -144486,6 +144485,16 @@ "tech": "Technical Center of Internet" } }, + "registry_url": "http://www.cctld.ru/en", + "whois_server": "whois.tcinet.ru", + "tld_created": "1994-04-07", + "tld_updated": [ + "2025-10-22" + ], + "annotations": { + "country_name_iso": "Russian Federation", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -144583,16 +144592,6 @@ ] } ], - "registry_url": "http://www.cctld.ru/en", - "whois_server": "whois.tcinet.ru", - "tld_created": "1994-04-07", - "tld_updated": [ - "2025-10-22" - ], - "annotations": { - "country_name_iso": "Russian Federation", - "geographic_scope": "country" - }, "idn": [ "xn--p1ai" ] @@ -144620,6 +144619,28 @@ "date_removed": null } }, + "registry_url": "https://nic.rugby/", + "whois_server": "whois.nic.rugby", + "rdap_server": "https://rdap.nic.rugby", + "tld_created": "2017-03-23", + "tld_updated": [ + "2025-01-21" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.rugby", @@ -144645,7 +144666,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144683,7 +144704,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144691,7 +144712,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144702,7 +144723,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144710,7 +144731,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144721,7 +144742,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -144729,35 +144750,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://nic.rugby/", - "whois_server": "whois.nic.rugby", - "rdap_server": "https://rdap.nic.rugby", - "tld_created": "2017-03-23", - "tld_updated": [ - "2025-01-21" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "ruhr", @@ -144782,6 +144781,29 @@ "date_removed": null } }, + "registry_url": "http://dot.ruhr", + "whois_server": "whois.nic.ruhr", + "rdap_server": "https://rdap.centralnic.com/ruhr/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2023-09-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.ruhr", @@ -144859,29 +144881,7 @@ } ] } - ], - "registry_url": "http://dot.ruhr", - "whois_server": "whois.nic.ruhr", - "rdap_server": "https://rdap.centralnic.com/ruhr/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2023-09-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "run", @@ -144906,6 +144906,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.run", @@ -145021,34 +145048,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "rw", @@ -145062,6 +145062,24 @@ "tech": "Rwanda Internet Community and Technology Alliance (RICTA) Ltd" } }, + "registry_url": "https://registry.ricta.org.rw", + "whois_server": "whois.ricta.org.rw", + "rdap_server": "https://rdap.ricta.org.rw", + "tld_created": "1996-10-21", + "tld_updated": [ + "2025-08-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Rwanda", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dnsnode.ricta.org.rw", @@ -145163,8 +145181,8 @@ "ipv4": [ { "ip": "41.138.85.98", - "asn": 327707, - "as_org": "AIRTEL-", + "asn": 37124, + "as_org": "tigo-rw-as", "as_country": "RW" } ], @@ -145189,25 +145207,7 @@ } ] } - ], - "registry_url": "https://registry.ricta.org.rw", - "whois_server": "whois.ricta.org.rw", - "rdap_server": "https://rdap.ricta.org.rw", - "tld_created": "1996-10-21", - "tld_updated": [ - "2025-08-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Rwanda", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "rwe", @@ -145232,6 +145232,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.rwe", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-01", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.rwe", @@ -145347,29 +145369,7 @@ } ] } - ], - "whois_server": "whois.nic.rwe", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-01", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ryukyu", @@ -145394,6 +145394,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.ryukyu", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -145419,7 +145444,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -145464,31 +145489,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.ryukyu", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sa", @@ -145502,6 +145503,22 @@ "tech": "Communications, Space and Technology Commission" } }, + "registry_url": "http://www.nic.net.sa/", + "whois_server": "whois.nic.net.sa", + "tld_created": "1994-05-17", + "tld_updated": [ + "2026-02-24" + ], + "annotations": { + "country_name_iso": "Saudi Arabia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "c1.dns.sa", @@ -145649,8 +145666,8 @@ "ipv6": [ { "ip": "2001:16a0:1:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -145668,8 +145685,8 @@ "ipv6": [ { "ip": "2001:16a0:2:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -145694,22 +145711,6 @@ ] } ], - "registry_url": "http://www.nic.net.sa/", - "whois_server": "whois.nic.net.sa", - "tld_created": "1994-05-17", - "tld_updated": [ - "2026-02-24" - ], - "annotations": { - "country_name_iso": "Saudi Arabia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgberp4a5d4ar" ] @@ -145737,6 +145738,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic-saarland.de", + "whois_server": "whois.nic.saarland", + "rdap_server": "https://rdap.centralnic.com/saarland", + "tld_created": "2014-03-20", + "tld_updated": [ + "2023-09-08" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nic.saarland", @@ -145814,30 +145838,7 @@ } ] } - ], - "registry_url": "http://www.nic-saarland.de", - "whois_server": "whois.nic.saarland", - "rdap_server": "https://rdap.centralnic.com/saarland", - "tld_created": "2014-03-20", - "tld_updated": [ - "2023-09-08" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "safe", @@ -145862,14 +145863,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.safe", + "rdap_server": "https://rdap.nominet.uk/safe/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.safe", "ipv4": [ { "ip": "213.248.218.78", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -145887,8 +145917,8 @@ "ipv4": [ { "ip": "103.49.82.78", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -146015,36 +146045,7 @@ } ] } - ], - "registry_url": "http://www.nic.safe", - "rdap_server": "https://rdap.nominet.uk/safe/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "safety", @@ -146069,6 +146070,28 @@ "date_removed": null } }, + "registry_url": "https://nic.safety", + "whois_server": "whois.nic.safety", + "rdap_server": "https://rdap.nic.safety/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.safety", @@ -146094,7 +146117,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146184,29 +146207,7 @@ } ] } - ], - "registry_url": "https://nic.safety", - "whois_server": "whois.nic.safety", - "rdap_server": "https://rdap.nic.safety/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sakura", @@ -146231,6 +146232,26 @@ "date_removed": null } }, + "registry_url": "https://dot-sakura.sakura.ad.jp/", + "whois_server": "whois.nic.sakura", + "rdap_server": "https://rdap.nic.sakura/rdap/", + "tld_created": "2015-06-04", + "tld_updated": [ + "2025-12-03" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "tld1.nic.sakura", @@ -146308,27 +146329,7 @@ } ] } - ], - "registry_url": "https://dot-sakura.sakura.ad.jp/", - "whois_server": "whois.nic.sakura", - "rdap_server": "https://rdap.nic.sakura/rdap/", - "tld_created": "2015-06-04", - "tld_updated": [ - "2025-12-03" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sale", @@ -146353,6 +146354,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sale", @@ -146468,10 +146496,34 @@ } ] } - ], + ] + }, + { + "tld": "salon", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1618-18834", + "registry_operator_country_code": null, + "date_contract_signed": "2014-12-11", + "date_delegated": "2015-12-05", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-17", + "tld_created": "2015-11-12", "tld_updated": [ "2025-10-07" ], @@ -146495,30 +146547,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "salon", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1618-18834", - "registry_operator_country_code": null, - "date_contract_signed": "2014-12-11", - "date_delegated": "2015-12-05", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -146635,34 +146663,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "samsclub", @@ -146687,6 +146688,35 @@ "date_removed": null } }, + "registry_url": "http://www.samsclub.com", + "whois_server": "whois.nic.samsclub", + "rdap_server": "https://rdap.nic.samsclub", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-11-20" + ], + "annotations": { + "iana_sponsor_alias": "Walmart", + "iana_sponsor_slug": "walmart", + "iana_admin_alias": "Walmart", + "iana_admin_slug": "walmart", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "Walmart", + "icann_registry_operator_slug": "walmart", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.samsclub", @@ -146712,7 +146742,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146750,7 +146780,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146758,7 +146788,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146769,7 +146799,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146777,7 +146807,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146788,7 +146818,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -146796,42 +146826,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.samsclub.com", - "whois_server": "whois.nic.samsclub", - "rdap_server": "https://rdap.nic.samsclub", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-11-20" - ], - "annotations": { - "iana_sponsor_alias": "Walmart", - "iana_sponsor_slug": "walmart", - "iana_admin_alias": "Walmart", - "iana_admin_slug": "walmart", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "Walmart", - "icann_registry_operator_slug": "walmart", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "samsung", @@ -146856,6 +146857,20 @@ "date_removed": null } }, + "registry_url": "http://samsungregistry.com", + "whois_server": "whois.nic.samsung", + "rdap_server": "https://nic.samsung/rdap/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2026-05-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "n1-a1.aka-ns.net", @@ -146990,21 +147005,7 @@ } ] } - ], - "registry_url": "http://samsungregistry.com", - "whois_server": "whois.nic.samsung", - "rdap_server": "https://nic.samsung/rdap/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2026-05-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ] - } + ] }, { "tld": "sandvik", @@ -147029,6 +147030,27 @@ "date_removed": null } }, + "registry_url": "http://nic.sandvik", + "whois_server": "whois.nic.sandvik", + "rdap_server": "https://rdap.nic.sandvik/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sandvik", @@ -147054,7 +147076,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147092,7 +147114,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147100,7 +147122,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147111,7 +147133,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147119,7 +147141,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147130,7 +147152,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147138,34 +147160,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sandvik", - "whois_server": "whois.nic.sandvik", - "rdap_server": "https://rdap.nic.sandvik/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sandvikcoromant", @@ -147190,6 +147191,27 @@ "date_removed": null } }, + "registry_url": "http://nic.sandvikcoromant", + "whois_server": "whois.nic.sandvikcoromant", + "rdap_server": "https://rdap.nic.sandvikcoromant/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sandvikcoromant", @@ -147215,7 +147237,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147253,7 +147275,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147261,7 +147283,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147272,7 +147294,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147280,7 +147302,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147291,7 +147313,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147299,34 +147321,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sandvikcoromant", - "whois_server": "whois.nic.sandvikcoromant", - "rdap_server": "https://rdap.nic.sandvikcoromant/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sanofi", @@ -147351,6 +147352,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.sanofi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sanofi", @@ -147428,29 +147451,7 @@ } ] } - ], - "whois_server": "whois.nic.sanofi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sap", @@ -147475,6 +147476,29 @@ "date_removed": null } }, + "registry_url": "http://www.sap.com", + "whois_server": "whois.nic.sap", + "rdap_server": "https://rdap.nic.sap/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -147552,30 +147576,7 @@ } ] } - ], - "registry_url": "http://www.sap.com", - "whois_server": "whois.nic.sap", - "rdap_server": "https://rdap.nic.sap/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "sapo", @@ -147630,6 +147631,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sarl", @@ -147745,34 +147773,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sas", @@ -147797,6 +147798,28 @@ "date_removed": null } }, + "registry_url": "http://www.sas.com", + "rdap_server": "https://rdap.nic.sas/", + "tld_created": "2015-11-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sas", @@ -147822,7 +147845,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -147912,29 +147935,7 @@ } ] } - ], - "registry_url": "http://www.sas.com", - "rdap_server": "https://rdap.nic.sas/", - "tld_created": "2015-11-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "save", @@ -147959,14 +147960,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.save", + "rdap_server": "https://rdap.nominet.uk/save/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.save", "ipv4": [ { "ip": "213.248.218.79", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -147984,8 +148014,8 @@ "ipv4": [ { "ip": "103.49.82.79", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -148112,36 +148142,7 @@ } ] } - ], - "registry_url": "http://www.nic.save", - "rdap_server": "https://rdap.nominet.uk/save/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "saxo", @@ -148166,6 +148167,29 @@ "date_removed": null } }, + "registry_url": "http://nic.saxo", + "whois_server": "whois.nic.saxo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-15", + "tld_updated": [ + "2024-03-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.saxo", @@ -148281,30 +148305,7 @@ } ] } - ], - "registry_url": "http://nic.saxo", - "whois_server": "whois.nic.saxo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-15", - "tld_updated": [ - "2024-03-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sb", @@ -148318,6 +148319,22 @@ "tech": "Solomon Telekom Company Limited" } }, + "registry_url": "http://www.nic.net.sb/", + "whois_server": "whois.nic.net.sb", + "tld_created": "1994-04-19", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Solomon Islands", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -148369,23 +148386,7 @@ } ] } - ], - "registry_url": "http://www.nic.net.sb/", - "whois_server": "whois.nic.net.sb", - "tld_created": "1994-04-19", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Solomon Islands", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "sbi", @@ -148410,6 +148411,29 @@ "date_removed": null } }, + "registry_url": "https://www.sbi.co.in", + "whois_server": "whois.nic.sbi", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sbi", @@ -148487,30 +148511,7 @@ } ] } - ], - "registry_url": "https://www.sbi.co.in", - "whois_server": "whois.nic.sbi", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sbs", @@ -148535,6 +148536,32 @@ "date_removed": null } }, + "registry_url": "http://nic.icu", + "whois_server": "whois.nic.sbs", + "rdap_server": "https://rdap.centralnic.com/sbs/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2024-06-19" + ], + "annotations": { + "iana_sponsor_alias": "Shortdot", + "iana_sponsor_slug": "shortdot", + "iana_admin_alias": "Shortdot", + "iana_admin_slug": "shortdot", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.sbs", @@ -148612,33 +148639,7 @@ } ] } - ], - "registry_url": "http://nic.icu", - "whois_server": "whois.nic.sbs", - "rdap_server": "https://rdap.centralnic.com/sbs/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2024-06-19" - ], - "annotations": { - "iana_sponsor_alias": "Shortdot", - "iana_sponsor_slug": "shortdot", - "iana_admin_alias": "Shortdot", - "iana_admin_slug": "shortdot", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "sc", @@ -148652,6 +148653,26 @@ "tech": "Identity Digital" } }, + "registry_url": "http://www.nic.sc", + "whois_server": "whois.nic.sc", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-05-09", + "tld_updated": [ + "2025-09-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Seychelles", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -148779,27 +148800,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.sc", - "whois_server": "whois.nic.sc", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-05-09", - "tld_updated": [ - "2025-09-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Seychelles", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "sca", @@ -148854,6 +148855,29 @@ "date_removed": null } }, + "registry_url": "https://www.scb.co.th/en/personal-banking/top-level-domain.html", + "whois_server": "whois.nic.scb", + "rdap_server": "https://rdap.nic.scb/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Community DNS", + "RcodeZero" + ], + "as_org_slugs": [ + "community-dns", + "rcodezero" + ] + }, "nameservers": [ { "hostname": "c.nic.scb", @@ -148912,30 +148936,7 @@ } ] } - ], - "registry_url": "https://www.scb.co.th/en/personal-banking/top-level-domain.html", - "whois_server": "whois.nic.scb", - "rdap_server": "https://rdap.nic.scb/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Community DNS", - "RcodeZero" - ], - "as_org_slugs": [ - "community-dns", - "rcodezero" - ] - } + ] }, { "tld": "schaeffler", @@ -148960,6 +148961,27 @@ "date_removed": null } }, + "registry_url": "http://www.schaeffler.com", + "whois_server": "whois.afilias-srs.net", + "rdap_server": "https://rdap.nic.schaeffler/", + "tld_created": "2015-12-17", + "tld_updated": [ + "2023-05-04" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.schaeffler", @@ -149018,28 +149040,7 @@ } ] } - ], - "registry_url": "http://www.schaeffler.com", - "whois_server": "whois.afilias-srs.net", - "rdap_server": "https://rdap.nic.schaeffler/", - "tld_created": "2015-12-17", - "tld_updated": [ - "2023-05-04" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "schmidt", @@ -149064,6 +149065,27 @@ "date_removed": null } }, + "registry_url": "http://nic.schmidt/", + "whois_server": "whois.nic.schmidt", + "rdap_server": "https://rdap.nic.schmidt/", + "tld_created": "2014-06-19", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.schmidt", @@ -149089,7 +149111,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149127,7 +149149,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149135,7 +149157,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149146,7 +149168,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149154,7 +149176,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149165,7 +149187,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149173,34 +149195,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.schmidt/", - "whois_server": "whois.nic.schmidt", - "rdap_server": "https://rdap.nic.schmidt/", - "tld_created": "2014-06-19", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "scholarships", @@ -149225,6 +149226,28 @@ "date_removed": null } }, + "registry_url": "http://www.scholarships.com", + "whois_server": "whois.nic.scholarships", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.scholarships", @@ -149302,29 +149325,7 @@ } ] } - ], - "registry_url": "http://www.scholarships.com", - "whois_server": "whois.nic.scholarships", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "school", @@ -149349,6 +149350,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.school", @@ -149464,10 +149492,34 @@ } ] } - ], + ] + }, + { + "tld": "schule", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1627-1624", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-22", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-13", + "tld_created": "2014-04-11", "tld_updated": [ "2025-10-07" ], @@ -149491,30 +149543,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "schule", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1627-1624", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-22", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -149631,34 +149659,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "schwarz", @@ -149683,6 +149684,29 @@ "date_removed": null } }, + "registry_url": "https://www.nic.schwarz", + "whois_server": "whois.nic.schwarz", + "rdap_server": "https://rdap.centralnic.com/schwarz", + "tld_created": "2014-12-04", + "tld_updated": [ + "2023-11-06" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.schwarz", @@ -149760,30 +149784,7 @@ } ] } - ], - "registry_url": "https://www.nic.schwarz", - "whois_server": "whois.nic.schwarz", - "rdap_server": "https://rdap.centralnic.com/schwarz", - "tld_created": "2014-12-04", - "tld_updated": [ - "2023-11-06" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "science", @@ -149808,6 +149809,32 @@ "date_removed": null } }, + "registry_url": "http://nic.science", + "whois_server": "whois.nic.science", + "rdap_server": "https://rdap.nic.science/", + "tld_created": "2014-10-23", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.science", @@ -149833,7 +149860,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -149923,33 +149950,7 @@ } ] } - ], - "registry_url": "http://nic.science", - "whois_server": "whois.nic.science", - "rdap_server": "https://rdap.nic.science/", - "tld_created": "2014-10-23", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "scjohnson", @@ -150034,6 +150035,29 @@ "date_removed": null } }, + "registry_url": "https://dot.scot/", + "whois_server": "whois.nic.scot", + "rdap_server": "https://rdap.nic.scot/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "scottish" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -150111,30 +150135,7 @@ } ] } - ], - "registry_url": "https://dot.scot/", - "whois_server": "whois.nic.scot", - "rdap_server": "https://rdap.nic.scot/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "scottish" - } + ] }, { "tld": "sd", @@ -150148,6 +150149,24 @@ "tech": "Sudan Internet Society" } }, + "registry_url": "http://www.isoc.sd", + "whois_server": "whois.nic.sd", + "rdap_server": "https://rdap.nic.sd", + "tld_created": "1997-03-06", + "tld_updated": [ + "2024-01-29" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ans1.canar.sd", @@ -150166,9 +150185,9 @@ "ipv4": [ { "ip": "196.29.166.134", - "asn": 33788, - "as_org": "KANARTEL", - "as_country": "SD" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -150248,31 +150267,13 @@ "ipv6": [ { "ip": "2001:67c:e0::109", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } ], - "registry_url": "http://www.isoc.sd", - "whois_server": "whois.nic.sd", - "rdap_server": "https://rdap.nic.sd", - "tld_created": "1997-03-06", - "tld_updated": [ - "2024-01-29" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--mgbpl2fh" ] @@ -150289,6 +150290,24 @@ "tech": "Netnod AB" } }, + "registry_url": "https://www.internetstiftelsen.se", + "whois_server": "whois.iis.se", + "tld_created": "1986-09-04", + "tld_updated": [ + "2026-02-12" + ], + "annotations": { + "country_name_iso": "Sweden", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.se", @@ -150352,16 +150371,16 @@ "ipv4": [ { "ip": "192.36.134.97", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", + "asn": 39870, + "as_org": "NETNOD-MMO Netnod Equipment located at IX in Malmoe", "as_country": "SE" } ], "ipv6": [ { "ip": "2001:67c:2550:301::53", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", + "asn": 39870, + "as_org": "NETNOD-MMO Netnod Equipment located at IX in Malmoe", "as_country": "SE" } ] @@ -150480,25 +150499,7 @@ } ] } - ], - "registry_url": "https://www.internetstiftelsen.se", - "whois_server": "whois.iis.se", - "tld_created": "1986-09-04", - "tld_updated": [ - "2026-02-12" - ], - "annotations": { - "country_name_iso": "Sweden", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "search", @@ -150523,6 +150524,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2017-06-08", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -150619,34 +150647,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2017-06-08", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "seat", @@ -150671,6 +150672,27 @@ "date_removed": null } }, + "registry_url": "http://www.seat.com/content/com/com/en/contact/abuse.html", + "whois_server": "whois.nic.seat", + "rdap_server": "https://rdap.nic.seat/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -150748,28 +150770,7 @@ } ] } - ], - "registry_url": "http://www.seat.com/content/com/com/en/contact/abuse.html", - "whois_server": "whois.nic.seat", - "rdap_server": "https://rdap.nic.seat/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "secure", @@ -150794,14 +150795,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.secure", + "rdap_server": "https://rdap.nominet.uk/secure/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.secure", "ipv4": [ { "ip": "213.248.218.80", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -150819,8 +150849,8 @@ "ipv4": [ { "ip": "103.49.82.80", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -150947,36 +150977,7 @@ } ] } - ], - "registry_url": "http://www.nic.secure", - "rdap_server": "https://rdap.nominet.uk/secure/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "security", @@ -151001,6 +151002,34 @@ "date_removed": null } }, + "registry_url": "https://nic.security/", + "whois_server": "whois.nic.security", + "rdap_server": "https://rdap.centralnic.com/security", + "tld_created": "2015-09-03", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.security", @@ -151078,35 +151107,7 @@ } ] } - ], - "registry_url": "https://nic.security/", - "whois_server": "whois.nic.security", - "rdap_server": "https://rdap.centralnic.com/security", - "tld_created": "2015-09-03", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "seek", @@ -151131,6 +151132,27 @@ "date_removed": null } }, + "registry_url": "https://au.seek.com/about", + "whois_server": "whois.nic.seek", + "rdap_server": "https://rdap.nic.seek/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.seek", @@ -151156,7 +151178,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151194,7 +151216,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151202,7 +151224,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151213,7 +151235,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151221,7 +151243,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151232,7 +151254,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151240,34 +151262,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://au.seek.com/about", - "whois_server": "whois.nic.seek", - "rdap_server": "https://rdap.nic.seek/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "select", @@ -151292,6 +151293,34 @@ "date_removed": null } }, + "registry_url": "http://nic.select/", + "whois_server": "whois.nic.select", + "rdap_server": "https://rdap.nic.select/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.select", @@ -151317,7 +151346,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151355,7 +151384,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151363,7 +151392,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151374,7 +151403,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151382,7 +151411,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151393,7 +151422,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151401,41 +151430,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.select/", - "whois_server": "whois.nic.select", - "rdap_server": "https://rdap.nic.select/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sener", @@ -151460,6 +151461,29 @@ "date_removed": null } }, + "registry_url": "http://sener.es", + "whois_server": "whois.nic.rwe", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-07-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.sener", @@ -151575,30 +151599,7 @@ } ] } - ], - "registry_url": "http://sener.es", - "whois_server": "whois.nic.rwe", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-07-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "services", @@ -151623,6 +151624,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.services", @@ -151738,34 +151766,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "ses", @@ -151820,6 +151821,27 @@ "date_removed": null } }, + "registry_url": "http://nic.seven/", + "whois_server": "whois.nic.seven", + "rdap_server": "https://rdap.nic.seven/", + "tld_created": "2015-09-23", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.seven", @@ -151845,7 +151867,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151883,7 +151905,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151891,7 +151913,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151902,7 +151924,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151910,7 +151932,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151921,7 +151943,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -151929,34 +151951,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.seven/", - "whois_server": "whois.nic.seven", - "rdap_server": "https://rdap.nic.seven/", - "tld_created": "2015-09-23", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sew", @@ -151981,6 +151982,29 @@ "date_removed": null } }, + "registry_url": "http://www.sew-eurodrive.com/", + "whois_server": "whois.nic.sew", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-06", + "tld_updated": [ + "2023-08-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sew", @@ -152058,30 +152082,7 @@ } ] } - ], - "registry_url": "http://www.sew-eurodrive.com/", - "whois_server": "whois.nic.sew", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-06", - "tld_updated": [ - "2023-08-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sex", @@ -152106,6 +152107,34 @@ "date_removed": null } }, + "registry_url": "http://nic.sex", + "whois_server": "whois.nic.sex", + "rdap_server": "https://rdap.nic.sex/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sex", @@ -152131,7 +152160,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152169,7 +152198,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152177,7 +152206,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152188,7 +152217,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152196,7 +152225,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152207,7 +152236,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152215,41 +152244,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.sex", - "whois_server": "whois.nic.sex", - "rdap_server": "https://rdap.nic.sex/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sexy", @@ -152274,6 +152275,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -152351,31 +152376,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "sfr", @@ -152400,6 +152401,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.sfr", + "rdap_server": "https://rdap.centralnic.com/sfr", + "tld_created": "2015-11-12", + "tld_updated": [ + "2024-01-31" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.sfr", @@ -152477,29 +152500,7 @@ } ] } - ], - "whois_server": "whois.nic.sfr", - "rdap_server": "https://rdap.centralnic.com/sfr", - "tld_created": "2015-11-12", - "tld_updated": [ - "2024-01-31" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "sg", @@ -152513,6 +152514,28 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd." } }, + "registry_url": "http://www.sgnic.sg", + "whois_server": "whois.sgnic.sg", + "rdap_server": "https://rdap.sgnic.sg/rdap/", + "tld_created": "1988-10-19", + "tld_updated": [ + "2026-02-04" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -152610,28 +152633,6 @@ ] } ], - "registry_url": "http://www.sgnic.sg", - "whois_server": "whois.sgnic.sg", - "rdap_server": "https://rdap.sgnic.sg/rdap/", - "tld_created": "1988-10-19", - "tld_updated": [ - "2026-02-04" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--clchc0ea0b2g2a9gcd", "xn--yfro4i67o" @@ -152649,6 +152650,26 @@ "tech": "Internet Computer Bureau Ltd" } }, + "registry_url": "http://www.nic.sh/", + "whois_server": "whois.nic.sh", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1997-09-23", + "tld_updated": [ + "2023-01-18" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Saint Helena, Ascension and Tristan da Cunha", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.nic.sh", @@ -152726,27 +152747,7 @@ } ] } - ], - "registry_url": "http://www.nic.sh/", - "whois_server": "whois.nic.sh", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1997-09-23", - "tld_updated": [ - "2023-01-18" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Saint Helena, Ascension and Tristan da Cunha", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "shangrila", @@ -152771,6 +152772,29 @@ "date_removed": null } }, + "registry_url": "http://www.shangri-la.com/", + "whois_server": "whois.nic.shangrila", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.shangrila", @@ -152848,30 +152872,7 @@ } ] } - ], - "registry_url": "http://www.shangri-la.com/", - "whois_server": "whois.nic.shangrila", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sharp", @@ -152896,6 +152897,29 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -152921,7 +152945,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -152966,30 +152990,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "shaw", @@ -153044,14 +153045,38 @@ "date_removed": null } }, + "registry_url": "http://www.shell.com", + "rdap_server": "https://rdap.nominet.uk/shell/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.shell", "ipv4": [ { "ip": "213.248.219.137", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -153069,8 +153094,8 @@ "ipv4": [ { "ip": "103.49.83.137", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -153197,31 +153222,7 @@ } ] } - ], - "registry_url": "http://www.shell.com", - "rdap_server": "https://rdap.nominet.uk/shell/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "shia", @@ -153246,14 +153247,40 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/shia/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -153271,8 +153298,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -153399,33 +153426,7 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/shia/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "shiksha", @@ -153450,6 +153451,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.shiksha", @@ -153527,12 +153555,36 @@ } ] } - ], + ] + }, + { + "tld": "shoes", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": null, + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-02", + "date_delegated": "2013-12-17", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", + "tld_created": "2013-12-12", "tld_updated": [ - "2025-09-04" + "2025-10-07" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -153554,30 +153606,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "shoes", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": null, - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-02", - "date_delegated": "2013-12-17", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -153694,34 +153722,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "shop", @@ -153746,6 +153747,34 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.shop", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2016-05-05", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -153771,7 +153800,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -153816,35 +153845,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.shop", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2016-05-05", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "shopping", @@ -153869,6 +153870,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.shopping", @@ -153984,34 +154012,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "shouji", @@ -154036,14 +154037,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -154099,27 +154120,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "show", @@ -154144,6 +154145,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.show", @@ -154259,34 +154287,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "showtime", @@ -154359,6 +154360,28 @@ "tech": "Academic and Research Network of Slovenia (ARNES)" } }, + "registry_url": "https://www.registry.si/", + "whois_server": "whois.register.si", + "rdap_server": "https://rdap.register.si/", + "tld_created": "1992-04-01", + "tld_updated": [ + "2026-03-25" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Slovenia", + "as_org_aliases": [ + "CIRA", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cira", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -154474,29 +154497,7 @@ } ] } - ], - "registry_url": "https://www.registry.si/", - "whois_server": "whois.register.si", - "rdap_server": "https://rdap.register.si/", - "tld_created": "1992-04-01", - "tld_updated": [ - "2026-03-25" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Slovenia", - "as_org_aliases": [ - "CIRA", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cira", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "silk", @@ -154521,14 +154522,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.silk", + "rdap_server": "https://rdap.nominet.uk/silk/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.silk", "ipv4": [ { "ip": "213.248.218.59", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -154546,8 +154577,8 @@ "ipv4": [ { "ip": "103.49.82.59", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -154674,37 +154705,7 @@ } ] } - ], - "registry_url": "http://www.nic.silk", - "rdap_server": "https://rdap.nominet.uk/silk/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "sina", @@ -154729,6 +154730,29 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.sina", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.sina", @@ -154806,30 +154830,7 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.sina", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "singles", @@ -154854,6 +154855,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.singles", @@ -154969,34 +154997,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "site", @@ -155021,6 +155022,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.site", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2026-04-21" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -155098,35 +155127,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.site", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2026-04-21" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "sj", @@ -155140,6 +155141,15 @@ "tech": "Norid A/S" } }, + "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-sj/", + "tld_created": "1997-08-21", + "tld_updated": [ + "2022-01-14" + ], + "annotations": { + "country_name_iso": "Svalbard and Jan Mayen", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nac.no", @@ -155255,16 +155265,7 @@ } ] } - ], - "registry_url": "https://www.norid.no/en/omnorid/toppdomenet-sj/", - "tld_created": "1997-08-21", - "tld_updated": [ - "2022-01-14" - ], - "annotations": { - "country_name_iso": "Svalbard and Jan Mayen", - "geographic_scope": "country" - } + ] }, { "tld": "sk", @@ -155278,6 +155279,22 @@ "tech": "SK-NIC, a.s." } }, + "registry_url": "http://www.sk-nic.sk", + "whois_server": "whois.sk-nic.sk", + "tld_created": "1993-03-29", + "tld_updated": [ + "2026-03-16" + ], + "annotations": { + "country_name_iso": "Slovakia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "e.tld.sk", @@ -155355,23 +155372,7 @@ } ] } - ], - "registry_url": "http://www.sk-nic.sk", - "whois_server": "whois.sk-nic.sk", - "tld_created": "1993-03-29", - "tld_updated": [ - "2026-03-16" - ], - "annotations": { - "country_name_iso": "Slovakia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ski", @@ -155396,6 +155397,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ski", @@ -155473,35 +155502,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "skin", @@ -155526,6 +155527,34 @@ "date_removed": null } }, + "registry_url": "https://nic.skin/", + "whois_server": "whois.nic.skin", + "rdap_server": "https://rdap.centralnic.com/skin/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.skin", @@ -155603,35 +155632,7 @@ } ] } - ], - "registry_url": "https://nic.skin/", - "whois_server": "whois.nic.skin", - "rdap_server": "https://rdap.centralnic.com/skin/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "sky", @@ -155656,14 +155657,38 @@ "date_removed": null } }, + "registry_url": "http://nic.sky", + "rdap_server": "https://rdap.nominet.uk/sky/", + "tld_created": "2014-10-02", + "tld_updated": [ + "2025-02-03" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.sky", "ipv4": [ { "ip": "213.248.219.127", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -155681,8 +155706,8 @@ "ipv4": [ { "ip": "103.49.83.127", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -155809,31 +155834,7 @@ } ] } - ], - "registry_url": "http://nic.sky", - "rdap_server": "https://rdap.nominet.uk/sky/", - "tld_created": "2014-10-02", - "tld_updated": [ - "2025-02-03" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "skype", @@ -155858,14 +155859,44 @@ "date_removed": null } }, + "registry_url": "http://www.skype.com", + "rdap_server": "https://rdap.nominet.uk/skype/", + "tld_created": "2015-03-19", + "tld_updated": [ + "2026-02-07" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.skype", "ipv4": [ { "ip": "213.248.219.138", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -155883,8 +155914,8 @@ "ipv4": [ { "ip": "103.49.83.138", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -156011,37 +156042,7 @@ } ] } - ], - "registry_url": "http://www.skype.com", - "rdap_server": "https://rdap.nominet.uk/skype/", - "tld_created": "2015-03-19", - "tld_updated": [ - "2026-02-07" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "sl", @@ -156055,6 +156056,15 @@ "tech": "Sierratel" } }, + "registry_url": "https://www.nic.sl", + "tld_created": "1997-05-09", + "tld_updated": [ + "2021-10-08" + ], + "annotations": { + "country_name_iso": "Sierra Leone", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.neoip.com", @@ -156080,16 +156090,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.nic.sl", - "tld_created": "1997-05-09", - "tld_updated": [ - "2021-10-08" - ], - "annotations": { - "country_name_iso": "Sierra Leone", - "geographic_scope": "country" - } + ] }, { "tld": "sling", @@ -156114,6 +156115,35 @@ "date_removed": null } }, + "registry_url": "http://www.echostar.com/", + "whois_server": "whois.nic.sling", + "rdap_server": "https://rdap.mobile-registry.com/rdap/", + "tld_created": "2016-08-04", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_sponsor_alias": "Dish Network", + "iana_sponsor_slug": "dish-network", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "icann_registry_operator_alias": "Dish Network", + "icann_registry_operator_slug": "dish-network", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -156191,36 +156221,7 @@ } ] } - ], - "registry_url": "http://www.echostar.com/", - "whois_server": "whois.nic.sling", - "rdap_server": "https://rdap.mobile-registry.com/rdap/", - "tld_created": "2016-08-04", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_sponsor_alias": "Dish Network", - "iana_sponsor_slug": "dish-network", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "icann_registry_operator_alias": "Dish Network", - "icann_registry_operator_slug": "dish-network", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "sm", @@ -156234,6 +156235,22 @@ "tech": "Telecom Italia San Marino S.p.A." } }, + "registry_url": "https://www.nic.sm", + "whois_server": "whois.nic.sm", + "tld_created": "1995-08-16", + "tld_updated": [ + "2025-07-07" + ], + "annotations": { + "country_name_iso": "San Marino", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns.intelcom.sm", @@ -156297,23 +156314,7 @@ } ] } - ], - "registry_url": "https://www.nic.sm", - "whois_server": "whois.nic.sm", - "tld_created": "1995-08-16", - "tld_updated": [ - "2025-07-07" - ], - "annotations": { - "country_name_iso": "San Marino", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "smart", @@ -156338,6 +156339,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.smart", + "rdap_server": "https://rdap.centralnic.com/smart", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.smart", @@ -156415,29 +156438,7 @@ } ] } - ], - "whois_server": "whois.nic.smart", - "rdap_server": "https://rdap.centralnic.com/smart", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "smile", @@ -156462,14 +156463,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.smile", + "rdap_server": "https://rdap.nominet.uk/smile/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.smile", "ipv4": [ { "ip": "213.248.218.81", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -156487,8 +156517,8 @@ "ipv4": [ { "ip": "103.49.82.81", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -156615,36 +156645,7 @@ } ] } - ], - "registry_url": "http://www.nic.smile", - "rdap_server": "https://rdap.nominet.uk/smile/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "sn", @@ -156658,6 +156659,26 @@ "tech": "CURI - NIC Senegal" } }, + "registry_url": "https://www.cctld.sn", + "whois_server": "whois.nic.sn", + "rdap_server": "https://rdap.nic.sn/whois43/", + "tld_created": "1993-03-19", + "tld_updated": [ + "2026-03-12" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Senegal", + "as_org_aliases": [ + "AFNIC", + "Amazon" + ], + "as_org_slugs": [ + "afnic", + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-tld.ird.fr", @@ -156733,27 +156754,7 @@ } ] } - ], - "registry_url": "https://www.cctld.sn", - "whois_server": "whois.nic.sn", - "rdap_server": "https://rdap.nic.sn/whois43/", - "tld_created": "1993-03-19", - "tld_updated": [ - "2026-03-12" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Senegal", - "as_org_aliases": [ - "AFNIC", - "Amazon" - ], - "as_org_slugs": [ - "afnic", - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "sncf", @@ -156778,6 +156779,31 @@ "date_removed": null } }, + "registry_url": "http://www.sncf.com", + "whois_server": "whois.nic.sncf", + "rdap_server": "https://rdap.nic.sncf", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-09-11" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -156836,32 +156862,7 @@ } ] } - ], - "registry_url": "http://www.sncf.com", - "whois_server": "whois.nic.sncf", - "rdap_server": "https://rdap.nic.sncf", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-09-11" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "so", @@ -156875,6 +156876,22 @@ "tech": "soNIC" } }, + "registry_url": "http://www.nic.so/", + "whois_server": "whois.nic.so", + "tld_created": "1997-08-28", + "tld_updated": [ + "2016-04-18" + ], + "annotations": { + "country_name_iso": "Somalia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.so", @@ -156914,23 +156931,7 @@ } ] } - ], - "registry_url": "http://www.nic.so/", - "whois_server": "whois.nic.so", - "tld_created": "1997-08-28", - "tld_updated": [ - "2016-04-18" - ], - "annotations": { - "country_name_iso": "Somalia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "soccer", @@ -156955,6 +156956,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.soccer", @@ -157070,10 +157098,34 @@ } ] } - ], + ] + }, + { + "tld": "social", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1255-66111", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2014-01-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-08", + "tld_created": "2014-01-09", "tld_updated": [ "2025-10-07" ], @@ -157097,30 +157149,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "social", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1255-66111", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2014-01-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -157237,34 +157265,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "softbank", @@ -157289,6 +157290,29 @@ "date_removed": null } }, + "registry_url": "http://softbank.com/", + "whois_server": "whois.nic.softbank", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -157314,7 +157338,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -157359,30 +157383,7 @@ } ] } - ], - "registry_url": "http://softbank.com/", - "whois_server": "whois.nic.softbank", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "software", @@ -157407,6 +157408,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.software", @@ -157522,34 +157550,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sohu", @@ -157574,6 +157575,24 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/sohu", + "tld_created": "2014-02-27", + "tld_updated": [ + "2024-11-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -157671,25 +157690,7 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/sohu", - "tld_created": "2014-02-27", - "tld_updated": [ - "2024-11-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "solar", @@ -157714,6 +157715,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.solar", @@ -157829,7 +157857,31 @@ } ] } - ], + ] + }, + { + "tld": "solutions", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1620-15722", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2013-12-19", @@ -157856,30 +157908,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "solutions", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1620-15722", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -157996,34 +158024,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "song", @@ -158048,6 +158049,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.song", + "whois_server": "whois.nic.song", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.song", @@ -158163,35 +158192,7 @@ } ] } - ], - "registry_url": "http://www.nic.song", - "whois_server": "whois.nic.song", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sony", @@ -158216,6 +158217,31 @@ "date_removed": null } }, + "registry_url": "http://www.sony.com", + "whois_server": "whois.nic.sony", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_sponsor_alias": "Sony", + "iana_sponsor_slug": "sony", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -158241,7 +158267,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -158286,32 +158312,7 @@ } ] } - ], - "registry_url": "http://www.sony.com", - "whois_server": "whois.nic.sony", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-03-06", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_sponsor_alias": "Sony", - "iana_sponsor_slug": "sony", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "soy", @@ -158336,6 +158337,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -158432,34 +158460,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "spa", @@ -158484,6 +158485,31 @@ "date_removed": null } }, + "registry_url": "https://nic.spa", + "whois_server": "whois.nic.spa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2020-09-25", + "tld_updated": [ + "2023-09-01" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.spa", @@ -158561,32 +158587,7 @@ } ] } - ], - "registry_url": "https://nic.spa", - "whois_server": "whois.nic.spa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2020-09-25", - "tld_updated": [ - "2023-09-01" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "space", @@ -158611,6 +158612,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.space", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-21" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -158688,35 +158717,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.space", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-21" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "spiegel", @@ -158771,6 +158772,27 @@ "date_removed": null } }, + "registry_url": "https://join.sport/", + "whois_server": "whois.nic.sport", + "rdap_server": "https://rdap.nic.sport/", + "tld_created": "2018-01-05", + "tld_updated": [ + "2023-07-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -158848,28 +158870,7 @@ } ] } - ], - "registry_url": "https://join.sport/", - "whois_server": "whois.nic.sport", - "rdap_server": "https://rdap.nic.sport/", - "tld_created": "2018-01-05", - "tld_updated": [ - "2023-07-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "spot", @@ -158894,14 +158895,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.spot", + "rdap_server": "https://rdap.nominet.uk/spot/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.spot", "ipv4": [ { "ip": "213.248.218.82", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -158919,8 +158949,8 @@ "ipv4": [ { "ip": "103.49.82.82", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -159047,36 +159077,7 @@ } ] } - ], - "registry_url": "http://www.nic.spot", - "rdap_server": "https://rdap.nominet.uk/spot/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "spreadbetting", @@ -159119,14 +159120,26 @@ "tech": "Telesur" } }, + "registry_url": "https://isp.datasur.sr/", + "whois_server": "whois.sr", + "rdap_server": "https://whois.sr/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2026-04-17" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Suriname", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.sr", "ipv4": [ { "ip": "168.195.219.210", - "asn": 27775, - "as_org": "Telecommunicationcompany Suriname - TeleSur", + "asn": 263799, + "as_org": "CARIBBEAN COMMUNICATION SERVICES", "as_country": "SR" } ], @@ -159171,25 +159184,13 @@ "ipv6": [ { "ip": "2a0f:ff40:100:3112:2d53:cd87::", - "asn": 211588, - "as_org": "XYPHEN", - "as_country": "NL" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ] } - ], - "registry_url": "https://isp.datasur.sr/", - "whois_server": "whois.sr", - "rdap_server": "https://whois.sr/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2026-04-17" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Suriname", - "geographic_scope": "country" - } + ] }, { "tld": "srl", @@ -159214,6 +159215,28 @@ "date_removed": null } }, + "registry_url": "http://www.internetx.info", + "whois_server": "whois.nic.srl", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-09", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.srl", @@ -159291,29 +159314,7 @@ } ] } - ], - "registry_url": "http://www.internetx.info", - "whois_server": "whois.nic.srl", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-09", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "srt", @@ -159357,6 +159358,24 @@ "tech": "National Communication Authority (NCA)" } }, + "registry_url": "https://nic.ss/", + "whois_server": "whois.nic.ss", + "rdap_server": "https://rdap.nic.ss", + "tld_created": "2011-08-31", + "tld_updated": [ + "2024-04-05" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "South Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-ss.afrinic.net", @@ -159414,25 +159433,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://nic.ss/", - "whois_server": "whois.nic.ss", - "rdap_server": "https://rdap.nic.ss", - "tld_created": "2011-08-31", - "tld_updated": [ - "2024-04-05" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "South Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "st", @@ -159446,6 +159447,22 @@ "tech": "Bahnhof AB" } }, + "registry_url": "http://www.nic.st", + "whois_server": "whois.nic.st", + "tld_created": "1997-11-07", + "tld_updated": [ + "2022-11-15" + ], + "annotations": { + "country_name_iso": "Sao Tome and Principe", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns-st.bahnhof.net", @@ -159523,23 +159540,7 @@ } ] } - ], - "registry_url": "http://www.nic.st", - "whois_server": "whois.nic.st", - "tld_created": "1997-11-07", - "tld_updated": [ - "2022-11-15" - ], - "annotations": { - "country_name_iso": "Sao Tome and Principe", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "stada", @@ -159564,6 +159565,30 @@ "date_removed": null } }, + "registry_url": "http://www.stada.com", + "whois_server": "whois.nic.stada", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-06-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.stada", @@ -159641,31 +159666,7 @@ } ] } - ], - "registry_url": "http://www.stada.com", - "whois_server": "whois.nic.stada", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-06-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "staples", @@ -159690,6 +159691,28 @@ "date_removed": null } }, + "registry_url": "http://www.staples.com/", + "rdap_server": "https://rdap.nic.staples/", + "tld_created": "2016-06-09", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.staples", @@ -159715,7 +159738,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -159805,29 +159828,7 @@ } ] } - ], - "registry_url": "http://www.staples.com/", - "rdap_server": "https://rdap.nic.staples/", - "tld_created": "2016-06-09", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "star", @@ -159852,6 +159853,28 @@ "date_removed": null } }, + "registry_url": "http://www.startv.com", + "whois_server": "whois.nic.star", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-05-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.star", @@ -159929,29 +159952,7 @@ } ] } - ], - "registry_url": "http://www.startv.com", - "whois_server": "whois.nic.star", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-05-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "starhub", @@ -160006,6 +160007,29 @@ "date_removed": null } }, + "registry_url": "https://www.sbi.co.in", + "whois_server": "whois.nic.statebank", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2023-08-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.statebank", @@ -160083,30 +160107,7 @@ } ] } - ], - "registry_url": "https://www.sbi.co.in", - "whois_server": "whois.nic.statebank", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2023-08-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "statefarm", @@ -160131,6 +160132,28 @@ "date_removed": null } }, + "registry_url": "http://www.statefarm.com", + "rdap_server": "https://rdap.nic.statefarm/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.statefarm", @@ -160156,7 +160179,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -160246,29 +160269,7 @@ } ] } - ], - "registry_url": "http://www.statefarm.com", - "rdap_server": "https://rdap.nic.statefarm/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "statoil", @@ -160323,6 +160324,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.stc", + "rdap_server": "https://rdap.centralnic.com/stc", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.stc", @@ -160400,31 +160425,7 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.stc", - "rdap_server": "https://rdap.centralnic.com/stc", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "stcgroup", @@ -160449,6 +160450,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.stcgroup", + "rdap_server": "https://rdap.centralnic.com/stcgroup", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.stcgroup", @@ -160526,31 +160551,7 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.stcgroup", - "rdap_server": "https://rdap.centralnic.com/stcgroup", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "stockholm", @@ -160575,6 +160576,29 @@ "date_removed": null } }, + "registry_url": "http://www.stockholm.se/", + "whois_server": "whois.nic.stockholm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-17", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.stockholm", @@ -160652,30 +160676,7 @@ } ] } - ], - "registry_url": "http://www.stockholm.se/", - "whois_server": "whois.nic.stockholm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-17", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] }, { "tld": "storage", @@ -160700,6 +160701,34 @@ "date_removed": null } }, + "registry_url": "https://nic.storage/", + "whois_server": "whois.nic.storage", + "rdap_server": "https://rdap.centralnic.com/storage", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.storage", @@ -160777,35 +160806,7 @@ } ] } - ], - "registry_url": "https://nic.storage/", - "whois_server": "whois.nic.storage", - "rdap_server": "https://rdap.centralnic.com/storage", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "store", @@ -160830,6 +160831,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.store", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2016-02-11", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -160907,35 +160936,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.store", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2016-02-11", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "stream", @@ -160960,6 +160961,32 @@ "date_removed": null } }, + "registry_url": "http://nic.stream", + "whois_server": "whois.nic.stream", + "rdap_server": "https://rdap.nic.stream/", + "tld_created": "2016-02-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.stream", @@ -160985,7 +161012,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161075,33 +161102,7 @@ } ] } - ], - "registry_url": "http://nic.stream", - "whois_server": "whois.nic.stream", - "rdap_server": "https://rdap.nic.stream/", - "tld_created": "2016-02-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "studio", @@ -161126,6 +161127,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.studio", @@ -161241,34 +161269,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "study", @@ -161293,6 +161294,34 @@ "date_removed": null } }, + "registry_url": "http://nic.study", + "whois_server": "whois.nic.study", + "rdap_server": "https://rdap.nic.study/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.study", @@ -161318,7 +161347,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161356,7 +161385,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161364,7 +161393,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161375,7 +161404,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161383,7 +161412,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161394,7 +161423,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161402,41 +161431,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.study", - "whois_server": "whois.nic.study", - "rdap_server": "https://rdap.nic.study/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "style", @@ -161461,6 +161462,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.style", @@ -161576,34 +161604,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "su", @@ -161617,6 +161618,15 @@ "tech": "Technical Center of Internet" } }, + "whois_server": "whois.tcinet.ru", + "tld_created": "1990-09-19", + "tld_updated": [ + "2026-04-22" + ], + "annotations": { + "country_name_iso": "Soviet Union", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -161713,16 +161723,7 @@ } ] } - ], - "whois_server": "whois.tcinet.ru", - "tld_created": "1990-09-19", - "tld_updated": [ - "2026-04-22" - ], - "annotations": { - "country_name_iso": "Soviet Union", - "geographic_scope": "country" - } + ] }, { "tld": "sucks", @@ -161747,6 +161748,26 @@ "date_removed": null } }, + "registry_url": "http://www.voxpopregistry.com", + "whois_server": "whois.nic.sucks", + "rdap_server": "https://rdap.nic.sucks/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2023-12-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.sucks", @@ -161772,7 +161793,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161810,7 +161831,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161818,7 +161839,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161829,7 +161850,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161837,7 +161858,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161848,7 +161869,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -161856,33 +161877,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.voxpopregistry.com", - "whois_server": "whois.nic.sucks", - "rdap_server": "https://rdap.nic.sucks/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2023-12-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "supplies", @@ -161907,6 +161908,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.supplies", @@ -162022,7 +162050,31 @@ } ] } - ], + ] + }, + { + "tld": "supply", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1591-23028", + "registry_operator_country_code": null, + "date_contract_signed": "2013-12-19", + "date_delegated": "2014-02-21", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2014-02-13", @@ -162049,30 +162101,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "supply", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1591-23028", - "registry_operator_country_code": null, - "date_contract_signed": "2013-12-19", - "date_delegated": "2014-02-21", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -162189,10 +162217,34 @@ } ] } - ], + ] + }, + { + "tld": "support", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1568-22230", + "registry_operator_country_code": null, + "date_contract_signed": "2013-10-24", + "date_delegated": "2013-12-18", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", + "tld_created": "2013-12-12", "tld_updated": [ "2025-10-07" ], @@ -162216,30 +162268,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "support", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1568-22230", - "registry_operator_country_code": null, - "date_contract_signed": "2013-10-24", - "date_delegated": "2013-12-18", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -162356,34 +162384,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "surf", @@ -162408,6 +162409,34 @@ "date_removed": null } }, + "registry_url": "http://nic.surf/", + "whois_server": "whois.nic.surf", + "rdap_server": "https://rdap.nic.surf/", + "tld_created": "2014-03-13", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.surf", @@ -162433,7 +162462,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162471,7 +162500,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162479,7 +162508,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162490,7 +162519,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162498,7 +162527,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162509,7 +162538,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162517,41 +162546,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.surf/", - "whois_server": "whois.nic.surf", - "rdap_server": "https://rdap.nic.surf/", - "tld_created": "2014-03-13", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "surgery", @@ -162576,6 +162577,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.surgery", @@ -162691,34 +162719,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "suzuki", @@ -162743,6 +162744,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.suzuki", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-06-26", + "tld_updated": [ + "2019-08-27" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -162768,7 +162794,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -162813,32 +162839,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.suzuki", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-06-26", - "tld_updated": [ - "2019-08-27" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "sv", @@ -162852,6 +162853,23 @@ "tech": "Conexión al Desarrollo de El Salvador" } }, + "registry_url": "http://www.svnet.sv", + "tld_created": "1994-11-04", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "country_name_iso": "El Salvador", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -162896,9 +162914,9 @@ "ipv4": [ { "ip": "168.243.17.2", - "asn": 271966, - "as_org": "Red Avanzada de Investigacion, Ciencia y Educacion Salvadorena", - "as_country": "SV" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -162953,24 +162971,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.svnet.sv", - "tld_created": "1994-11-04", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "country_name_iso": "El Salvador", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "swatch", @@ -162995,14 +162996,38 @@ "date_removed": null } }, + "registry_url": "http://www.swatchgroup.com/", + "rdap_server": "https://rdap.nominet.uk/swatch/", + "tld_created": "2015-04-23", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.swatch", "ipv4": [ { "ip": "213.248.219.139", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -163020,8 +163045,8 @@ "ipv4": [ { "ip": "103.49.83.139", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -163148,31 +163173,7 @@ } ] } - ], - "registry_url": "http://www.swatchgroup.com/", - "rdap_server": "https://rdap.nominet.uk/swatch/", - "tld_created": "2015-04-23", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "swiftcover", @@ -163227,6 +163228,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.swiss", + "whois_server": "whois.nic.swiss", + "rdap_server": "https://rdap.nic.swiss", + "tld_created": "2015-04-16", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien", + "RcodeZero" + ], + "as_org_slugs": [ + "knipp-medien", + "rcodezero" + ], + "cultural_affiliation": "swiss" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -163361,31 +163386,7 @@ } ] } - ], - "registry_url": "http://www.nic.swiss", - "whois_server": "whois.nic.swiss", - "rdap_server": "https://rdap.nic.swiss", - "tld_created": "2015-04-16", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien", - "RcodeZero" - ], - "as_org_slugs": [ - "knipp-medien", - "rcodezero" - ], - "cultural_affiliation": "swiss" - } + ] }, { "tld": "sx", @@ -163399,6 +163400,26 @@ "tech": "Canadian Internet Registration Authority (CIRA)" } }, + "registry_url": "http://registry.sx", + "whois_server": "whois.sx", + "tld_created": "2010-12-20", + "tld_updated": [ + "2026-01-26" + ], + "annotations": { + "iana_tech_alias": "CIRA", + "iana_tech_slug": "cira", + "country_name_iso": "Sint Maarten (Dutch part)", + "as_org_aliases": [ + "CIRA", + "DENIC" + ], + "as_org_slugs": [ + "cira", + "denic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.ns.sx", @@ -163476,27 +163497,7 @@ } ] } - ], - "registry_url": "http://registry.sx", - "whois_server": "whois.sx", - "tld_created": "2010-12-20", - "tld_updated": [ - "2026-01-26" - ], - "annotations": { - "iana_tech_alias": "CIRA", - "iana_tech_slug": "cira", - "country_name_iso": "Sint Maarten (Dutch part)", - "as_org_aliases": [ - "CIRA", - "DENIC" - ], - "as_org_slugs": [ - "cira", - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "sy", @@ -163510,6 +163511,22 @@ "tech": "National Agency for Network Services (NANS)" } }, + "registry_url": "http://tld.sy", + "whois_server": "whois.tld.sy", + "tld_created": "1996-02-20", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Syrian Arab Republic", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.tld.sy", @@ -163562,22 +163579,6 @@ ] } ], - "registry_url": "http://tld.sy", - "whois_server": "whois.tld.sy", - "tld_created": "1996-02-20", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Syrian Arab Republic", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--ogbpf8fl" ] @@ -163605,6 +163606,31 @@ "date_removed": null } }, + "registry_url": "http://iconic.sydney", + "whois_server": "whois.nic.sydney", + "rdap_server": "https://rdap.nic.sydney/", + "tld_created": "2014-10-30", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.sydney", @@ -163630,7 +163656,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163668,7 +163694,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163676,7 +163702,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163687,7 +163713,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163695,7 +163721,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163706,7 +163732,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -163714,38 +163740,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://iconic.sydney", - "whois_server": "whois.nic.sydney", - "rdap_server": "https://rdap.nic.sydney/", - "tld_created": "2014-10-30", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "symantec", @@ -163800,6 +163801,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.systems", @@ -163915,34 +163943,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "sz", @@ -163956,6 +163957,15 @@ "tech": "Swaziland ISP Association" } }, + "registry_url": "http://www.sispa.org.sz/", + "tld_created": "1993-07-19", + "tld_updated": [ + "2025-07-14" + ], + "annotations": { + "country_name_iso": "Eswatini", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.sispa.org.sz", @@ -164007,16 +164017,7 @@ } ] } - ], - "registry_url": "http://www.sispa.org.sz/", - "tld_created": "1993-07-19", - "tld_updated": [ - "2025-07-14" - ], - "annotations": { - "country_name_iso": "Eswatini", - "geographic_scope": "country" - } + ] }, { "tld": "tab", @@ -164041,6 +164042,27 @@ "date_removed": null } }, + "registry_url": "http://nic.tab", + "whois_server": "whois.nic.tab", + "rdap_server": "https://rdap.nic.tab/", + "tld_created": "2015-09-04", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tab", @@ -164066,7 +164088,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164104,7 +164126,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164112,7 +164134,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164123,7 +164145,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164131,7 +164153,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164142,7 +164164,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164150,34 +164172,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.tab", - "whois_server": "whois.nic.tab", - "rdap_server": "https://rdap.nic.tab/", - "tld_created": "2015-09-04", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "taipei", @@ -164202,6 +164203,29 @@ "date_removed": null } }, + "registry_url": "http://www.nictaipei.net", + "whois_server": "whois.nic.taipei", + "rdap_server": "https://rdap.nic.taipei/", + "tld_created": "2014-09-25", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.taipei", @@ -164227,7 +164251,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164317,30 +164341,7 @@ } ] } - ], - "registry_url": "http://www.nictaipei.net", - "whois_server": "whois.nic.taipei", - "rdap_server": "https://rdap.nic.taipei/", - "tld_created": "2014-09-25", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "talk", @@ -164365,14 +164366,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.talk", + "rdap_server": "https://rdap.nominet.uk/talk/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.talk", "ipv4": [ { "ip": "213.248.218.83", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -164390,8 +164420,8 @@ "ipv4": [ { "ip": "103.49.82.83", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -164518,36 +164548,7 @@ } ] } - ], - "registry_url": "http://www.nic.talk", - "rdap_server": "https://rdap.nominet.uk/talk/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "taobao", @@ -164572,6 +164573,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.taobao", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.taobao", @@ -164649,30 +164673,7 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.taobao", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "target", @@ -164697,6 +164698,28 @@ "date_removed": null } }, + "registry_url": "http://www.target.com", + "rdap_server": "https://rdap.nic.target/", + "tld_created": "2016-07-21", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.target", @@ -164722,7 +164745,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -164812,29 +164835,7 @@ } ] } - ], - "registry_url": "http://www.target.com", - "rdap_server": "https://rdap.nic.target/", - "tld_created": "2016-07-21", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "tatamotors", @@ -164859,6 +164860,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.tatamotors", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tatamotors", @@ -164936,29 +164959,7 @@ } ] } - ], - "whois_server": "whois.nic.tatamotors", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tatar", @@ -164983,6 +164984,23 @@ "date_removed": null } }, + "registry_url": "http://www.dottatar.ru", + "whois_server": "whois.nic.tatar", + "rdap_server": "https://whois.nic.tatar/rdap/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-10-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "tatar" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -165079,24 +165097,7 @@ } ] } - ], - "registry_url": "http://www.dottatar.ru", - "whois_server": "whois.nic.tatar", - "rdap_server": "https://whois.nic.tatar/rdap/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-10-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "tatar" - } + ] }, { "tld": "tattoo", @@ -165121,6 +165122,34 @@ "date_removed": null } }, + "registry_url": "http://nic.tattoo/", + "whois_server": "whois.nic.tattoo", + "rdap_server": "https://rdap.nic.tattoo", + "tld_created": "2013-11-08", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tattoo", @@ -165146,7 +165175,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165184,7 +165213,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165192,7 +165221,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165203,7 +165232,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165211,7 +165240,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165222,7 +165251,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -165230,41 +165259,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.tattoo/", - "whois_server": "whois.nic.tattoo", - "rdap_server": "https://rdap.nic.tattoo", - "tld_created": "2013-11-08", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "tax", @@ -165289,6 +165290,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tax", @@ -165404,10 +165432,34 @@ } ] } - ], + ] + }, + { + "tld": "taxi", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1558-74769", + "registry_operator_country_code": null, + "date_contract_signed": "2015-03-19", + "date_delegated": "2015-05-07", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", + "tld_created": "2015-04-30", "tld_updated": [ "2025-10-07" ], @@ -165431,30 +165483,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "taxi", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1558-74769", - "registry_operator_country_code": null, - "date_contract_signed": "2015-03-19", - "date_delegated": "2015-05-07", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -165571,34 +165599,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tc", @@ -165612,6 +165613,16 @@ "tech": "NIC TC Internet Hizmetleri A.S." } }, + "registry_url": "HTTPS://WWW.NIC.TC", + "whois_server": "whois.nic.tc", + "tld_created": "1997-01-27", + "tld_updated": [ + "2026-03-27" + ], + "annotations": { + "country_name_iso": "Turks and Caicos Islands", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "root1.zone.tc", @@ -165737,17 +165748,7 @@ } ] } - ], - "registry_url": "HTTPS://WWW.NIC.TC", - "whois_server": "whois.nic.tc", - "tld_created": "1997-01-27", - "tld_updated": [ - "2026-03-27" - ], - "annotations": { - "country_name_iso": "Turks and Caicos Islands", - "geographic_scope": "country" - } + ] }, { "tld": "tci", @@ -165772,14 +165773,39 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/tci/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -165797,8 +165823,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -165925,32 +165951,7 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/tci/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "td", @@ -165964,6 +165965,22 @@ "tech": "ADETIC" } }, + "registry_url": "http://www.nic.td", + "whois_server": "whois.nic.td", + "tld_created": "1997-11-03", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "country_name_iso": "Chad", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycastdns1.nic.td", @@ -166034,23 +166051,7 @@ } ] } - ], - "registry_url": "http://www.nic.td", - "whois_server": "whois.nic.td", - "tld_created": "1997-11-03", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "country_name_iso": "Chad", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tdk", @@ -166075,6 +166076,29 @@ "date_removed": null } }, + "registry_url": "http://nic.tdk", + "whois_server": "whois.nic.tdk", + "rdap_server": "https://rdap.nic.tdk/", + "tld_created": "2016-03-10", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tdk", @@ -166100,7 +166124,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -166190,30 +166214,7 @@ } ] } - ], - "registry_url": "http://nic.tdk", - "whois_server": "whois.nic.tdk", - "rdap_server": "https://rdap.nic.tdk/", - "tld_created": "2016-03-10", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "team", @@ -166238,6 +166239,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.team", @@ -166353,34 +166381,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tech", @@ -166405,6 +166406,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.tech", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -166482,35 +166511,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.tech", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "technology", @@ -166535,6 +166536,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-08", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.technology", @@ -166650,34 +166678,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-08", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tel", @@ -166702,6 +166703,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tel", + "whois_server": "whois.nic.tel", + "rdap_server": "https://rdap.nic.tel/", + "tld_created": "2007-03-01", + "tld_updated": [ + "2024-03-18" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -166779,30 +166803,7 @@ } ] } - ], - "registry_url": "http://www.nic.tel", - "whois_server": "whois.nic.tel", - "rdap_server": "https://rdap.nic.tel/", - "tld_created": "2007-03-01", - "tld_updated": [ - "2024-03-18" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "telecity", @@ -166886,6 +166887,29 @@ "date_removed": null } }, + "registry_url": "http://www.temasek.com.sg/nictemasek", + "whois_server": "whois.nic.temasek", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.temasek", @@ -166963,30 +166987,7 @@ } ] } - ], - "registry_url": "http://www.temasek.com.sg/nictemasek", - "whois_server": "whois.nic.temasek", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tennis", @@ -167011,6 +167012,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-01-29", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tennis", @@ -167126,34 +167154,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-01-29", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "teva", @@ -167178,6 +167179,29 @@ "date_removed": null } }, + "registry_url": "http://nic.teva", + "whois_server": "whois.nic.teva", + "rdap_server": "https://rdap.nic.teva/", + "tld_created": "2016-02-19", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.teva", @@ -167203,7 +167227,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -167293,30 +167317,7 @@ } ] } - ], - "registry_url": "http://nic.teva", - "whois_server": "whois.nic.teva", - "rdap_server": "https://rdap.nic.teva/", - "tld_created": "2016-02-19", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "tf", @@ -167330,6 +167331,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.tf", + "whois_server": "whois.nic.tf", + "rdap_server": "https://rdap.nic.tf/", + "tld_created": "1997-08-26", + "tld_updated": [ + "2026-03-13" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "French Southern Territories", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -167388,33 +167415,7 @@ } ] } - ], - "registry_url": "http://www.nic.tf", - "whois_server": "whois.nic.tf", - "rdap_server": "https://rdap.nic.tf/", - "tld_created": "1997-08-26", - "tld_updated": [ - "2026-03-13" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "French Southern Territories", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tg", @@ -167428,6 +167429,16 @@ "tech": "C.A.F.E. Informatique et Telecommunications" } }, + "registry_url": "http://www.nic.tg", + "whois_server": "whois.nic.tg", + "tld_created": "1996-09-05", + "tld_updated": [ + "2021-03-08" + ], + "annotations": { + "country_name_iso": "Togo", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.admin.net", @@ -167553,17 +167564,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.tg", - "whois_server": "whois.nic.tg", - "tld_created": "1996-09-05", - "tld_updated": [ - "2021-03-08" - ], - "annotations": { - "country_name_iso": "Togo", - "geographic_scope": "country" - } + ] }, { "tld": "th", @@ -167577,6 +167578,26 @@ "tech": "Thai Network Information Center Foundation" } }, + "registry_url": "http://www.thnic.co.th", + "whois_server": "whois.thnic.co.th", + "rdap_server": "https://rdap.thains.co.th", + "tld_created": "1988-09-07", + "tld_updated": [ + "2025-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Thailand", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.thains.co.th", @@ -167686,26 +167707,6 @@ ] } ], - "registry_url": "http://www.thnic.co.th", - "whois_server": "whois.thnic.co.th", - "rdap_server": "https://rdap.thains.co.th", - "tld_created": "1988-09-07", - "tld_updated": [ - "2025-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Thailand", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--o3cw4h" ] @@ -167733,6 +167734,28 @@ "date_removed": null } }, + "registry_url": "http://www.homedepot.com", + "whois_server": "whois.nic.thd", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.thd", @@ -167810,29 +167833,7 @@ } ] } - ], - "registry_url": "http://www.homedepot.com", - "whois_server": "whois.nic.thd", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "theater", @@ -167857,6 +167858,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.theater", @@ -167972,34 +168000,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "theatre", @@ -168024,6 +168025,34 @@ "date_removed": null } }, + "registry_url": "https://nic.theatre/", + "whois_server": "whois.nic.theatre", + "rdap_server": "https://rdap.centralnic.com/theatre", + "tld_created": "2015-08-13", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.theatre", @@ -168101,35 +168130,7 @@ } ] } - ], - "registry_url": "https://nic.theatre/", - "whois_server": "whois.nic.theatre", - "rdap_server": "https://rdap.centralnic.com/theatre", - "tld_created": "2015-08-13", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "tiaa", @@ -168154,6 +168155,29 @@ "date_removed": null } }, + "registry_url": "http://tiaa.org", + "whois_server": "whois.nic.tiaa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-24", + "tld_updated": [ + "2024-03-28" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tiaa", @@ -168269,30 +168293,7 @@ } ] } - ], - "registry_url": "http://tiaa.org", - "whois_server": "whois.nic.tiaa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-24", - "tld_updated": [ - "2024-03-28" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tickets", @@ -168317,6 +168318,34 @@ "date_removed": null } }, + "registry_url": "http://tickets.tickets", + "whois_server": "whois.nic.tickets", + "rdap_server": "https://rdap.centralnic.com/tickets", + "tld_created": "2015-03-19", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.tickets", @@ -168394,35 +168423,7 @@ } ] } - ], - "registry_url": "http://tickets.tickets", - "whois_server": "whois.nic.tickets", - "rdap_server": "https://rdap.centralnic.com/tickets", - "tld_created": "2015-03-19", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "tienda", @@ -168447,6 +168448,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tienda", @@ -168562,34 +168590,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tiffany", @@ -168644,6 +168645,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tips", @@ -168759,10 +168787,34 @@ } ] } - ], + ] + }, + { + "tld": "tires", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1645-45928", + "registry_operator_country_code": null, + "date_contract_signed": "2014-11-07", + "date_delegated": "2014-12-18", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", + "tld_created": "2014-12-11", "tld_updated": [ "2025-10-07" ], @@ -168786,30 +168838,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "tires", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1645-45928", - "registry_operator_country_code": null, - "date_contract_signed": "2014-11-07", - "date_delegated": "2014-12-18", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -168926,34 +168954,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tirol", @@ -168978,6 +168979,30 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tirol", + "whois_server": "whois.nic.tirol", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2014-05-29", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -169036,31 +169061,7 @@ } ] } - ], - "registry_url": "http://www.nic.tirol", - "whois_server": "whois.nic.tirol", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2014-05-29", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "tj", @@ -169074,6 +169075,15 @@ "tech": "Information Technology Center" } }, + "registry_url": "http://www.nic.tj", + "tld_created": "1997-12-11", + "tld_updated": [ + "2020-03-09" + ], + "annotations": { + "country_name_iso": "Tajikistan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.nic.tj", @@ -169131,22 +169141,13 @@ "ipv6": [ { "ip": "2001:67c:e0::117", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } - ], - "registry_url": "http://www.nic.tj", - "tld_created": "1997-12-11", - "tld_updated": [ - "2020-03-09" - ], - "annotations": { - "country_name_iso": "Tajikistan", - "geographic_scope": "country" - } + ] }, { "tld": "tjmaxx", @@ -169171,6 +169172,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.tjmaxx/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tjmaxx", @@ -169196,7 +169223,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -169286,9 +169313,33 @@ } ] } - ], + ] + }, + { + "tld": "tjx", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "The TJX Companies, Inc.", + "admin": "FairWinds Partners, LLC", + "tech": "GoDaddy Registry" + }, + "icann": { + "registry_operator": "The TJX Companies, Inc.", + "specification_13": true, + "third_or_lower_level_registration": false, + "application_id": "1-1764-49592", + "registry_operator_country_code": null, + "date_contract_signed": "2015-07-16", + "date_delegated": "2016-07-15", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tjmaxx/", + "rdap_server": "https://rdap.nic.tjx/", "tld_created": "2016-04-07", "tld_updated": [ "2024-05-11" @@ -169312,30 +169363,6 @@ "as_org_slugs": [ "ultradns" ] - } - }, - { - "tld": "tjx", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "The TJX Companies, Inc.", - "admin": "FairWinds Partners, LLC", - "tech": "GoDaddy Registry" - }, - "icann": { - "registry_operator": "The TJX Companies, Inc.", - "specification_13": true, - "third_or_lower_level_registration": false, - "application_id": "1-1764-49592", - "registry_operator_country_code": null, - "date_contract_signed": "2015-07-16", - "date_delegated": "2016-07-15", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -169362,7 +169389,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -169452,33 +169479,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tjx/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "tk", @@ -169492,6 +169493,16 @@ "tech": "BV Dot TK" } }, + "registry_url": "http://www.dot.tk", + "whois_server": "whois.dot.tk", + "tld_created": "1997-11-07", + "tld_updated": [ + "2019-02-12" + ], + "annotations": { + "country_name_iso": "Tokelau", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.ns.tk", @@ -169569,17 +169580,7 @@ } ] } - ], - "registry_url": "http://www.dot.tk", - "whois_server": "whois.dot.tk", - "tld_created": "1997-11-07", - "tld_updated": [ - "2019-02-12" - ], - "annotations": { - "country_name_iso": "Tokelau", - "geographic_scope": "country" - } + ] }, { "tld": "tkmaxx", @@ -169604,6 +169605,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.tkmaxx/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.tkmaxx", @@ -169629,7 +169656,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -169719,33 +169746,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.tkmaxx/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "tl", @@ -169759,6 +169760,22 @@ "tech": "CoCCA Registry Services (NZ) Limited" } }, + "registry_url": "http://www.nic.tl", + "whois_server": "whois.nic.tl", + "tld_created": "2005-03-23", + "tld_updated": [ + "2022-11-21" + ], + "annotations": { + "country_name_iso": "Timor-Leste", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns.anycast.nic.tl", @@ -169810,23 +169827,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.tl", - "whois_server": "whois.nic.tl", - "tld_created": "2005-03-23", - "tld_updated": [ - "2022-11-21" - ], - "annotations": { - "country_name_iso": "Timor-Leste", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tm", @@ -169840,6 +169841,22 @@ "tech": "TM Domain Registry Ltd" } }, + "registry_url": "http://www.nic.tm/", + "whois_server": "whois.nic.tm", + "tld_created": "1997-05-30", + "tld_updated": [ + "2025-06-18" + ], + "annotations": { + "country_name_iso": "Turkmenistan", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-a1.tm", @@ -169960,23 +169977,7 @@ } ] } - ], - "registry_url": "http://www.nic.tm/", - "whois_server": "whois.nic.tm", - "tld_created": "1997-05-30", - "tld_updated": [ - "2025-06-18" - ], - "annotations": { - "country_name_iso": "Turkmenistan", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tmall", @@ -170001,6 +170002,29 @@ "date_removed": null } }, + "registry_url": "http://www.alibabagroup.com", + "whois_server": "whois.nic.tmall", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tmall", @@ -170078,30 +170102,7 @@ } ] } - ], - "registry_url": "http://www.alibabagroup.com", - "whois_server": "whois.nic.tmall", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tn", @@ -170115,6 +170116,24 @@ "tech": "Agence Tunisienne d'Internet" } }, + "registry_url": "http://whois.ati.tn", + "whois_server": "whois.ati.tn", + "tld_created": "1991-05-17", + "tld_updated": [ + "2024-08-16" + ], + "annotations": { + "country_name_iso": "Tunisia", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns-tn.afrinic.net", @@ -170231,24 +170250,6 @@ ] } ], - "registry_url": "http://whois.ati.tn", - "whois_server": "whois.ati.tn", - "tld_created": "1991-05-17", - "tld_updated": [ - "2024-08-16" - ], - "annotations": { - "country_name_iso": "Tunisia", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--pgbs0dh" ] @@ -170265,6 +170266,28 @@ "tech": "Tucows.com" } }, + "registry_url": "http://www.tonic.to/", + "whois_server": "whois.tonicregistry.to", + "rdap_server": "https://rdap.tonicregistry.to/rdap/", + "tld_created": "1995-12-18", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "country_name_iso": "Tonga", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -170342,29 +170365,7 @@ } ] } - ], - "registry_url": "http://www.tonic.to/", - "whois_server": "whois.tonicregistry.to", - "rdap_server": "https://rdap.tonicregistry.to/rdap/", - "tld_created": "1995-12-18", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "country_name_iso": "Tonga", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "today", @@ -170389,6 +170390,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.today", @@ -170504,34 +170532,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tokyo", @@ -170556,6 +170557,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.tokyo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -170581,7 +170611,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -170626,36 +170656,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.tokyo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "tools", @@ -170680,6 +170681,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tools", @@ -170795,34 +170823,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "top", @@ -170847,6 +170848,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.top", + "whois_server": "whois.nic.top", + "rdap_server": "https://rdap.zdnsgtld.com/top/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2026-04-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -170901,17 +170922,17 @@ "ipv4": [ { "ip": "203.119.82.1", - "asn": 24149, - "as_org": "ZDNS Internet Domain Name System Beijing Engineering Resrarch Center Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [ { "ip": "2401:8d00:15::1", - "asn": 24149, - "as_org": "ZDNS Internet Domain Name System Beijing Engineering Resrarch Center Ltd.", - "as_country": "CN" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ] }, @@ -170951,27 +170972,7 @@ } ] } - ], - "registry_url": "http://www.nic.top", - "whois_server": "whois.nic.top", - "rdap_server": "https://rdap.zdnsgtld.com/top/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2026-04-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "toray", @@ -170996,6 +170997,29 @@ "date_removed": null } }, + "registry_url": "http://www.toray.com", + "whois_server": "whois.nic.toray", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-04-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -171021,7 +171045,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -171066,30 +171090,7 @@ } ] } - ], - "registry_url": "http://www.toray.com", - "whois_server": "whois.nic.toray", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-04-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "toshiba", @@ -171114,6 +171115,31 @@ "date_removed": null } }, + "registry_url": "http://nic.toshiba", + "whois_server": "whois.nic.toshiba", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -171139,7 +171165,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -171184,32 +171210,7 @@ } ] } - ], - "registry_url": "http://nic.toshiba", - "whois_server": "whois.nic.toshiba", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "total", @@ -171234,6 +171235,31 @@ "date_removed": null } }, + "registry_url": "http://www.nic.total", + "whois_server": "whois.nic.total", + "rdap_server": "https://rdap.nic.total", + "tld_created": "2016-02-05", + "tld_updated": [ + "2024-09-13" + ], + "annotations": { + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ] + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -171292,32 +171318,7 @@ } ] } - ], - "registry_url": "http://www.nic.total", - "whois_server": "whois.nic.total", - "rdap_server": "https://rdap.nic.total", - "tld_created": "2016-02-05", - "tld_updated": [ - "2024-09-13" - ], - "annotations": { - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ] - } + ] }, { "tld": "tours", @@ -171342,6 +171343,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.tours", @@ -171457,10 +171485,34 @@ } ] } - ], + ] + }, + { + "tld": "town", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1655-79604", + "registry_operator_country_code": null, + "date_contract_signed": "2014-03-06", + "date_delegated": "2014-04-11", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-12", + "tld_created": "2014-04-03", "tld_updated": [ "2025-10-07" ], @@ -171484,30 +171536,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "town", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1655-79604", - "registry_operator_country_code": null, - "date_contract_signed": "2014-03-06", - "date_delegated": "2014-04-11", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -171624,34 +171652,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "toyota", @@ -171676,6 +171677,29 @@ "date_removed": null } }, + "registry_url": "http://toyota.jp/", + "whois_server": "whois.nic.toyota", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-07-16", + "tld_updated": [ + "2023-06-20" + ], + "annotations": { + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -171701,7 +171725,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -171746,30 +171770,7 @@ } ] } - ], - "registry_url": "http://toyota.jp/", - "whois_server": "whois.nic.toyota", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-07-16", - "tld_updated": [ - "2023-06-20" - ], - "annotations": { - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "toys", @@ -171794,6 +171795,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.toys", @@ -171909,34 +171937,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tp", @@ -171963,6 +171964,24 @@ "tech": "Bilgi Teknolojileri ve İletişim Kurumu" } }, + "registry_url": "http://www.trabis.gov.tr", + "whois_server": "whois.trabis.gov.tr", + "tld_created": "1990-09-17", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "country_name_iso": "Türkiye", + "as_org_aliases": [ + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns43.ns.tr", @@ -172062,25 +172081,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.trabis.gov.tr", - "whois_server": "whois.trabis.gov.tr", - "tld_created": "1990-09-17", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "country_name_iso": "Türkiye", - "as_org_aliases": [ - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "trade", @@ -172105,6 +172106,32 @@ "date_removed": null } }, + "registry_url": "http://nic.trade", + "whois_server": "whois.nic.trade", + "rdap_server": "https://rdap.nic.trade/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.trade", @@ -172130,7 +172157,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -172220,33 +172247,7 @@ } ] } - ], - "registry_url": "http://nic.trade", - "whois_server": "whois.nic.trade", - "rdap_server": "https://rdap.nic.trade/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "trading", @@ -172271,6 +172272,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-03-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.trading", @@ -172386,10 +172414,34 @@ } ] } - ], + ] + }, + { + "tld": "training", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1652-41660", + "registry_operator_country_code": null, + "date_contract_signed": "2013-11-07", + "date_delegated": "2013-12-28", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-03-06", + "tld_created": "2013-12-19", "tld_updated": [ "2025-10-07" ], @@ -172413,30 +172465,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "training", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1652-41660", - "registry_operator_country_code": null, - "date_contract_signed": "2013-11-07", - "date_delegated": "2013-12-28", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -172553,34 +172581,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "travel", @@ -172605,6 +172606,34 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2005-07-27", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.travel", @@ -172720,35 +172749,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2005-07-27", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "travelchannel", @@ -172803,6 +172804,35 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.travelers", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.travelers", @@ -172880,9 +172910,33 @@ } ] } - ], + ] + }, + { + "tld": "travelersinsurance", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Travelers TLD, LLC", + "admin": "Travelers TLD, LLC", + "tech": "Afilias" + }, + "icann": { + "registry_operator": "Travelers TLD, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1895-33687", + "registry_operator_country_code": null, + "date_contract_signed": "2015-03-26", + "date_delegated": "2015-12-15", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.travelers", + "whois_server": "whois.nic.travelersinsurance", "rdap_server": "https://rdap.identitydigital.services/rdap/", "tld_created": "2015-11-25", "tld_updated": [ @@ -172900,7 +172954,6 @@ "rdap_source": "IANA", "registry_agreement_types": [ "base", - "brand", "non_sponsored" ], "as_org_aliases": [ @@ -172909,30 +172962,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "travelersinsurance", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Travelers TLD, LLC", - "admin": "Travelers TLD, LLC", - "tech": "Afilias" - }, - "icann": { - "registry_operator": "Travelers TLD, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1895-33687", - "registry_operator_country_code": null, - "date_contract_signed": "2015-03-26", - "date_delegated": "2015-12-15", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -173011,35 +173040,7 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.travelersinsurance", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "trust", @@ -173064,6 +173065,30 @@ "date_removed": null } }, + "registry_url": "https://internetnaming.co", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2014-11-26", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -173141,31 +173166,7 @@ } ] } - ], - "registry_url": "https://internetnaming.co", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2014-11-26", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "trv", @@ -173190,6 +173191,34 @@ "date_removed": null } }, + "registry_url": "http://www.travelers.com", + "whois_server": "whois.nic.trv", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_sponsor_alias": "Travelers Insurance", + "iana_sponsor_slug": "travelers-insurance", + "iana_admin_alias": "Travelers Insurance", + "iana_admin_slug": "travelers-insurance", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Travelers Insurance", + "icann_registry_operator_slug": "travelers-insurance", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.trv", @@ -173267,35 +173296,7 @@ } ] } - ], - "registry_url": "http://www.travelers.com", - "whois_server": "whois.nic.trv", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_sponsor_alias": "Travelers Insurance", - "iana_sponsor_slug": "travelers-insurance", - "iana_admin_alias": "Travelers Insurance", - "iana_admin_slug": "travelers-insurance", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Travelers Insurance", - "icann_registry_operator_slug": "travelers-insurance", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tt", @@ -173309,6 +173310,23 @@ "tech": "TTNIC" } }, + "registry_url": "http://www.nic.tt", + "tld_created": "1991-09-03", + "tld_updated": [ + "2025-08-22" + ], + "annotations": { + "country_name_iso": "Trinidad and Tobago", + "as_org_aliases": [ + "LACTLD", + "Packet Clearing House" + ], + "as_org_slugs": [ + "lactld", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -173367,24 +173385,7 @@ } ] } - ], - "registry_url": "http://www.nic.tt", - "tld_created": "1991-09-03", - "tld_updated": [ - "2025-08-22" - ], - "annotations": { - "country_name_iso": "Trinidad and Tobago", - "as_org_aliases": [ - "LACTLD", - "Packet Clearing House" - ], - "as_org_slugs": [ - "lactld", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tube", @@ -173409,6 +173410,26 @@ "date_removed": null } }, + "registry_url": "http://get.tube", + "whois_server": "whois.nic.tube", + "rdap_server": "https://rdap.nic.tube/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2025-04-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -173486,27 +173507,7 @@ } ] } - ], - "registry_url": "http://get.tube", - "whois_server": "whois.nic.tube", - "rdap_server": "https://rdap.nic.tube/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2025-04-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "tui", @@ -173531,6 +173532,29 @@ "date_removed": null } }, + "registry_url": "http://www.tuiregistry.com", + "whois_server": "whois.nic.tui", + "rdap_server": "https://rdap.centralnic.com/tui", + "tld_created": "2014-09-18", + "tld_updated": [ + "2024-05-28" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.tui", @@ -173608,30 +173632,7 @@ } ] } - ], - "registry_url": "http://www.tuiregistry.com", - "whois_server": "whois.nic.tui", - "rdap_server": "https://rdap.centralnic.com/tui", - "tld_created": "2014-09-18", - "tld_updated": [ - "2024-05-28" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "tunes", @@ -173656,14 +173657,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.tunes", + "rdap_server": "https://rdap.nominet.uk/tunes/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.tunes", "ipv4": [ { "ip": "213.248.218.84", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -173681,8 +173711,8 @@ "ipv4": [ { "ip": "103.49.82.84", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -173809,10 +173839,34 @@ } ] } - ], - "registry_url": "http://www.nic.tunes", - "rdap_server": "https://rdap.nominet.uk/tunes/", - "tld_created": "2016-01-29", + ] + }, + { + "tld": "tushu", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Amazon Registry Services, Inc.", + "admin": "Amazon Registry Services, Inc.", + "tech": "Nominet" + }, + "icann": { + "registry_operator": "Amazon Registry Services, Inc.", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1318-59070", + "registry_operator_country_code": null, + "date_contract_signed": "2014-12-18", + "date_delegated": "2015-12-14", + "contract_terminated": false, + "date_removed": null + } + }, + "registry_url": "http://www.nic.tushu", + "rdap_server": "https://rdap.nominet.uk/tushu/", + "tld_created": "2015-11-12", "tld_updated": [ "2025-02-14" ], @@ -173838,30 +173892,6 @@ "nominet", "ultradns" ] - } - }, - { - "tld": "tushu", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Amazon Registry Services, Inc.", - "admin": "Amazon Registry Services, Inc.", - "tech": "Nominet" - }, - "icann": { - "registry_operator": "Amazon Registry Services, Inc.", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1318-59070", - "registry_operator_country_code": null, - "date_contract_signed": "2014-12-18", - "date_delegated": "2015-12-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -173869,8 +173899,8 @@ "ipv4": [ { "ip": "213.248.218.85", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -173888,8 +173918,8 @@ "ipv4": [ { "ip": "103.49.82.85", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -174016,36 +174046,7 @@ } ] } - ], - "registry_url": "http://www.nic.tushu", - "rdap_server": "https://rdap.nominet.uk/tushu/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "tv", @@ -174059,6 +174060,26 @@ "tech": "GoDaddy Registry" } }, + "registry_url": "https://turnon.tv/", + "whois_server": "whois.nic.tv", + "rdap_server": "https://rdap.nic.tv/", + "tld_created": "1996-03-18", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "country_name_iso": "Tuvalu", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.tv", @@ -174084,7 +174105,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -174174,27 +174195,7 @@ } ] } - ], - "registry_url": "https://turnon.tv/", - "whois_server": "whois.nic.tv", - "rdap_server": "https://rdap.nic.tv/", - "tld_created": "1996-03-18", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "country_name_iso": "Tuvalu", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "tvs", @@ -174219,6 +174220,30 @@ "date_removed": null } }, + "registry_url": "http://www.tvs.in", + "whois_server": "whois.nic.tvs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2024-09-05" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.tvs", @@ -174296,31 +174321,7 @@ } ] } - ], - "registry_url": "http://www.tvs.in", - "whois_server": "whois.nic.tvs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2024-09-05" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "tw", @@ -174334,6 +174335,28 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "registry_url": "http://rs.twnic.net.tw", + "whois_server": "whois.twnic.net.tw", + "rdap_server": "https://ccrdap.twnic.tw/tw/", + "tld_created": "1989-07-31", + "tld_updated": [ + "2026-04-27" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Taiwan, Province of China", + "as_org_aliases": [ + "Google", + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "google", + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.tw", @@ -174493,28 +174516,6 @@ ] } ], - "registry_url": "http://rs.twnic.net.tw", - "whois_server": "whois.twnic.net.tw", - "rdap_server": "https://ccrdap.twnic.tw/tw/", - "tld_created": "1989-07-31", - "tld_updated": [ - "2026-04-27" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Taiwan, Province of China", - "as_org_aliases": [ - "Google", - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "google", - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - }, "idn": [ "xn--kprw13d", "xn--kpry57d" @@ -174532,6 +174533,26 @@ "tech": "Tanzania Communications Regulatory Authority" } }, + "registry_url": "https://karibu.tz/", + "whois_server": "whois.tznic.or.tz", + "rdap_server": "https://whois.tznic.or.tz/rdap/", + "tld_created": "1995-07-14", + "tld_updated": [ + "2023-07-27" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Tanzania, United Republic of", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -174628,27 +174649,7 @@ } ] } - ], - "registry_url": "https://karibu.tz/", - "whois_server": "whois.tznic.or.tz", - "rdap_server": "https://whois.tznic.or.tz/rdap/", - "tld_created": "1995-07-14", - "tld_updated": [ - "2023-07-27" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Tanzania, United Republic of", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ua", @@ -174662,6 +174663,28 @@ "tech": "Hostmaster Ltd" } }, + "registry_url": "https://www.hostmaster.ua/", + "whois_server": "whois.ua", + "rdap_server": "https://rdap.hostmaster.ua", + "tld_created": "1992-12-01", + "tld_updated": [ + "2024-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Ukraine", + "as_org_aliases": [ + "CZNIC", + "Packet Clearing House", + "RcodeZero" + ], + "as_org_slugs": [ + "cznic", + "packet-clearing-house", + "rcodezero" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "bg.ns.ua", @@ -174809,28 +174832,6 @@ ] } ], - "registry_url": "https://www.hostmaster.ua/", - "whois_server": "whois.ua", - "rdap_server": "https://rdap.hostmaster.ua", - "tld_created": "1992-12-01", - "tld_updated": [ - "2024-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Ukraine", - "as_org_aliases": [ - "CZNIC", - "Packet Clearing House", - "RcodeZero" - ], - "as_org_slugs": [ - "cznic", - "packet-clearing-house", - "rcodezero" - ], - "geographic_scope": "country" - }, "idn": [ "xn--j1amh" ] @@ -174858,84 +174859,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a0.nic.ubank", - "ipv4": [ - { - "ip": "65.22.112.70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6e::70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "a2.nic.ubank", - "ipv4": [ - { - "ip": "65.22.115.70", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:71::70", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "b0.nic.ubank", - "ipv4": [ - { - "ip": "65.22.113.70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:6f::70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "c0.nic.ubank", - "ipv4": [ - { - "ip": "65.22.114.70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:70::70", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - } - ], "registry_url": "http://www.ubank.com.au/", "whois_server": "whois.nic.ubank", "rdap_server": "https://rdap.identitydigital.services/rdap/", @@ -174958,7 +174881,85 @@ "as_org_slugs": [ "identity-digital" ] - } + }, + "nameservers": [ + { + "hostname": "a0.nic.ubank", + "ipv4": [ + { + "ip": "65.22.112.70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6e::70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "a2.nic.ubank", + "ipv4": [ + { + "ip": "65.22.115.70", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:71::70", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "b0.nic.ubank", + "ipv4": [ + { + "ip": "65.22.113.70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:6f::70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "c0.nic.ubank", + "ipv4": [ + { + "ip": "65.22.114.70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:70::70", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + } + ] }, { "tld": "ubs", @@ -174983,6 +174984,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.ubs", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-06-11", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ubs", @@ -175060,29 +175083,7 @@ } ] } - ], - "whois_server": "whois.nic.ubs", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-06-11", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "uconnect", @@ -175126,6 +175127,22 @@ "tech": "East African Help Desk" } }, + "registry_url": "http://www.registry.co.ug", + "whois_server": "whois.co.ug", + "tld_created": "1995-03-08", + "tld_updated": [ + "2025-09-30" + ], + "annotations": { + "country_name_iso": "Uganda", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "anycast.eahd.or.ug", @@ -175208,23 +175225,7 @@ } ] } - ], - "registry_url": "http://www.registry.co.ug", - "whois_server": "whois.co.ug", - "tld_created": "1995-03-08", - "tld_updated": [ - "2025-09-30" - ], - "annotations": { - "country_name_iso": "Uganda", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "uk", @@ -175238,14 +175239,40 @@ "tech": "Nominet UK" } }, + "registry_url": "http://www.nic.uk/", + "whois_server": "whois.nic.uk", + "rdap_server": "https://rdap.nominet.uk/uk/", + "tld_created": "1985-07-24", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "country_name_iso": "United Kingdom", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "dns1.nic.uk", "ipv4": [ { "ip": "213.248.216.1", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -175263,8 +175290,8 @@ "ipv4": [ { "ip": "103.49.80.1", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -175391,33 +175418,7 @@ } ] } - ], - "registry_url": "http://www.nic.uk/", - "whois_server": "whois.nic.uk", - "rdap_server": "https://rdap.nominet.uk/uk/", - "tld_created": "1985-07-24", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "country_name_iso": "United Kingdom", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "um", @@ -175462,6 +175463,29 @@ "date_removed": null } }, + "registry_url": "http://www.chinaunicom.cn", + "whois_server": "whois.nic.unicom", + "rdap_server": "https://rdap.zdnsgtld.com/unicom", + "tld_created": "2016-01-22", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -175559,30 +175583,7 @@ } ] } - ], - "registry_url": "http://www.chinaunicom.cn", - "whois_server": "whois.nic.unicom", - "rdap_server": "https://rdap.zdnsgtld.com/unicom", - "tld_created": "2016-01-22", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "university", @@ -175607,6 +175608,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-03", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.university", @@ -175722,34 +175750,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-03", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "uno", @@ -175774,6 +175775,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.uno", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2026-04-07" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -175851,35 +175880,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.uno", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2026-04-07" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "uol", @@ -175904,6 +175905,20 @@ "date_removed": null } }, + "registry_url": "https://nic.uol/", + "rdap_server": "https://rdap.gtlds.nic.br/", + "tld_created": "2014-08-07", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ] + }, "nameservers": [ { "hostname": "a.dns.br", @@ -176019,21 +176034,7 @@ } ] } - ], - "registry_url": "https://nic.uol/", - "rdap_server": "https://rdap.gtlds.nic.br/", - "tld_created": "2014-08-07", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ] - } + ] }, { "tld": "ups", @@ -176058,6 +176059,29 @@ "date_removed": null } }, + "registry_url": "http://www.ups.com", + "whois_server": "whois.nic.ups", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-14", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.ups", @@ -176135,30 +176159,7 @@ } ] } - ], - "registry_url": "http://www.ups.com", - "whois_server": "whois.nic.ups", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-14", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "us", @@ -176172,6 +176173,30 @@ "tech": "Registry Services, LLC" } }, + "registry_url": "http://www.nic.us", + "whois_server": "whois.nic.us", + "rdap_server": "https://rdap.nic.us/", + "tld_created": "1985-02-15", + "tld_updated": [ + "2024-08-29" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "supplemental", + "country_name_iso": "United States", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "b.cctld.us", @@ -176292,7 +176317,7 @@ "ipv4": [ { "ip": "37.209.194.15", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -176325,31 +176350,7 @@ } ] } - ], - "registry_url": "http://www.nic.us", - "whois_server": "whois.nic.us", - "rdap_server": "https://rdap.nic.us/", - "tld_created": "1985-02-15", - "tld_updated": [ - "2024-08-29" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "supplemental", - "country_name_iso": "United States", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "uy", @@ -176363,6 +176364,24 @@ "tech": "Servicio Central de Informatica (SECIU)" } }, + "registry_url": "http://www.nic.org.uy/", + "whois_server": "whois.nic.org.uy", + "tld_created": "1990-09-10", + "tld_updated": [ + "2022-12-08" + ], + "annotations": { + "country_name_iso": "Uruguay", + "as_org_aliases": [ + "Identity Digital", + "LACTLD" + ], + "as_org_slugs": [ + "identity-digital", + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -176490,25 +176509,7 @@ } ] } - ], - "registry_url": "http://www.nic.org.uy/", - "whois_server": "whois.nic.org.uy", - "tld_created": "1990-09-10", - "tld_updated": [ - "2022-12-08" - ], - "annotations": { - "country_name_iso": "Uruguay", - "as_org_aliases": [ - "Identity Digital", - "LACTLD" - ], - "as_org_slugs": [ - "identity-digital", - "lactld" - ], - "geographic_scope": "country" - } + ] }, { "tld": "uz", @@ -176522,6 +176523,18 @@ "tech": "Single Integrator for Creation and Support of State Information Systems UZINFOCOM" } }, + "registry_url": "http://www.cctld.uz/", + "whois_server": "whois.cctld.uz", + "rdap_server": "https://rdap.cctld.uz", + "tld_created": "1995-04-29", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Uzbekistan", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.uz", @@ -176540,9 +176553,9 @@ "ipv4": [ { "ip": "82.115.52.4", - "asn": 205273, - "as_org": "TELEPORT-DC-AS", - "as_country": "UZ" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -176646,19 +176659,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cctld.uz/", - "whois_server": "whois.cctld.uz", - "rdap_server": "https://rdap.cctld.uz", - "tld_created": "1995-04-29", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Uzbekistan", - "geographic_scope": "country" - } + ] }, { "tld": "va", @@ -176672,6 +176673,14 @@ "tech": "Department of Telecommunications - Vatican Internet Service Provider" } }, + "tld_created": "1995-09-11", + "tld_updated": [ + "2024-12-03" + ], + "annotations": { + "country_name_iso": "Holy See (Vatican City State)", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.va", @@ -176768,15 +176777,7 @@ } ] } - ], - "tld_created": "1995-09-11", - "tld_updated": [ - "2024-12-03" - ], - "annotations": { - "country_name_iso": "Holy See (Vatican City State)", - "geographic_scope": "country" - } + ] }, { "tld": "vacations", @@ -176801,6 +176802,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vacations", @@ -176916,34 +176944,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vana", @@ -176968,6 +176969,30 @@ "date_removed": null } }, + "registry_url": "https://nic.vana", + "whois_server": "whois.tucowsregistry.net", + "rdap_server": "https://rdap.tucowsregistry.net/rdap/", + "tld_created": "2015-09-24", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -177045,31 +177070,7 @@ } ] } - ], - "registry_url": "https://nic.vana", - "whois_server": "whois.tucowsregistry.net", - "rdap_server": "https://rdap.tucowsregistry.net/rdap/", - "tld_created": "2015-09-24", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "vanguard", @@ -177094,6 +177095,29 @@ "date_removed": null } }, + "registry_url": "http://vanguard.com", + "whois_server": "whois.nic.vanguard", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-08-18", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vanguard", @@ -177171,30 +177195,7 @@ } ] } - ], - "registry_url": "http://vanguard.com", - "whois_server": "whois.nic.vanguard", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-08-18", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vc", @@ -177208,6 +177209,25 @@ "tech": "Identity Digital Inc." } }, + "whois_server": "whois.identitydigital.services", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "1991-09-03", + "tld_updated": [ + "2024-07-09" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "supplemental", + "country_name_iso": "Saint Vincent and the Grenadines", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a0.cctld.afilias-nst.info", @@ -177323,26 +177343,7 @@ } ] } - ], - "whois_server": "whois.identitydigital.services", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "1991-09-03", - "tld_updated": [ - "2024-07-09" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "supplemental", - "country_name_iso": "Saint Vincent and the Grenadines", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "country" - } + ] }, { "tld": "ve", @@ -177356,6 +177357,22 @@ "tech": "NIC.VE" } }, + "registry_url": "https://nic.ve/", + "whois_server": "whois.nic.ve", + "tld_created": "1991-03-07", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Venezuela, Bolivarian Republic of", + "as_org_aliases": [ + "LACTLD" + ], + "as_org_slugs": [ + "lactld" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.lactld.org", @@ -177457,23 +177474,7 @@ } ] } - ], - "registry_url": "https://nic.ve/", - "whois_server": "whois.nic.ve", - "tld_created": "1991-03-07", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Venezuela, Bolivarian Republic of", - "as_org_aliases": [ - "LACTLD" - ], - "as_org_slugs": [ - "lactld" - ], - "geographic_scope": "country" - } + ] }, { "tld": "vegas", @@ -177498,6 +177499,29 @@ "date_removed": null } }, + "registry_url": "http://www.nic.vegas", + "whois_server": "whois.nic.vegas", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-03-20", + "tld_updated": [ + "2023-08-03" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a0.nic.vegas", @@ -177575,30 +177599,7 @@ } ] } - ], - "registry_url": "http://www.nic.vegas", - "whois_server": "whois.nic.vegas", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-03-20", - "tld_updated": [ - "2023-08-03" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ], - "geographic_scope": "city" - } + ] }, { "tld": "ventures", @@ -177623,6 +177624,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.ventures", @@ -177738,34 +177766,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "verisign", @@ -177790,22 +177791,51 @@ "date_removed": null } }, + "registry_url": "http://www.verisign.com/", + "whois_server": "whois.nic.verisign", + "rdap_server": "https://tld-rdap.verisign.com/verisign/v1/", + "tld_created": "2015-11-06", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ] + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -177834,16 +177864,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -177867,36 +177897,7 @@ } ] } - ], - "registry_url": "http://www.verisign.com/", - "whois_server": "whois.nic.verisign", - "rdap_server": "https://tld-rdap.verisign.com/verisign/v1/", - "tld_created": "2015-11-06", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "versicherung", @@ -177921,6 +177922,27 @@ "date_removed": null } }, + "registry_url": "http://nic.versicherung", + "whois_server": "whois.nic.versicherung", + "rdap_server": "https://rdap.nic.versicherung/v1/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2026-04-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero" + ], + "as_org_slugs": [ + "rcodezero" + ] + }, "nameservers": [ { "hostname": "a.dns.nic.versicherung", @@ -177979,28 +178001,7 @@ } ] } - ], - "registry_url": "http://nic.versicherung", - "whois_server": "whois.nic.versicherung", - "rdap_server": "https://rdap.nic.versicherung/v1/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2026-04-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero" - ], - "as_org_slugs": [ - "rcodezero" - ] - } + ] }, { "tld": "vet", @@ -178025,6 +178026,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vet", @@ -178140,34 +178168,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vg", @@ -178181,6 +178182,26 @@ "tech": "CentralNic" } }, + "registry_url": "http://nic.vg", + "whois_server": "whois.nic.vg", + "rdap_server": "https://rdap.centralnic.com/vg", + "tld_created": "1997-02-20", + "tld_updated": [ + "2021-12-03" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "country_name_iso": "Virgin Islands, British", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.nic.vg", @@ -178258,27 +178279,7 @@ } ] } - ], - "registry_url": "http://nic.vg", - "whois_server": "whois.nic.vg", - "rdap_server": "https://rdap.centralnic.com/vg", - "tld_created": "1997-02-20", - "tld_updated": [ - "2021-12-03" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "country_name_iso": "Virgin Islands, British", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "vi", @@ -178292,6 +178293,24 @@ "tech": "Virgin Islands Public Telecommunications System, Inc." } }, + "registry_url": "https://secure.nic.vi", + "whois_server": "virgil.nic.vi", + "rdap_server": "https://rdap.nic.vi", + "tld_created": "1995-08-31", + "tld_updated": [ + "2024-02-26" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Virgin Islands, U.S.", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns3.nic.vi", @@ -178324,25 +178343,7 @@ } ] } - ], - "registry_url": "https://secure.nic.vi", - "whois_server": "virgil.nic.vi", - "rdap_server": "https://rdap.nic.vi", - "tld_created": "1995-08-31", - "tld_updated": [ - "2024-02-26" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Virgin Islands, U.S.", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "viajes", @@ -178367,6 +178368,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.viajes", @@ -178482,10 +178510,34 @@ } ] } - ], + ] + }, + { + "tld": "video", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Dog Beach, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Dog Beach, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1480-90854", + "registry_operator_country_code": null, + "date_contract_signed": "2014-10-16", + "date_delegated": "2014-12-25", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-12-12", + "tld_created": "2014-12-17", "tld_updated": [ "2025-10-07" ], @@ -178509,30 +178561,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "video", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Dog Beach, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Dog Beach, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1480-90854", - "registry_operator_country_code": null, - "date_contract_signed": "2014-10-16", - "date_delegated": "2014-12-25", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -178649,34 +178677,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vig", @@ -178701,6 +178702,29 @@ "date_removed": null } }, + "registry_url": "http://www.vig.com", + "whois_server": "whois.nic.vig", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vig", @@ -178778,30 +178802,7 @@ } ] } - ], - "registry_url": "http://www.vig.com", - "whois_server": "whois.nic.vig", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "viking", @@ -178826,6 +178827,29 @@ "date_removed": null } }, + "registry_url": "http://www.vikingrivercruises.com/", + "whois_server": "whois.nic.viking", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-10-15", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.viking", @@ -178903,30 +178927,7 @@ } ] } - ], - "registry_url": "http://www.vikingrivercruises.com/", - "whois_server": "whois.nic.viking", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-10-15", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "villas", @@ -178951,6 +178952,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.villas", @@ -179066,10 +179094,34 @@ } ] } - ], + ] + }, + { + "tld": "vin", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1538-23177", + "registry_operator_country_code": null, + "date_contract_signed": "2015-06-18", + "date_delegated": "2015-08-05", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", + "tld_created": "2015-07-23", "tld_updated": [ "2025-10-07" ], @@ -179093,30 +179145,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "vin", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1538-23177", - "registry_operator_country_code": null, - "date_contract_signed": "2015-06-18", - "date_delegated": "2015-08-05", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -179233,34 +179261,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vip", @@ -179285,6 +179286,34 @@ "date_removed": null } }, + "registry_url": "http://nic.vip/", + "whois_server": "whois.nic.vip", + "rdap_server": "https://rdap.nic.vip/", + "tld_created": "2015-07-30", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vip", @@ -179310,7 +179339,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179348,7 +179377,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179356,7 +179385,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179367,7 +179396,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179375,7 +179404,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179386,7 +179415,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -179394,41 +179423,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.vip/", - "whois_server": "whois.nic.vip", - "rdap_server": "https://rdap.nic.vip/", - "tld_created": "2015-07-30", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "virgin", @@ -179453,14 +179454,40 @@ "date_removed": null } }, + "registry_url": "http://www.virgin.com", + "rdap_server": "https://rdap.nominet.uk/virgin/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-01-28" + ], + "annotations": { + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.virgin", "ipv4": [ { "ip": "213.248.219.40", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -179478,8 +179505,8 @@ "ipv4": [ { "ip": "103.49.83.40", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -179606,33 +179633,7 @@ } ] } - ], - "registry_url": "http://www.virgin.com", - "rdap_server": "https://rdap.nominet.uk/virgin/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-01-28" - ], - "annotations": { - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "visa", @@ -179657,6 +179658,29 @@ "date_removed": null } }, + "registry_url": "http://visa.com", + "whois_server": "whois.nic.visa", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-30", + "tld_updated": [ + "2024-11-15" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.visa", @@ -179772,30 +179796,7 @@ } ] } - ], - "registry_url": "http://visa.com", - "whois_server": "whois.nic.visa", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-30", - "tld_updated": [ - "2024-11-15" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vision", @@ -179820,6 +179821,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.vision", @@ -179935,34 +179963,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vista", @@ -180047,6 +180048,30 @@ "date_removed": null } }, + "registry_url": "http://www.stc.com.sa", + "whois_server": "whois.nic.viva", + "rdap_server": "https://rdap.centralnic.com/viva", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-30" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.viva", @@ -180124,31 +180149,7 @@ } ] } - ], - "registry_url": "http://www.stc.com.sa", - "whois_server": "whois.nic.viva", - "rdap_server": "https://rdap.centralnic.com/viva", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-30" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "vivo", @@ -180173,6 +180174,28 @@ "date_removed": null } }, + "registry_url": "http://www.vivo.com.br", + "rdap_server": "https://rdap.nic.vivo/", + "tld_created": "2016-05-26", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vivo", @@ -180198,7 +180221,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180288,29 +180311,7 @@ } ] } - ], - "registry_url": "http://www.vivo.com.br", - "rdap_server": "https://rdap.nic.vivo/", - "tld_created": "2016-05-26", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "vlaanderen", @@ -180335,6 +180336,32 @@ "date_removed": null } }, + "registry_url": "http://www.nic.vlaanderen", + "rdap_server": "https://rdap.nic.vlaanderen", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-12-15" + ], + "annotations": { + "iana_admin_alias": "DNS Belgium", + "iana_admin_slug": "dns-belgium", + "iana_tech_alias": "DNS Belgium", + "iana_tech_slug": "dns-belgium", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "RcodeZero", + "UltraDNS" + ], + "as_org_slugs": [ + "rcodezero", + "ultradns" + ], + "geographic_scope": "subdivision" + }, "nameservers": [ { "hostname": "a.nsset.vlaanderen", @@ -180450,33 +180477,7 @@ } ] } - ], - "registry_url": "http://www.nic.vlaanderen", - "rdap_server": "https://rdap.nic.vlaanderen", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-12-15" - ], - "annotations": { - "iana_admin_alias": "DNS Belgium", - "iana_admin_slug": "dns-belgium", - "iana_tech_alias": "DNS Belgium", - "iana_tech_slug": "dns-belgium", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "RcodeZero", - "UltraDNS" - ], - "as_org_slugs": [ - "rcodezero", - "ultradns" - ], - "geographic_scope": "subdivision" - } + ] }, { "tld": "vn", @@ -180490,6 +180491,23 @@ "tech": "Vietnam Internet Network Information Center (VNNIC)" } }, + "registry_url": "https://www.vnnic.vn/", + "tld_created": "1994-04-14", + "tld_updated": [ + "2023-07-19" + ], + "annotations": { + "country_name_iso": "Viet Nam", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns-servers.vn", @@ -180643,24 +180661,7 @@ } ] } - ], - "registry_url": "https://www.vnnic.vn/", - "tld_created": "1994-04-14", - "tld_updated": [ - "2023-07-19" - ], - "annotations": { - "country_name_iso": "Viet Nam", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "vodka", @@ -180685,6 +180686,34 @@ "date_removed": null } }, + "registry_url": "http://nic.vodka/", + "whois_server": "whois.nic.vodka", + "rdap_server": "https://rdap.nic.vodka/", + "tld_created": "2014-02-28", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.vodka", @@ -180710,7 +180739,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180748,7 +180777,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180756,7 +180785,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180767,7 +180796,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180775,7 +180804,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180786,7 +180815,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -180794,41 +180823,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.vodka/", - "whois_server": "whois.nic.vodka", - "rdap_server": "https://rdap.nic.vodka/", - "tld_created": "2014-02-28", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "volkswagen", @@ -180883,6 +180884,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.volvo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.volvo", @@ -180960,29 +180983,7 @@ } ] } - ], - "whois_server": "whois.nic.volvo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vote", @@ -181007,6 +181008,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.vote", @@ -181084,30 +181108,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "voting", @@ -181132,6 +181133,28 @@ "date_removed": null } }, + "registry_url": "http://www.nic.voting", + "whois_server": "whois.nic.voting", + "rdap_server": "https://rdap.nic.voting/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.voting", @@ -181157,7 +181180,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181195,7 +181218,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181203,7 +181226,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181214,7 +181237,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181222,7 +181245,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181233,7 +181256,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181241,35 +181264,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.nic.voting", - "whois_server": "whois.nic.voting", - "rdap_server": "https://rdap.nic.voting/", - "tld_created": "2014-01-16", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "voto", @@ -181294,6 +181295,29 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.voto", @@ -181371,30 +181395,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "voyage", @@ -181419,6 +181420,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-31", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.voyage", @@ -181534,34 +181562,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-31", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "vu", @@ -181575,6 +181576,24 @@ "tech": "GoDaddy Registry" } }, + "registry_url": "http://www.hello.vu", + "whois_server": "whois.dnrs.vu", + "tld_created": "1995-04-10", + "tld_updated": [ + "2025-09-05" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "country_name_iso": "Vanuatu", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.tldns.vu", @@ -181600,7 +181619,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -181690,25 +181709,7 @@ } ] } - ], - "registry_url": "http://www.hello.vu", - "whois_server": "whois.dnrs.vu", - "tld_created": "1995-04-10", - "tld_updated": [ - "2025-09-05" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "country_name_iso": "Vanuatu", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "vuelos", @@ -181762,14 +181763,45 @@ "date_removed": null } }, + "registry_url": "https://ourhomeonline.wales/", + "rdap_server": "https://rdap.nominet.uk/wales/", + "tld_created": "2014-07-31", + "tld_updated": [ + "2025-06-10" + ], + "annotations": { + "iana_sponsor_alias": "Nominet", + "iana_sponsor_slug": "nominet", + "iana_admin_alias": "Nominet", + "iana_admin_slug": "nominet", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Nominet", + "icann_registry_operator_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "geographic_scope": "subdivision", + "cultural_affiliation": "welsh" + }, "nameservers": [ { "hostname": "dns1.nic.wales", "ipv4": [ { "ip": "213.248.219.2", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181787,8 +181819,8 @@ "ipv4": [ { "ip": "103.49.83.2", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -181915,38 +181947,7 @@ } ] } - ], - "registry_url": "https://ourhomeonline.wales/", - "rdap_server": "https://rdap.nominet.uk/wales/", - "tld_created": "2014-07-31", - "tld_updated": [ - "2025-06-10" - ], - "annotations": { - "iana_sponsor_alias": "Nominet", - "iana_sponsor_slug": "nominet", - "iana_admin_alias": "Nominet", - "iana_admin_slug": "nominet", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Nominet", - "icann_registry_operator_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ], - "geographic_scope": "subdivision", - "cultural_affiliation": "welsh" - } + ] }, { "tld": "walmart", @@ -181971,122 +181972,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "a.nic.walmart", - "ipv4": [ - { - "ip": "37.209.192.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:1::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "b.nic.walmart", - "ipv4": [ - { - "ip": "37.209.194.9", - "asn": 397213, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:2::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "c.nic.walmart", - "ipv4": [ - { - "ip": "37.209.196.9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:dcd:3::9", - "asn": 12008, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "x.nic.walmart", - "ipv4": [ - { - "ip": "156.154.172.82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1074::1:82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "y.nic.walmart", - "ipv4": [ - { - "ip": "156.154.173.82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1075::1:82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - }, - { - "hostname": "z.nic.walmart", - "ipv4": [ - { - "ip": "156.154.174.82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2610:a1:1076::1:82", - "asn": 19905, - "as_org": "SECURITYSERVICES", - "as_country": "US" - } - ] - } - ], "registry_url": "http://www.walmart.com", "whois_server": "whois.nic.walmart", "rdap_server": "https://rdap.nic.walmart", @@ -182115,7 +182000,123 @@ "as_org_slugs": [ "ultradns" ] - } + }, + "nameservers": [ + { + "hostname": "a.nic.walmart", + "ipv4": [ + { + "ip": "37.209.192.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:1::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "b.nic.walmart", + "ipv4": [ + { + "ip": "37.209.194.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:2::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "c.nic.walmart", + "ipv4": [ + { + "ip": "37.209.196.9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:dcd:3::9", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "x.nic.walmart", + "ipv4": [ + { + "ip": "156.154.172.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1074::1:82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "y.nic.walmart", + "ipv4": [ + { + "ip": "156.154.173.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1075::1:82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + }, + { + "hostname": "z.nic.walmart", + "ipv4": [ + { + "ip": "156.154.174.82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2610:a1:1076::1:82", + "asn": 12008, + "as_org": "SECURITYSERVICES", + "as_country": "US" + } + ] + } + ] }, { "tld": "walter", @@ -182140,6 +182141,27 @@ "date_removed": null } }, + "registry_url": "http://nic.walter", + "whois_server": "whois.nic.walter", + "rdap_server": "https://rdap.nic.walter/", + "tld_created": "2015-05-14", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.walter", @@ -182165,7 +182187,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182203,7 +182225,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182211,7 +182233,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182222,7 +182244,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182230,7 +182252,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182241,7 +182263,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -182249,34 +182271,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.walter", - "whois_server": "whois.nic.walter", - "rdap_server": "https://rdap.nic.walter/", - "tld_created": "2015-05-14", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "wang", @@ -182301,6 +182302,26 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/wang", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ] + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -182398,27 +182419,7 @@ } ] } - ], - "registry_url": "http://www.nic.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/wang", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "wanggou", @@ -182443,14 +182444,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wanggou", + "rdap_server": "https://rdap.nominet.uk/wanggou/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.wanggou", "ipv4": [ { "ip": "213.248.218.86", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -182468,8 +182498,8 @@ "ipv4": [ { "ip": "103.49.82.86", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -182596,36 +182626,7 @@ } ] } - ], - "registry_url": "http://www.nic.wanggou", - "rdap_server": "https://rdap.nominet.uk/wanggou/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "warman", @@ -182680,6 +182681,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.watch", @@ -182795,12 +182823,36 @@ } ] } - ], + ] + }, + { + "tld": "watches", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Identity Digital Limited", + "admin": "Identity Digital Limited", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Identity Digital Domains Limited", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1253-13044", + "registry_operator_country_code": null, + "date_contract_signed": "2014-12-22", + "date_delegated": "2015-12-14", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", + "tld_created": "2015-11-12", "tld_updated": [ - "2025-10-07" + "2025-09-04" ], "annotations": { "iana_sponsor_alias": "Identity Digital", @@ -182822,30 +182874,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "watches", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Identity Digital Limited", - "admin": "Identity Digital Limited", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Identity Digital Domains Limited", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1253-13044", - "registry_operator_country_code": null, - "date_contract_signed": "2014-12-22", - "date_delegated": "2015-12-14", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -182924,34 +182952,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "weather", @@ -182976,6 +182977,25 @@ "date_removed": null } }, + "registry_url": "http://www.weather.com", + "rdap_server": "https://rdap.nic.weather/", + "tld_created": "2015-12-23", + "tld_updated": [ + "2026-03-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.weather", @@ -183001,7 +183021,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183047,7 +183067,7 @@ "ipv6": [ { "ip": "2610:a1:1074::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183066,7 +183086,7 @@ "ipv6": [ { "ip": "2610:a1:1075::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183085,32 +183105,13 @@ "ipv6": [ { "ip": "2610:a1:1076::b2", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.weather.com", - "rdap_server": "https://rdap.nic.weather/", - "tld_created": "2015-12-23", - "tld_updated": [ - "2026-03-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "weatherchannel", @@ -183135,6 +183136,26 @@ "date_removed": null } }, + "registry_url": "https://www.weathercompany.com/", + "rdap_server": "https://rdap.nic.weatherchannel/", + "tld_created": "2016-01-22", + "tld_updated": [ + "2026-03-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.weatherchannel", @@ -183160,7 +183181,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183206,7 +183227,7 @@ "ipv6": [ { "ip": "2610:a1:1074::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183225,7 +183246,7 @@ "ipv6": [ { "ip": "2610:a1:1075::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183244,33 +183265,13 @@ "ipv6": [ { "ip": "2610:a1:1076::b3", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "https://www.weathercompany.com/", - "rdap_server": "https://rdap.nic.weatherchannel/", - "tld_created": "2016-01-22", - "tld_updated": [ - "2026-03-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "webcam", @@ -183295,6 +183296,32 @@ "date_removed": null } }, + "registry_url": "http://nic.webcam", + "whois_server": "whois.nic.webcam", + "rdap_server": "https://rdap.nic.webcam/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.webcam", @@ -183320,7 +183347,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -183410,33 +183437,7 @@ } ] } - ], - "registry_url": "http://nic.webcam", - "whois_server": "whois.nic.webcam", - "rdap_server": "https://rdap.nic.webcam/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "weber", @@ -183461,6 +183462,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.weber", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-10", + "tld_updated": [ + "2025-12-17" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.weber", @@ -183576,29 +183599,7 @@ } ] } - ], - "whois_server": "whois.nic.weber", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-10", - "tld_updated": [ - "2025-12-17" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "website", @@ -183623,6 +183624,34 @@ "date_removed": null } }, + "registry_url": "https://radix.website/", + "whois_server": "whois.nic.website", + "rdap_server": "https://rdap.radix.host/rdap/", + "tld_created": "2014-05-22", + "tld_updated": [ + "2026-04-14" + ], + "annotations": { + "iana_sponsor_alias": "Radix", + "iana_sponsor_slug": "radix", + "iana_admin_alias": "Radix", + "iana_admin_slug": "radix", + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -183700,35 +183729,7 @@ } ] } - ], - "registry_url": "https://radix.website/", - "whois_server": "whois.nic.website", - "rdap_server": "https://rdap.radix.host/rdap/", - "tld_created": "2014-05-22", - "tld_updated": [ - "2026-04-14" - ], - "annotations": { - "iana_sponsor_alias": "Radix", - "iana_sponsor_slug": "radix", - "iana_admin_alias": "Radix", - "iana_admin_slug": "radix", - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "wed", @@ -183753,14 +183754,39 @@ "date_removed": null } }, + "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", + "rdap_server": "https://rdap.nominet.uk/wed/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -183778,8 +183804,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -183906,32 +183932,7 @@ } ] } - ], - "registry_url": "https://www.icann.org/resources/pages/ebero-2013-04-02-en", - "rdap_server": "https://rdap.nominet.uk/wed/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "wedding", @@ -183956,6 +183957,34 @@ "date_removed": null } }, + "registry_url": "http://nic.wedding/", + "whois_server": "whois.nic.wedding", + "rdap_server": "https://rdap.nic.wedding/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wedding", @@ -183981,7 +184010,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184019,7 +184048,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184027,7 +184056,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184038,7 +184067,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184046,7 +184075,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184057,7 +184086,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184065,41 +184094,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wedding/", - "whois_server": "whois.nic.wedding", - "rdap_server": "https://rdap.nic.wedding/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "weibo", @@ -184124,6 +184125,28 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.weibo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.weibo", @@ -184201,29 +184224,7 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.weibo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "weir", @@ -184248,6 +184249,29 @@ "date_removed": null } }, + "registry_url": "http://weir.co.uk/", + "whois_server": "whois.nic.weir", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2023-08-11" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.weir", @@ -184325,30 +184349,7 @@ } ] } - ], - "registry_url": "http://weir.co.uk/", - "whois_server": "whois.nic.weir", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2023-08-11" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "wf", @@ -184362,6 +184363,32 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, + "registry_url": "http://www.nic.wf", + "whois_server": "whois.nic.wf", + "rdap_server": "https://rdap.nic.wf/", + "tld_created": "1997-11-14", + "tld_updated": [ + "2026-03-10" + ], + "annotations": { + "iana_sponsor_alias": "AFNIC", + "iana_sponsor_slug": "afnic", + "iana_admin_alias": "AFNIC", + "iana_admin_slug": "afnic", + "iana_tech_alias": "AFNIC", + "iana_tech_slug": "afnic", + "rdap_source": "IANA", + "country_name_iso": "Wallis and Futuna", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.nic.fr", @@ -184420,33 +184447,7 @@ } ] } - ], - "registry_url": "http://www.nic.wf", - "whois_server": "whois.nic.wf", - "rdap_server": "https://rdap.nic.wf/", - "tld_created": "1997-11-14", - "tld_updated": [ - "2026-03-10" - ], - "annotations": { - "iana_sponsor_alias": "AFNIC", - "iana_sponsor_slug": "afnic", - "iana_admin_alias": "AFNIC", - "iana_admin_slug": "afnic", - "iana_tech_alias": "AFNIC", - "iana_tech_slug": "afnic", - "rdap_source": "IANA", - "country_name_iso": "Wallis and Futuna", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "whoswho", @@ -184471,6 +184472,28 @@ "date_removed": null } }, + "registry_url": "http://nic.whoswho", + "whois_server": "whois.nic.whoswho", + "rdap_server": "https://rdap.nic.whoswho/", + "tld_created": "2014-06-12", + "tld_updated": [ + "2023-06-16" + ], + "annotations": { + "iana_tech_alias": "Knipp Medien", + "iana_tech_slug": "knipp-medien", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ] + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -184548,29 +184571,7 @@ } ] } - ], - "registry_url": "http://nic.whoswho", - "whois_server": "whois.nic.whoswho", - "rdap_server": "https://rdap.nic.whoswho/", - "tld_created": "2014-06-12", - "tld_updated": [ - "2023-06-16" - ], - "annotations": { - "iana_tech_alias": "Knipp Medien", - "iana_tech_slug": "knipp-medien", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "wien", @@ -184595,6 +184596,30 @@ "date_removed": null } }, + "registry_url": "https://www.nic.wien", + "whois_server": "whois.nic.wien", + "rdap_server": "https://rdap.ryce-rsp.com/rdap/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-09-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "as_org_aliases": [ + "DENIC", + "Hetzner" + ], + "as_org_slugs": [ + "denic", + "hetzner" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "dns.ryce-rsp.com", @@ -184653,31 +184678,7 @@ } ] } - ], - "registry_url": "https://www.nic.wien", - "whois_server": "whois.nic.wien", - "rdap_server": "https://rdap.ryce-rsp.com/rdap/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-09-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "as_org_aliases": [ - "DENIC", - "Hetzner" - ], - "as_org_slugs": [ - "denic", - "hetzner" - ], - "geographic_scope": "city" - } + ] }, { "tld": "wiki", @@ -184702,6 +184703,34 @@ "date_removed": null } }, + "registry_url": "http://nic.wiki", + "whois_server": "whois.nic.wiki", + "rdap_server": "https://rdap.nic.wiki/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wiki", @@ -184727,7 +184756,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184765,7 +184794,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184773,7 +184802,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184784,7 +184813,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184792,7 +184821,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184803,7 +184832,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184811,41 +184840,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wiki", - "whois_server": "whois.nic.wiki", - "rdap_server": "https://rdap.nic.wiki/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "williamhill", @@ -184870,6 +184871,28 @@ "date_removed": null } }, + "registry_url": "http://www.williamhill.com/", + "rdap_server": "https://rdap.nic.williamhill/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.williamhill", @@ -184895,7 +184918,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -184985,29 +185008,7 @@ } ] } - ], - "registry_url": "http://www.williamhill.com/", - "rdap_server": "https://rdap.nic.williamhill/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "win", @@ -185032,6 +185033,32 @@ "date_removed": null } }, + "registry_url": "http://nic.win", + "whois_server": "whois.nic.win", + "rdap_server": "https://rdap.nic.win/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "GRS Domains", + "iana_sponsor_slug": "grs-domains", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GRS Domains", + "icann_registry_operator_slug": "grs-domains", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.win", @@ -185057,7 +185084,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185147,33 +185174,7 @@ } ] } - ], - "registry_url": "http://nic.win", - "whois_server": "whois.nic.win", - "rdap_server": "https://rdap.nic.win/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "GRS Domains", - "iana_sponsor_slug": "grs-domains", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GRS Domains", - "icann_registry_operator_slug": "grs-domains", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "windows", @@ -185198,14 +185199,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/windows/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.windows", "ipv4": [ { "ip": "213.248.219.133", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -185223,8 +185254,8 @@ "ipv4": [ { "ip": "103.49.83.133", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -185351,37 +185382,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/windows/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "wine", @@ -185406,6 +185407,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-07-23", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.wine", @@ -185521,34 +185549,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-07-23", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "winners", @@ -185573,6 +185574,32 @@ "date_removed": null } }, + "registry_url": "http://www.tjx.com", + "rdap_server": "https://rdap.nic.winners/", + "tld_created": "2016-04-07", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_sponsor_alias": "TJX", + "iana_sponsor_slug": "tjx", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "TJX", + "icann_registry_operator_slug": "tjx", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.winners", @@ -185598,7 +185625,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185688,33 +185715,7 @@ } ] } - ], - "registry_url": "http://www.tjx.com", - "rdap_server": "https://rdap.nic.winners/", - "tld_created": "2016-04-07", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_sponsor_alias": "TJX", - "iana_sponsor_slug": "tjx", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "TJX", - "icann_registry_operator_slug": "tjx", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "wme", @@ -185739,6 +185740,31 @@ "date_removed": null } }, + "registry_url": "http://www.wmeentertainment.com", + "whois_server": "whois.nic.wme", + "rdap_server": "https://rdap.centralnic.com/wme", + "tld_created": "2014-08-22", + "tld_updated": [ + "2023-09-19" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.wme", @@ -185816,32 +185842,7 @@ } ] } - ], - "registry_url": "http://www.wmeentertainment.com", - "whois_server": "whois.nic.wme", - "rdap_server": "https://rdap.centralnic.com/wme", - "tld_created": "2014-08-22", - "tld_updated": [ - "2023-09-19" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "wolterskluwer", @@ -185896,6 +185897,27 @@ "date_removed": null } }, + "registry_url": "http://www.woodside.com.au/", + "whois_server": "whois.nic.woodside", + "rdap_server": "https://rdap.nic.woodside/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2024-10-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.woodside", @@ -185921,7 +185943,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185959,7 +185981,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185967,7 +185989,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185978,7 +186000,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185986,7 +186008,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -185997,7 +186019,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186005,34 +186027,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.woodside.com.au/", - "whois_server": "whois.nic.woodside", - "rdap_server": "https://rdap.nic.woodside/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2024-10-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "work", @@ -186057,6 +186058,34 @@ "date_removed": null } }, + "registry_url": "http://nic.work/", + "whois_server": "whois.nic.work", + "rdap_server": "https://rdap.nic.work/", + "tld_created": "2014-08-18", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.work", @@ -186082,7 +186111,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186120,7 +186149,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186128,7 +186157,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186139,7 +186168,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186147,7 +186176,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186158,7 +186187,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186166,41 +186195,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.work/", - "whois_server": "whois.nic.work", - "rdap_server": "https://rdap.nic.work/", - "tld_created": "2014-08-18", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "works", @@ -186225,6 +186226,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-16", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.works", @@ -186340,10 +186368,34 @@ } ] } - ], + ] + }, + { + "tld": "world", + "delegated": true, + "iana_tag": "generic", + "type": "gtld", + "orgs": { + "iana": { + "sponsor": "Binky Moon, LLC", + "admin": "Identity Digital Inc.", + "tech": "Identity Digital Limited" + }, + "icann": { + "registry_operator": "Binky Moon, LLC", + "specification_13": false, + "third_or_lower_level_registration": false, + "application_id": "1-1504-13424", + "registry_operator_country_code": null, + "date_contract_signed": "2014-06-12", + "date_delegated": "2014-09-19", + "contract_terminated": false, + "date_removed": null + } + }, "registry_url": "https://www.identity.digital/", "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-16", + "tld_created": "2014-09-11", "tld_updated": [ "2025-10-07" ], @@ -186367,30 +186419,6 @@ "as_org_slugs": [ "identity-digital" ] - } - }, - { - "tld": "world", - "delegated": true, - "iana_tag": "generic", - "type": "gtld", - "orgs": { - "iana": { - "sponsor": "Binky Moon, LLC", - "admin": "Identity Digital Inc.", - "tech": "Identity Digital Limited" - }, - "icann": { - "registry_operator": "Binky Moon, LLC", - "specification_13": false, - "third_or_lower_level_registration": false, - "application_id": "1-1504-13424", - "registry_operator_country_code": null, - "date_contract_signed": "2014-06-12", - "date_delegated": "2014-09-19", - "contract_terminated": false, - "date_removed": null - } }, "nameservers": [ { @@ -186507,34 +186535,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-09-11", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "wow", @@ -186559,14 +186560,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.wow", + "rdap_server": "https://rdap.nominet.uk/wow/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.wow", "ipv4": [ { "ip": "213.248.218.87", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -186584,8 +186614,8 @@ "ipv4": [ { "ip": "103.49.82.87", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -186712,36 +186742,7 @@ } ] } - ], - "registry_url": "http://www.nic.wow", - "rdap_server": "https://rdap.nominet.uk/wow/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "ws", @@ -186755,6 +186756,16 @@ "tech": "Global Domains International" } }, + "registry_url": "http://www.website.ws", + "whois_server": "whois.website.ws", + "tld_created": "1995-07-14", + "tld_updated": [ + "2021-05-26" + ], + "annotations": { + "country_name_iso": "Samoa", + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "a.dns.ws", @@ -186842,17 +186853,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.website.ws", - "whois_server": "whois.website.ws", - "tld_created": "1995-07-14", - "tld_updated": [ - "2021-05-26" - ], - "annotations": { - "country_name_iso": "Samoa", - "geographic_scope": "country" - } + ] }, { "tld": "wtc", @@ -186877,6 +186878,27 @@ "date_removed": null } }, + "registry_url": "http://nic.wtc/", + "whois_server": "whois.nic.wtc", + "rdap_server": "https://rdap.nic.wtc/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2024-03-15" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.wtc", @@ -186902,7 +186924,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186940,7 +186962,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186948,7 +186970,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186959,7 +186981,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186967,7 +186989,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186978,7 +187000,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -186986,34 +187008,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.wtc/", - "whois_server": "whois.nic.wtc", - "rdap_server": "https://rdap.nic.wtc/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2024-03-15" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "wtf", @@ -187038,6 +187039,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.wtf", @@ -187153,34 +187181,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xbox", @@ -187205,14 +187206,44 @@ "date_removed": null } }, + "registry_url": "http://www.microsoft.com", + "rdap_server": "https://rdap.nominet.uk/xbox/", + "tld_created": "2015-04-30", + "tld_updated": [ + "2026-02-02" + ], + "annotations": { + "iana_sponsor_alias": "Microsoft", + "iana_sponsor_slug": "microsoft", + "iana_admin_alias": "Microsoft", + "iana_admin_slug": "microsoft", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Microsoft", + "icann_registry_operator_slug": "microsoft", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.xbox", "ipv4": [ { "ip": "213.248.219.134", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -187230,8 +187261,8 @@ "ipv4": [ { "ip": "103.49.83.134", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -187358,37 +187389,7 @@ } ] } - ], - "registry_url": "http://www.microsoft.com", - "rdap_server": "https://rdap.nominet.uk/xbox/", - "tld_created": "2015-04-30", - "tld_updated": [ - "2026-02-02" - ], - "annotations": { - "iana_sponsor_alias": "Microsoft", - "iana_sponsor_slug": "microsoft", - "iana_admin_alias": "Microsoft", - "iana_admin_slug": "microsoft", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Microsoft", - "icann_registry_operator_slug": "microsoft", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "xerox", @@ -187413,6 +187414,28 @@ "date_removed": null } }, + "whois_server": "whois.nic.xerox", + "rdap_server": "https://rdap.nic.xerox/", + "tld_created": "2015-04-02", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.xerox", @@ -187438,7 +187461,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187476,7 +187499,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187484,7 +187507,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187495,7 +187518,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187503,7 +187526,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187514,7 +187537,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -187522,35 +187545,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "whois_server": "whois.nic.xerox", - "rdap_server": "https://rdap.nic.xerox/", - "tld_created": "2015-04-02", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xfinity", @@ -187605,14 +187606,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -187668,27 +187689,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xin", @@ -187713,6 +187714,28 @@ "date_removed": null } }, + "registry_url": "http://www.dotxin.org", + "whois_server": "whois.nic.xin", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-02-19", + "tld_updated": [ + "2025-10-21" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.xin", @@ -187790,29 +187813,7 @@ } ] } - ], - "registry_url": "http://www.dotxin.org", - "whois_server": "whois.nic.xin", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-02-19", - "tld_updated": [ - "2025-10-21" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--0zwm56d", @@ -187824,7 +187825,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "zh", + "language_name_en": "Chinese" + } }, { "tld": "xn--11b4c3d", @@ -187851,22 +187856,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--11b4c3d", + "rdap_server": "https://tld-rdap.verisign.com/xn--11b4c3d/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -187895,16 +187931,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -187928,36 +187964,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--11b4c3d", - "rdap_server": "https://tld-rdap.verisign.com/xn--11b4c3d/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--11b5bs3a9aj6g", @@ -187969,7 +187976,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "hi", + "language_name_en": "Hindi" + } }, { "tld": "xn--1ck2e1b", @@ -187996,6 +188007,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--1ck2e1b", + "whois_server": "whois.nic.xn--1ck2e1b", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "sale", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--1ck2e1b", @@ -188111,36 +188153,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--1ck2e1b", - "whois_server": "whois.nic.xn--1ck2e1b", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "sale", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--1qqw23a", @@ -188167,6 +188180,29 @@ "date_removed": null } }, + "registry_url": "http://www.yu-wei.cn/", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-07-17", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "foshan", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ta.ngtld.cn", @@ -188192,7 +188228,7 @@ "ipv4": [ { "ip": "42.83.131.1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -188230,7 +188266,7 @@ "ipv4": [ { "ip": "42.83.133.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -188249,28 +188285,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.yu-wei.cn/", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-07-17", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "foshan", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] }, { "tld": "xn--2scrj9c", @@ -188287,6 +188302,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "kn", + "language_name_en": "Kannada" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -188364,31 +188405,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--30rr7y", @@ -188415,6 +188432,29 @@ "date_removed": null } }, + "registry_url": "http://www.cishan.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--30rr7y", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "charity", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -188512,28 +188552,7 @@ } ] } - ], - "registry_url": "http://www.cishan.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--30rr7y", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "charity", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--3bst00m", @@ -188560,6 +188579,29 @@ "date_removed": null } }, + "registry_url": "http://www.jituan.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--3bst00m", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "corporate group", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -188657,28 +188699,7 @@ } ] } - ], - "registry_url": "http://www.jituan.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--3bst00m", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "corporate group", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--3ds443g", @@ -188705,14 +188726,37 @@ "date_removed": null } }, + "registry_url": "https://tldland.cn/", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/xn--3ds443g/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-12-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -188768,28 +188812,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://tldland.cn/", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/xn--3ds443g/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-12-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--3e0b707e", @@ -188806,6 +188829,24 @@ "tech": "KISA (Korea Internet & Security Agency)" } }, + "registry_url": "http://www.nic.or.kr", + "whois_server": "whois.kr", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "iana_sponsor_alias": "KISA", + "iana_sponsor_slug": "kisa", + "iana_admin_alias": "KISA", + "iana_admin_slug": "kisa", + "iana_tech_alias": "KISA", + "iana_tech_slug": "kisa", + "country_name_iso": "Korea, Republic of", + "geographic_scope": "country", + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "b.dns.kr", @@ -188907,23 +188948,7 @@ } ] } - ], - "registry_url": "http://www.nic.or.kr", - "whois_server": "whois.kr", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "iana_sponsor_alias": "KISA", - "iana_sponsor_slug": "kisa", - "iana_admin_alias": "KISA", - "iana_admin_slug": "kisa", - "iana_tech_alias": "KISA", - "iana_tech_slug": "kisa", - "country_name_iso": "Korea, Republic of", - "geographic_scope": "country" - } + ] }, { "tld": "xn--3hcrj9c", @@ -188940,6 +188965,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "or", + "language_name_en": "Odia" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -189017,31 +189068,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--3oq18vl8pn36a", @@ -189074,7 +189101,9 @@ "community", "non_sponsored" ], - "icann_translation_en": "volkswagon" + "icann_translation_en": "volkswagon", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -189102,22 +189131,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--3pxu8k", + "rdap_server": "https://tld-rdap.verisign.com/xn--3pxu8k/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -189146,16 +189206,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -189179,36 +189239,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--3pxu8k", - "rdap_server": "https://tld-rdap.verisign.com/xn--3pxu8k/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--42c2d9a", @@ -189235,22 +189266,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--42c2d9a", + "rdap_server": "https://tld-rdap.verisign.com/xn--42c2d9a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "th", + "language_name_en": "Thai" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -189279,16 +189341,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -189312,36 +189374,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--42c2d9a", - "rdap_server": "https://tld-rdap.verisign.com/xn--42c2d9a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--45br5cyl", @@ -189358,6 +189391,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -189435,10 +189494,26 @@ } ] } - ], + ] + }, + { + "tld": "xn--45brj9c", + "tld_unicode": "ভারত", + "tld_script": "Bengali", + "tld_iso": "in", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "National Internet Exchange of India", + "admin": "National Internet Exchange of India", + "tech": "National Internet Exchange of India" + } + }, "registry_url": "https://registry.in", "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", + "tld_created": "2011-02-05", "tld_updated": [ "2026-04-16" ], @@ -189458,23 +189533,9 @@ "packet-clearing-house", "tucows" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--45brj9c", - "tld_unicode": "ভারত", - "tld_script": "Bengali", - "tld_iso": "in", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "National Internet Exchange of India", - "admin": "National Internet Exchange of India", - "tech": "National Internet Exchange of India" - } + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" }, "nameservers": [ { @@ -189553,31 +189614,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--45q11c", @@ -189604,6 +189641,29 @@ "date_removed": null } }, + "registry_url": "http://www.bagua.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/XN--45Q11C", + "tld_created": "2014-11-06", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "gossip", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -189701,28 +189761,7 @@ } ] } - ], - "registry_url": "http://www.bagua.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/XN--45Q11C", - "tld_created": "2014-11-06", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "gossip", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--4dbrk0ce", @@ -189739,6 +189778,26 @@ "tech": "The Israel Internet Association (RA)" } }, + "registry_url": "http://en.isoc.org.il/il-cctld/accredited-registrars/domain-name-registrars", + "whois_server": "whois.isoc.org.il", + "tld_created": "2020-06-16", + "tld_updated": [ + "2026-05-11" + ], + "annotations": { + "country_name_iso": "Israel", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "he", + "language_name_en": "Hebrew" + }, "nameservers": [ { "hostname": "ilns.ilan.net.il", @@ -189878,25 +189937,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://en.isoc.org.il/il-cctld/accredited-registrars/domain-name-registrars", - "whois_server": "whois.isoc.org.il", - "tld_created": "2020-06-16", - "tld_updated": [ - "2026-05-11" - ], - "annotations": { - "country_name_iso": "Israel", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--4gbrim", @@ -189923,6 +189964,33 @@ "date_removed": null } }, + "registry_url": "http://www.dotmawqe.com", + "whois_server": "whois.nic.xn--4gbrim", + "rdap_server": "https://rdap.centralnic.com/xn--4gbrim/", + "tld_created": "2014-05-15", + "tld_updated": [ + "2023-11-17" + ], + "annotations": { + "iana_admin_alias": "CentralNic", + "iana_admin_slug": "centralnic", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "site", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--4gbrim", @@ -190000,32 +190068,7 @@ } ] } - ], - "registry_url": "http://www.dotmawqe.com", - "whois_server": "whois.nic.xn--4gbrim", - "rdap_server": "https://rdap.centralnic.com/xn--4gbrim/", - "tld_created": "2014-05-15", - "tld_updated": [ - "2023-11-17" - ], - "annotations": { - "iana_admin_alias": "CentralNic", - "iana_admin_slug": "centralnic", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "site", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "xn--4gq48lf9j", @@ -190057,7 +190100,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "number one store" + "icann_translation_en": "number one store", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -190075,6 +190120,23 @@ "tech": "Bangladesh Telecommunications Company Limited (BTCL)" } }, + "registry_url": "http://domainreg.btcl.com.bd/", + "tld_created": "2011-03-30", + "tld_updated": [ + "2024-05-29" + ], + "annotations": { + "country_name_iso": "Bangladesh", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "bn", + "language_name_en": "Bengali" + }, "nameservers": [ { "hostname": "bayanno.btcl.net.bd", @@ -190133,22 +190195,7 @@ } ] } - ], - "registry_url": "http://domainreg.btcl.com.bd/", - "tld_created": "2011-03-30", - "tld_updated": [ - "2024-05-29" - ], - "annotations": { - "country_name_iso": "Bangladesh", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--55qw42g", @@ -190175,6 +190222,23 @@ "date_removed": null } }, + "registry_url": "http://www.conac.cn", + "whois_server": "whois.conac.cn", + "rdap_server": "https://rdap.conac.cn/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "public interest", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.conac.cn", @@ -190257,22 +190321,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.conac.cn", - "whois_server": "whois.conac.cn", - "rdap_server": "https://rdap.conac.cn/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "public interest" - } + ] }, { "tld": "xn--55qx5d", @@ -190299,6 +190348,37 @@ "date_removed": null } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "icann_registry_operator_alias": "CNNIC", + "icann_registry_operator_slug": "cnnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "business organisation", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.ngtld.cn", @@ -190381,36 +190461,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "icann_registry_operator_alias": "CNNIC", - "icann_registry_operator_slug": "cnnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "business organisation", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] }, { "tld": "xn--5su34j936bgsg", @@ -190437,6 +190488,32 @@ "date_removed": null } }, + "registry_url": "http://www.shangri-la.com/", + "whois_server": "whois.nic.xn--5su34j936bgsg", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-06-24", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "shangri-la", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--5su34j936bgsg", @@ -190552,31 +190629,7 @@ } ] } - ], - "registry_url": "http://www.shangri-la.com/", - "whois_server": "whois.nic.xn--5su34j936bgsg", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-06-24", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "shangri-la", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--5tzm5g", @@ -190603,6 +190656,31 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "whois_server": "whois.nic.xn--5tzm5g", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-12-04", + "tld_updated": [ + "2025-01-20" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "website", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--5tzm5g", @@ -190680,30 +190758,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "whois_server": "whois.nic.xn--5tzm5g", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-12-04", - "tld_updated": [ - "2025-01-20" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "website", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--6frz82g", @@ -190730,6 +190785,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-23", + "tld_updated": [ + "2025-09-04" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "mobile", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--6frz82g", @@ -190807,35 +190892,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-23", - "tld_updated": [ - "2025-09-04" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "mobile", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--6qq986b3xl", @@ -190862,6 +190919,29 @@ "date_removed": null } }, + "registry_url": "http://www.520.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--6qq986b3xl", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "I love you", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -190959,28 +191039,7 @@ } ] } - ], - "registry_url": "http://www.520.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--6qq986b3xl", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "I love you", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--80adxhks", @@ -191007,6 +191066,30 @@ "date_removed": null } }, + "registry_url": "http://www.faitid.org", + "whois_server": "whois.nic.xn--80adxhks", + "rdap_server": "https://rdap.flexireg.net", + "tld_created": "2014-04-17", + "tld_updated": [ + "2025-05-29" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "moscow", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "geographic_scope": "city", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.flexireg.ru", @@ -191084,29 +191167,7 @@ } ] } - ], - "registry_url": "http://www.faitid.org", - "whois_server": "whois.nic.xn--80adxhks", - "rdap_server": "https://rdap.flexireg.net", - "tld_created": "2014-04-17", - "tld_updated": [ - "2025-05-29" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "moscow", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ], - "geographic_scope": "city" - } + ] }, { "tld": "xn--80akhbyknj4f", @@ -191118,7 +191179,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ru", + "language_name_en": "Russian" + } }, { "tld": "xn--80ao21a", @@ -191135,6 +191200,24 @@ "tech": "KazNIC Organization" } }, + "registry_url": "http://www.nic.kz/", + "whois_server": "whois.nic.kz", + "tld_created": "2011-09-15", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Kazakhstan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "kk", + "language_name_en": "Kazakh" + }, "nameservers": [ { "hostname": "ns.nic.kz", @@ -191193,23 +191276,7 @@ } ] } - ], - "registry_url": "http://www.nic.kz/", - "whois_server": "whois.nic.kz", - "tld_created": "2011-09-15", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Kazakhstan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--80aqecdr1a", @@ -191236,6 +191303,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--80aqecdr1a", + "rdap_server": "https://rdap.nic.xn--80aqecdr1a/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.nic.xn--80aqecdr1a", @@ -191261,7 +191352,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191299,7 +191390,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191307,7 +191398,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191318,7 +191409,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191326,7 +191417,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191337,7 +191428,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -191345,35 +191436,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--80aqecdr1a", - "rdap_server": "https://rdap.nic.xn--80aqecdr1a/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--80asehdb", @@ -191400,6 +191469,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--80asehdb", + "rdap_server": "https://rdap.nic.xn--80asehdb/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -191477,28 +191569,7 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--80asehdb", - "rdap_server": "https://rdap.nic.xn--80asehdb/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "xn--80aswg", @@ -191525,6 +191596,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--80aswg", + "rdap_server": "https://rdap.nic.xn--80aswg/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "site", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -191602,28 +191696,7 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--80aswg", - "rdap_server": "https://rdap.nic.xn--80aswg/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "site", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "xn--8y0a063a", @@ -191650,6 +191723,32 @@ "date_removed": null } }, + "registry_url": "http://www.chinaunicom.cn", + "whois_server": "whois.nic.xn--8y0a063a", + "rdap_server": "https://rdap.zdnsgtld.com/xn--8y0a063a", + "tld_created": "2015-12-10", + "tld_updated": [ + "2024-12-12" + ], + "annotations": { + "iana_tech_alias": "ZDNS", + "iana_tech_slug": "zdns", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "unicom", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -191747,31 +191846,7 @@ } ] } - ], - "registry_url": "http://www.chinaunicom.cn", - "whois_server": "whois.nic.xn--8y0a063a", - "rdap_server": "https://rdap.zdnsgtld.com/xn--8y0a063a", - "tld_created": "2015-12-10", - "tld_updated": [ - "2024-12-12" - ], - "annotations": { - "iana_tech_alias": "ZDNS", - "iana_tech_slug": "zdns", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "unicom", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--90a3ac", @@ -191788,6 +191863,26 @@ "tech": "Serbian National Internet Domain Registry (RNIDS)" } }, + "registry_url": "http://www.rnids.rs/", + "whois_server": "whois.rnids.rs", + "tld_created": "2011-02-05", + "tld_updated": [ + "2025-02-06" + ], + "annotations": { + "country_name_iso": "Serbia", + "as_org_aliases": [ + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "sr", + "language_name_en": "Serbian" + }, "nameservers": [ { "hostname": "a.nic.rs", @@ -191903,25 +191998,7 @@ } ] } - ], - "registry_url": "http://www.rnids.rs/", - "whois_server": "whois.rnids.rs", - "tld_created": "2011-02-05", - "tld_updated": [ - "2025-02-06" - ], - "annotations": { - "country_name_iso": "Serbia", - "as_org_aliases": [ - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--90ae", @@ -191938,6 +192015,24 @@ "tech": "Imena.BG AD" } }, + "registry_url": "http://www.imena.bg", + "whois_server": "whois.imena.bg", + "tld_created": "2016-03-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Bulgaria", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "bg", + "language_name_en": "Bulgarian" + }, "nameservers": [ { "hostname": "a.nic.bg", @@ -192053,23 +192148,7 @@ } ] } - ], - "registry_url": "http://www.imena.bg", - "whois_server": "whois.imena.bg", - "tld_created": "2016-03-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Bulgaria", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--90ais", @@ -192086,6 +192165,18 @@ "tech": "Belarusian Cloud Technologies LLC" } }, + "registry_url": "https://cctld.by", + "whois_server": "whois.cctld.by", + "tld_created": "2014-09-29", + "tld_updated": [ + "2025-01-09" + ], + "annotations": { + "country_name_iso": "Belarus", + "geographic_scope": "country", + "language_code": "be", + "language_name_en": "Belarusian" + }, "nameservers": [ { "hostname": "dns1.tld.becloudby.com", @@ -192175,17 +192266,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://cctld.by", - "whois_server": "whois.cctld.by", - "tld_created": "2014-09-29", - "tld_updated": [ - "2025-01-09" - ], - "annotations": { - "country_name_iso": "Belarus", - "geographic_scope": "country" - } + ] }, { "tld": "xn--9dbq2a", @@ -192212,22 +192293,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--9dbq2a", + "rdap_server": "https://tld-rdap.verisign.com/xn--9dbq2a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "he", + "language_name_en": "Hebrew" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -192256,16 +192368,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -192289,36 +192401,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--9dbq2a", - "rdap_server": "https://tld-rdap.verisign.com/xn--9dbq2a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--9et52u", @@ -192345,6 +192428,29 @@ "date_removed": null } }, + "registry_url": "http://www.shishang.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--9et52u", + "tld_created": "2015-03-12", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "vogue", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -192442,28 +192548,7 @@ } ] } - ], - "registry_url": "http://www.shishang.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--9et52u", - "tld_created": "2015-03-12", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "vogue", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--9krt00a", @@ -192490,6 +192575,32 @@ "date_removed": null } }, + "registry_url": "http://www.sina.com", + "whois_server": "whois.nic.xn--9krt00a", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-29", + "tld_updated": [ + "2023-08-08" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "wei-bo", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--9krt00a", @@ -192567,31 +192678,7 @@ } ] } - ], - "registry_url": "http://www.sina.com", - "whois_server": "whois.nic.xn--9krt00a", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-29", - "tld_updated": [ - "2023-08-08" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "wei-bo", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--9t4b11yi5a", @@ -192603,7 +192690,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ko", + "language_name_en": "Korean" + } }, { "tld": "xn--b4w605ferd", @@ -192630,6 +192721,32 @@ "date_removed": null } }, + "registry_url": "http://www.temasek.com.sg/nicdan4ma3xi1", + "whois_server": "whois.nic.xn--b4w605ferd", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-12-18", + "tld_updated": [ + "2025-08-27" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "temasek", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--b4w605ferd", @@ -192707,31 +192824,7 @@ } ] } - ], - "registry_url": "http://www.temasek.com.sg/nicdan4ma3xi1", - "whois_server": "whois.nic.xn--b4w605ferd", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-12-18", - "tld_updated": [ - "2025-08-27" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "temasek", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--bck1b9a5dre4c", @@ -192758,6 +192851,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--bck1b9a5dre4c", + "whois_server": "whois.nic.xn--bck1b9a5dre4c", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "fashion", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--bck1b9a5dre4c", @@ -192873,36 +192997,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--bck1b9a5dre4c", - "whois_server": "whois.nic.xn--bck1b9a5dre4c", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "fashion", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--c1avg", @@ -192929,6 +193024,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--c1avg", + "whois_server": "whois.nic.xn--c1avg", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a0.nic.xn--c1avg", @@ -193006,36 +193132,7 @@ } ] } - ], - "registry_url": "http://nic.xn--c1avg", - "whois_server": "whois.nic.xn--c1avg", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--c2br7g", @@ -193062,22 +193159,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--c2br7g", + "rdap_server": "https://tld-rdap.verisign.com/xn--c2br7g/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -193106,16 +193234,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -193139,36 +193267,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--c2br7g", - "rdap_server": "https://tld-rdap.verisign.com/xn--c2br7g/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--cck2b3b", @@ -193195,122 +193294,6 @@ "date_removed": null } }, - "nameservers": [ - { - "hostname": "v0n0.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "65.22.76.5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:4a::5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n1.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "65.22.77.5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:4b::5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n2.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "65.22.78.5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:4c::5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v0n3.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "161.232.38.5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:10c::5", - "asn": 12041, - "as_org": "AS-AFILIAS1", - "as_country": "US" - } - ] - }, - { - "hostname": "v2n0.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "65.22.79.5", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:4d::5", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - }, - { - "hostname": "v2n1.nic.xn--cck2b3b", - "ipv4": [ - { - "ip": "161.232.39.5", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ], - "ipv6": [ - { - "ip": "2a01:8840:10d::5", - "asn": 207266, - "as_org": "AFILIAS-SECONDARY-DNS", - "as_country": "IE" - } - ] - } - ], "registry_url": "http://www.nic.xn--cck2b3b", "whois_server": "whois.nic.xn--cck2b3b", "rdap_server": "https://rdap.identitydigital.services/rdap/", @@ -193338,8 +193321,126 @@ ], "as_org_slugs": [ "identity-digital" - ] - } + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, + "nameservers": [ + { + "hostname": "v0n0.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "65.22.76.5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:4a::5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n1.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "65.22.77.5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:4b::5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n2.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "65.22.78.5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:4c::5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v0n3.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "161.232.38.5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:10c::5", + "asn": 12041, + "as_org": "AS-AFILIAS1", + "as_country": "US" + } + ] + }, + { + "hostname": "v2n0.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "65.22.79.5", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:4d::5", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + }, + { + "hostname": "v2n1.nic.xn--cck2b3b", + "ipv4": [ + { + "ip": "161.232.39.5", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ], + "ipv6": [ + { + "ip": "2a01:8840:10d::5", + "asn": 207266, + "as_org": "AFILIAS-SECONDARY-DNS", + "as_country": "IE" + } + ] + } + ] }, { "tld": "xn--cckwcxetd", @@ -193366,14 +193467,47 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--cckwcxetd", + "rdap_server": "https://rdap.nominet.uk/xn--cckwcxetd/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "amazon", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "dns1.nic.xn--cckwcxetd", "ipv4": [ { "ip": "213.248.218.92", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -193391,8 +193525,8 @@ "ipv4": [ { "ip": "103.49.82.92", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -193519,38 +193653,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--cckwcxetd", - "rdap_server": "https://rdap.nominet.uk/xn--cckwcxetd/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "amazon", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "xn--cg4bki", @@ -193577,6 +193680,23 @@ "date_removed": null } }, + "registry_url": "http://samsungregistry.com", + "whois_server": "whois.kr", + "rdap_server": "https://nic.samsung/rdap/", + "tld_created": "2013-12-12", + "tld_updated": [ + "2026-01-08" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "samsung", + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "n1-a1.aka-ns.net", @@ -193711,22 +193831,7 @@ } ] } - ], - "registry_url": "http://samsungregistry.com", - "whois_server": "whois.kr", - "rdap_server": "https://nic.samsung/rdap/", - "tld_created": "2013-12-12", - "tld_updated": [ - "2026-01-08" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "samsung" - } + ] }, { "tld": "xn--clchc0ea0b2g2a9gcd", @@ -193743,6 +193848,30 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd" } }, + "registry_url": "http://www.sgnic.sg/", + "whois_server": "whois.ta.sgnic.sg", + "rdap_server": "https://rdap.ta.sgnic.sg/rdap/", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -193839,29 +193968,7 @@ } ] } - ], - "registry_url": "http://www.sgnic.sg/", - "whois_server": "whois.ta.sgnic.sg", - "rdap_server": "https://rdap.ta.sgnic.sg/rdap/", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--czr694b", @@ -193888,6 +193995,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--czr694b", + "tld_created": "2014-05-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "trademark", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -193985,26 +194113,7 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--czr694b", - "tld_created": "2014-05-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "trademark", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--czrs0t", @@ -194031,6 +194140,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-11-20", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "shop", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--czrs0t", @@ -194146,35 +194285,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-11-20", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "shop", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--czru2d", @@ -194201,6 +194312,29 @@ "date_removed": null } }, + "registry_url": "http://www.shangcheng.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--czru2d", + "tld_created": "2014-02-27", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "mall", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -194298,28 +194432,7 @@ } ] } - ], - "registry_url": "http://www.shangcheng.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--czru2d", - "tld_created": "2014-02-27", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "mall", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--d1acj3b", @@ -194346,6 +194459,23 @@ "date_removed": null } }, + "registry_url": "http://www.dotdeti.ru", + "whois_server": "whois.nic.xn--d1acj3b", + "rdap_server": "https://whois.nic.xn--d1acj3b/rdap/", + "tld_created": "2014-02-13", + "tld_updated": [ + "2026-04-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "kids", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -194442,22 +194572,7 @@ } ] } - ], - "registry_url": "http://www.dotdeti.ru", - "whois_server": "whois.nic.xn--d1acj3b", - "rdap_server": "https://whois.nic.xn--d1acj3b/rdap/", - "tld_created": "2014-02-13", - "tld_updated": [ - "2026-04-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "kids" - } + ] }, { "tld": "xn--d1alf", @@ -194474,6 +194589,24 @@ "tech": "Faculty of Computer Science and Engineering" } }, + "registry_url": "http://marnet.mk/", + "whois_server": "whois.marnet.mk", + "tld_created": "2014-04-21", + "tld_updated": [ + "2024-02-21" + ], + "annotations": { + "country_name_iso": "North Macedonia", + "as_org_aliases": [ + "CZNIC" + ], + "as_org_slugs": [ + "cznic" + ], + "geographic_scope": "country", + "language_code": "mk", + "language_name_en": "Macedonian" + }, "nameservers": [ { "hostname": "b.dns.si", @@ -194544,23 +194677,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://marnet.mk/", - "whois_server": "whois.marnet.mk", - "tld_created": "2014-04-21", - "tld_updated": [ - "2024-02-21" - ], - "annotations": { - "country_name_iso": "North Macedonia", - "as_org_aliases": [ - "CZNIC" - ], - "as_org_slugs": [ - "cznic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--deba0ad", @@ -194572,7 +194689,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "he", + "language_name_en": "Hebrew" + } }, { "tld": "xn--e1a4c", @@ -194589,6 +194710,26 @@ "tech": "EURid vzw" } }, + "registry_url": "http://www.registry.eu", + "whois_server": "whois.eu", + "tld_created": "2015-12-08", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational", + "language_code": "bg", + "language_name_en": "Bulgarian" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -194678,25 +194819,7 @@ } ] } - ], - "registry_url": "http://www.registry.eu", - "whois_server": "whois.eu", - "tld_created": "2015-12-08", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--eckvdtc9d", @@ -194723,6 +194846,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--eckvdtc9d", + "whois_server": "whois.nic.xn--eckvdtc9d", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "point", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--eckvdtc9d", @@ -194838,36 +194992,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--eckvdtc9d", - "whois_server": "whois.nic.xn--eckvdtc9d", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "point", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--efvy88h", @@ -194894,6 +195019,29 @@ "date_removed": null } }, + "registry_url": "http://www.gd.xinhua.org", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/XN--EFVY88H", + "tld_created": "2015-08-06", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "news", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -194991,28 +195139,7 @@ } ] } - ], - "registry_url": "http://www.gd.xinhua.org", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/XN--EFVY88H", - "tld_created": "2015-08-06", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "news", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--estv75g", @@ -195044,7 +195171,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "icbc" + "icann_translation_en": "icbc", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -195072,6 +195201,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--fct429k", + "whois_server": "whois.nic.xn--fct429k", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "consumer electronics", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--fct429k", @@ -195187,36 +195347,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--fct429k", - "whois_server": "whois.nic.xn--fct429k", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "consumer electronics", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--fhbei", @@ -195243,22 +195374,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--fhbei", + "rdap_server": "https://tld-rdap.verisign.com/xn--fhbei/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -195287,16 +195449,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -195320,36 +195482,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--fhbei", - "rdap_server": "https://tld-rdap.verisign.com/xn--fhbei/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--fiq228c5hs", @@ -195376,14 +195509,37 @@ "date_removed": null } }, + "registry_url": "https://tldland.cn/", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/xn--fiq228c5hs/", + "tld_created": "2013-12-19", + "tld_updated": [ + "2025-12-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "website", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -195439,28 +195595,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://tldland.cn/", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/xn--fiq228c5hs/", - "tld_created": "2013-12-19", - "tld_updated": [ - "2025-12-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "website", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--fiq64b", @@ -195487,6 +195622,29 @@ "date_removed": null } }, + "whois_server": "whois.gtld.knet.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--fiq64b", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "citic", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -195584,28 +195742,7 @@ } ] } - ], - "whois_server": "whois.gtld.knet.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--fiq64b", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "citic", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--fiqs8s", @@ -195622,13 +195759,37 @@ "tech": "China Internet Network Information Center (CNNIC)" } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.cnnic.cn", + "tld_created": "2010-07-09", + "tld_updated": [ + "2025-07-18" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "country_name_iso": "China", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "geographic_scope": "country", + "language_code": "zh-Hans", + "language_name_en": "Chinese (Simplified)" + }, "nameservers": [ { "hostname": "h.dns.cn", "ipv4": [ { "ip": "125.208.32.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195647,7 +195808,7 @@ "ipv4": [ { "ip": "125.208.33.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195655,7 +195816,7 @@ "ipv6": [ { "ip": "2001:dc7:ffff::1", - "asn": 24406, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195693,7 +195854,7 @@ "ipv6": [ { "ip": "2001:dc7:fffc::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195718,7 +195879,23 @@ } ] } - ], + ] + }, + { + "tld": "xn--fiqz9s", + "tld_unicode": "中國", + "tld_script": "Han-CJK", + "tld_iso": "cn", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "China Internet Network Information Center (CNNIC)", + "admin": "China Internet Network Information Center (CNNIC)", + "tech": "China Internet Network Information Center (CNNIC)" + } + }, "registry_url": "http://www.cnnic.cn", "whois_server": "whois.cnnic.cn", "tld_created": "2010-07-09", @@ -195739,23 +195916,9 @@ "as_org_slugs": [ "cnnic" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--fiqz9s", - "tld_unicode": "中國", - "tld_script": "Han-CJK", - "tld_iso": "cn", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "China Internet Network Information Center (CNNIC)", - "admin": "China Internet Network Information Center (CNNIC)", - "tech": "China Internet Network Information Center (CNNIC)" - } + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" }, "nameservers": [ { @@ -195763,7 +195926,7 @@ "ipv4": [ { "ip": "125.208.32.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195782,7 +195945,7 @@ "ipv4": [ { "ip": "125.208.33.1", - "asn": 24409, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195790,7 +195953,7 @@ "ipv6": [ { "ip": "2001:dc7:ffff::1", - "asn": 24406, + "asn": 24409, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195828,7 +195991,7 @@ "ipv6": [ { "ip": "2001:dc7:fffc::1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -195853,29 +196016,7 @@ } ] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.cnnic.cn", - "tld_created": "2010-07-09", - "tld_updated": [ - "2025-07-18" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "country_name_iso": "China", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--fjq720a", @@ -195902,6 +196043,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-07-17", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "entertainment", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--fjq720a", @@ -196017,35 +196188,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-07-17", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "entertainment", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--flw351e", @@ -196072,6 +196215,37 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "google", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -196168,36 +196342,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "google", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "xn--fpcrj9c3d", @@ -196214,6 +196359,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "te", + "language_name_en": "Telugu" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -196291,31 +196462,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--fzc2c9e2c", @@ -196332,6 +196479,25 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-04-23" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "si", + "language_name_en": "Sinhala" + }, "nameservers": [ { "hostname": "lk.communitydns.net", @@ -196436,24 +196602,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.domains.lk", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-04-23" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--fzys8d69uvgm", @@ -196480,6 +196629,32 @@ "date_removed": null } }, + "registry_url": "https://www.pccw.com/", + "whois_server": "whois.nic.xn--fzys8d69uvgm", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-04-15", + "tld_updated": [ + "2026-01-16" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "pccw", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--fzys8d69uvgm", @@ -196557,31 +196732,7 @@ } ] } - ], - "registry_url": "https://www.pccw.com/", - "whois_server": "whois.nic.xn--fzys8d69uvgm", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-04-15", - "tld_updated": [ - "2026-01-16" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "pccw", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--g2xx48c", @@ -196608,6 +196759,31 @@ "date_removed": null } }, + "registry_url": "http://gouwunic.com/", + "whois_server": "whois.nic.xn--g2xx48c", + "rdap_server": "https://rdap.nic.xn--g2xx48c/", + "tld_created": "2016-01-08", + "tld_updated": [ + "2025-03-13" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "shopping", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--g2xx48c", @@ -196633,7 +196809,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -196723,30 +196899,7 @@ } ] } - ], - "registry_url": "http://gouwunic.com/", - "whois_server": "whois.nic.xn--g2xx48c", - "rdap_server": "https://rdap.nic.xn--g2xx48c/", - "tld_created": "2016-01-08", - "tld_updated": [ - "2025-03-13" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "shopping", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--g6w251d", @@ -196758,7 +196911,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "zh", + "language_name_en": "Chinese" + } }, { "tld": "xn--gckr3f0f", @@ -196785,6 +196942,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--gckr3f0f", + "whois_server": "whois.nic.xn--gckr3f0f", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "cloud", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--gckr3f0f", @@ -196900,36 +197088,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--gckr3f0f", - "whois_server": "whois.nic.xn--gckr3f0f", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "cloud", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--gecrj9c", @@ -196946,6 +197105,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "gu", + "language_name_en": "Gujarati" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -197023,31 +197208,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--gk3at1e", @@ -197074,6 +197235,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--gk3at1e", + "whois_server": "whois.nic.xn--gk3at1e", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-09-16", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "online shopping", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--gk3at1e", @@ -197189,36 +197381,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--gk3at1e", - "whois_server": "whois.nic.xn--gk3at1e", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-09-16", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "online shopping", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--h2breg3eve", @@ -197235,6 +197398,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -197312,10 +197501,26 @@ } ] } - ], + ] + }, + { + "tld": "xn--h2brj9c", + "tld_unicode": "भारत", + "tld_script": "Devanagari", + "tld_iso": "in", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "National Internet Exchange of India", + "admin": "National Internet Exchange of India", + "tech": "National Internet Exchange of India" + } + }, "registry_url": "https://registry.in", "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", + "tld_created": "2011-02-05", "tld_updated": [ "2026-04-16" ], @@ -197335,23 +197540,9 @@ "packet-clearing-house", "tucows" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--h2brj9c", - "tld_unicode": "भारत", - "tld_script": "Devanagari", - "tld_iso": "in", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "National Internet Exchange of India", - "admin": "National Internet Exchange of India", - "tech": "National Internet Exchange of India" - } + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" }, "nameservers": [ { @@ -197430,10 +197621,26 @@ } ] } - ], + ] + }, + { + "tld": "xn--h2brj9c8c", + "tld_unicode": "भारोत", + "tld_script": "Devanagari", + "tld_iso": "in", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "National Internet eXchange of India", + "admin": "National Internet eXchange of India", + "tech": "National Internet eXchange of India" + } + }, "registry_url": "https://registry.in", "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", + "tld_created": "2016-08-15", "tld_updated": [ "2026-04-16" ], @@ -197453,23 +197660,9 @@ "packet-clearing-house", "tucows" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--h2brj9c8c", - "tld_unicode": "भारोत", - "tld_script": "Devanagari", - "tld_iso": "in", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "National Internet eXchange of India", - "admin": "National Internet eXchange of India", - "tech": "National Internet eXchange of India" - } + "geographic_scope": "country", + "language_code": "hi", + "language_name_en": "Hindi" }, "nameservers": [ { @@ -197548,31 +197741,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--hgbk6aj7f53bba", @@ -197584,7 +197753,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ar", + "language_name_en": "Arabic" + } }, { "tld": "xn--hlcj6aya9esc7a", @@ -197596,7 +197769,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ta", + "language_name_en": "Tamil" + } }, { "tld": "xn--hxt814e", @@ -197623,6 +197800,29 @@ "date_removed": null } }, + "registry_url": "http://www.wangdian.wang", + "whois_server": "whois.gtld.zdns.cn", + "rdap_server": "https://rdap.zdnsgtld.com/xn--hxt814e", + "tld_created": "2014-11-20", + "tld_updated": [ + "2026-05-22" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "webshop", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -197720,28 +197920,7 @@ } ] } - ], - "registry_url": "http://www.wangdian.wang", - "whois_server": "whois.gtld.zdns.cn", - "rdap_server": "https://rdap.zdnsgtld.com/xn--hxt814e", - "tld_created": "2014-11-20", - "tld_updated": [ - "2026-05-22" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "webshop", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--i1b6b1a6a2e", @@ -197768,6 +197947,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--i1b6b1a6a2e", + "whois_server": "whois.nic.xn--i1b6b1a6a2e", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "organization", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "hi", + "language_name_en": "Hindi" + }, "nameservers": [ { "hostname": "a0.nic.xn--i1b6b1a6a2e", @@ -197845,36 +198055,7 @@ } ] } - ], - "registry_url": "http://nic.xn--i1b6b1a6a2e", - "whois_server": "whois.nic.xn--i1b6b1a6a2e", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "organization", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--imr513n", @@ -197901,6 +198082,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--imr513n", + "tld_created": "2015-05-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "restaurant", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -197998,26 +198200,7 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--imr513n", - "tld_created": "2015-05-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "restaurant", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--io0a7i", @@ -198044,6 +198227,37 @@ "date_removed": null } }, + "registry_url": "http://www.cnnic.cn", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-07-17" + ], + "annotations": { + "iana_sponsor_alias": "CNNIC", + "iana_sponsor_slug": "cnnic", + "iana_admin_alias": "CNNIC", + "iana_admin_slug": "cnnic", + "iana_tech_alias": "CNNIC", + "iana_tech_slug": "cnnic", + "icann_registry_operator_alias": "CNNIC", + "icann_registry_operator_slug": "cnnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "network", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.ngtld.cn", @@ -198126,36 +198340,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.cnnic.cn", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-07-17" - ], - "annotations": { - "iana_sponsor_alias": "CNNIC", - "iana_sponsor_slug": "cnnic", - "iana_admin_alias": "CNNIC", - "iana_admin_slug": "cnnic", - "iana_tech_alias": "CNNIC", - "iana_tech_slug": "cnnic", - "icann_registry_operator_alias": "CNNIC", - "icann_registry_operator_slug": "cnnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "network", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] }, { "tld": "xn--j1aef", @@ -198182,22 +198367,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--j1aef", + "rdap_server": "https://tld-rdap.verisign.com/xn--j1aef/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -198226,16 +198442,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -198259,36 +198475,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--j1aef", - "rdap_server": "https://tld-rdap.verisign.com/xn--j1aef/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--j1amh", @@ -198305,6 +198492,18 @@ "tech": "Ukrainian Network Information Centre (UANIC), Inc." } }, + "registry_url": "https://namestore.u-registry.com", + "whois_server": "whois.dotukr.com", + "tld_created": "2011-03-01", + "tld_updated": [ + "2024-02-27" + ], + "annotations": { + "country_name_iso": "Ukraine", + "geographic_scope": "country", + "language_code": "uk", + "language_name_en": "Ukrainian" + }, "nameservers": [ { "hostname": "dns.tci.net.ua", @@ -198392,17 +198591,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://namestore.u-registry.com", - "whois_server": "whois.dotukr.com", - "tld_created": "2011-03-01", - "tld_updated": [ - "2024-02-27" - ], - "annotations": { - "country_name_iso": "Ukraine", - "geographic_scope": "country" - } + ] }, { "tld": "xn--j6w193g", @@ -198419,6 +198608,26 @@ "tech": "Hong Kong Internet Registration Corporation Ltd." } }, + "registry_url": "http://www.hkirc.hk", + "whois_server": "whois.hkirc.hk", + "tld_created": "2010-07-12", + "tld_updated": [ + "2026-01-07" + ], + "annotations": { + "country_name_iso": "Hong Kong", + "as_org_aliases": [ + "CNNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cnnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" + }, "nameservers": [ { "hostname": "c.hkirc.net.hk", @@ -198463,7 +198672,7 @@ "ipv4": [ { "ip": "125.208.49.10", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -198591,25 +198800,7 @@ } ] } - ], - "registry_url": "http://www.hkirc.hk", - "whois_server": "whois.hkirc.hk", - "tld_created": "2010-07-12", - "tld_updated": [ - "2026-01-07" - ], - "annotations": { - "country_name_iso": "Hong Kong", - "as_org_aliases": [ - "CNNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cnnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--jlq480n2rg", @@ -198636,14 +198827,45 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--jlq480n2rg", + "rdap_server": "https://rdap.nominet.uk/xn--jlq480n2rg/", + "tld_created": "2020-05-28", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "amazon", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "dns1.nic.xn--jlq480n2rg", "ipv4": [ { "ip": "213.248.218.91", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -198661,8 +198883,8 @@ "ipv4": [ { "ip": "103.49.82.91", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -198789,36 +199011,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--jlq480n2rg", - "rdap_server": "https://rdap.nominet.uk/xn--jlq480n2rg/", - "tld_created": "2020-05-28", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "amazon", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "xn--jlq61u9w7b", @@ -198850,7 +199043,9 @@ "brand", "non_sponsored" ], - "icann_translation_en": "nokia" + "icann_translation_en": "nokia", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -198878,6 +199073,37 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--jvr189m", + "whois_server": "whois.nic.xn--jvr189m", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "food", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--jvr189m", @@ -198993,36 +199219,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--jvr189m", - "whois_server": "whois.nic.xn--jvr189m", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "food", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--jxalpdlp", @@ -199034,7 +199231,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "el", + "language_name_en": "Greek" + } }, { "tld": "xn--kcrx77d1x4a", @@ -199061,6 +199262,30 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--kcrx77d1x4a", + "whois_server": "whois.nic.xn--kcrx77d1x4a", + "rdap_server": "https://rdap.nic.xn--kcrx77d1x4a/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2023-11-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "philips", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--kcrx77d1x4a", @@ -199086,7 +199311,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199124,7 +199349,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199132,7 +199357,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199143,7 +199368,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199151,7 +199376,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199162,7 +199387,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199170,35 +199395,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.xn--kcrx77d1x4a", - "whois_server": "whois.nic.xn--kcrx77d1x4a", - "rdap_server": "https://rdap.nic.xn--kcrx77d1x4a/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2023-11-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "philips", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--kgbechtv", @@ -199210,7 +199413,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ar", + "language_name_en": "Arabic" + } }, { "tld": "xn--kprw13d", @@ -199227,6 +199434,28 @@ "tech": "Taiwan Network Information Center (TWNIC)" } }, + "registry_url": "http://rs.twnic.net.tw", + "whois_server": "whois.twnic.net.tw", + "tld_created": "2010-07-14", + "tld_updated": [ + "2026-04-24" + ], + "annotations": { + "country_name_iso": "Taiwan, Province of China", + "as_org_aliases": [ + "Google", + "Microsoft", + "Packet Clearing House" + ], + "as_org_slugs": [ + "google", + "microsoft", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hant-TW", + "language_name_en": "Chinese (Taiwan)" + }, "nameservers": [ { "hostname": "anytld.apnic.net", @@ -199328,14 +199557,32 @@ } ] } - ], + ] + }, + { + "tld": "xn--kpry57d", + "tld_unicode": "台灣", + "tld_script": "Han-CJK", + "tld_iso": "tw", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "Taiwan Network Information Center (TWNIC)", + "admin": "Taiwan Network Information Center (TWNIC)", + "tech": "Taiwan Network Information Center (TWNIC)" + } + }, "registry_url": "http://rs.twnic.net.tw", "whois_server": "whois.twnic.net.tw", + "rdap_server": "https://ccrdap.twnic.tw/taiwan/", "tld_created": "2010-07-14", "tld_updated": [ "2026-04-24" ], "annotations": { + "rdap_source": "IANA", "country_name_iso": "Taiwan, Province of China", "as_org_aliases": [ "Google", @@ -199347,23 +199594,9 @@ "microsoft", "packet-clearing-house" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--kpry57d", - "tld_unicode": "台灣", - "tld_script": "Han-CJK", - "tld_iso": "tw", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "Taiwan Network Information Center (TWNIC)", - "admin": "Taiwan Network Information Center (TWNIC)", - "tech": "Taiwan Network Information Center (TWNIC)" - } + "geographic_scope": "country", + "language_code": "zh-Hant-TW", + "language_name_en": "Chinese (Taiwan)" }, "nameservers": [ { @@ -199466,29 +199699,7 @@ } ] } - ], - "registry_url": "http://rs.twnic.net.tw", - "whois_server": "whois.twnic.net.tw", - "rdap_server": "https://ccrdap.twnic.tw/taiwan/", - "tld_created": "2010-07-14", - "tld_updated": [ - "2026-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Taiwan, Province of China", - "as_org_aliases": [ - "Google", - "Microsoft", - "Packet Clearing House" - ], - "as_org_slugs": [ - "google", - "microsoft", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--kpu716f", @@ -199519,7 +199730,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "watches" + "icann_translation_en": "watches", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -199547,14 +199760,37 @@ "date_removed": null } }, + "registry_url": "http://www.rntd.cn", + "whois_server": "whois.nic.xn--kput3i", + "rdap_server": "https://rdap.teleinfo.cn/xn--kput3i/", + "tld_created": "2014-06-05", + "tld_updated": [ + "2025-04-25" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "cell", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -199610,28 +199846,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.rntd.cn", - "whois_server": "whois.nic.xn--kput3i", - "rdap_server": "https://rdap.teleinfo.cn/xn--kput3i/", - "tld_created": "2014-06-05", - "tld_updated": [ - "2025-04-25" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "cell", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--l1acc", @@ -199648,6 +199863,24 @@ "tech": "Datacom Co.,Ltd" } }, + "registry_url": "https://www.datacom.mn/", + "whois_server": "whois.mn", + "tld_created": "2012-06-21", + "tld_updated": [ + "2025-06-18" + ], + "annotations": { + "iana_sponsor_alias": "Datacom Mongolia", + "iana_sponsor_slug": "datacom-mongolia", + "iana_admin_alias": "Datacom Mongolia", + "iana_admin_slug": "datacom-mongolia", + "iana_tech_alias": "Datacom Mongolia", + "iana_tech_slug": "datacom-mongolia", + "country_name_iso": "Mongolia", + "geographic_scope": "country", + "language_code": "mn", + "language_name_en": "Mongolian" + }, "nameservers": [ { "hostname": "ns10.dns.mn", @@ -199673,23 +199906,7 @@ ], "ipv6": [] } - ], - "registry_url": "https://www.datacom.mn/", - "whois_server": "whois.mn", - "tld_created": "2012-06-21", - "tld_updated": [ - "2025-06-18" - ], - "annotations": { - "iana_sponsor_alias": "Datacom Mongolia", - "iana_sponsor_slug": "datacom-mongolia", - "iana_admin_alias": "Datacom Mongolia", - "iana_admin_slug": "datacom-mongolia", - "iana_tech_alias": "Datacom Mongolia", - "iana_tech_slug": "datacom-mongolia", - "country_name_iso": "Mongolia", - "geographic_scope": "country" - } + ] }, { "tld": "xn--lgbbat1ad8j", @@ -199706,6 +199923,18 @@ "tech": "CERIST" } }, + "registry_url": "http://www.nic.dz", + "whois_server": "whois.nic.dz", + "tld_created": "2011-02-05", + "tld_updated": [ + "2025-10-01" + ], + "annotations": { + "country_name_iso": "Algeria", + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "idn1.nic.dz", @@ -199731,17 +199960,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.nic.dz", - "whois_server": "whois.nic.dz", - "tld_created": "2011-02-05", - "tld_updated": [ - "2025-10-01" - ], - "annotations": { - "country_name_iso": "Algeria", - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgb9awbf", @@ -199758,6 +199977,24 @@ "tech": "Telecommunications Regulatory Authority (TRA)" } }, + "registry_url": "http://www.registry.om", + "whois_server": "whois.registry.om", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Oman", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "cctld.alpha.aridns.net.au", @@ -199783,7 +200020,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199873,23 +200110,7 @@ } ] } - ], - "registry_url": "http://www.registry.om", - "whois_server": "whois.registry.om", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Oman", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgba3a3ejt", @@ -199916,6 +200137,30 @@ "date_removed": null } }, + "registry_url": "http://www.aramco.com", + "rdap_server": "https://rdap.nic.xn--mgba3a3ejt/", + "tld_created": "2015-08-20", + "tld_updated": [ + "2024-05-11" + ], + "annotations": { + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "aramco", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgba3a3ejt", @@ -199941,7 +200186,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -199987,7 +200232,7 @@ "ipv6": [ { "ip": "2610:a1:1074::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200006,7 +200251,7 @@ "ipv6": [ { "ip": "2610:a1:1075::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200025,35 +200270,13 @@ "ipv6": [ { "ip": "2610:a1:1076::f", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.aramco.com", - "rdap_server": "https://rdap.nic.xn--mgba3a3ejt/", - "tld_created": "2015-08-20", - "tld_updated": [ - "2024-05-11" - ], - "annotations": { - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "aramco", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--mgba3a4f16a", @@ -200070,6 +200293,18 @@ "tech": "Institute for Research in Fundamental Sciences (IPM)" } }, + "registry_url": "http://www.nic.ir", + "whois_server": "whois.nic.ir", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Iran, Islamic Republic of", + "geographic_scope": "country", + "language_code": "fa", + "language_name_en": "Persian" + }, "nameservers": [ { "hostname": "a.nic.ir", @@ -200084,9 +200319,9 @@ "ipv6": [ { "ip": "2001:678:b0:0:193:189:123:2", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 39200, + "as_org": "IRNICANYCAST-AS", + "as_country": "IR" } ] }, @@ -200103,23 +200338,13 @@ "ipv6": [ { "ip": "2001:678:b1:0:193:189:122:83", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 35285, + "as_org": "IRNIC-AS", + "as_country": "IR" } ] } - ], - "registry_url": "http://www.nic.ir", - "whois_server": "whois.nic.ir", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Iran, Islamic Republic of", - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgba7c0bbn0a", @@ -200146,6 +200371,29 @@ "date_removed": null } }, + "registry_url": "http://www.olayan.com/", + "whois_server": "whois.nic.xn--mgba7c0bbn0a", + "rdap_server": "https://rdap.nic.xn--mgba7c0bbn0a/", + "tld_created": "2016-04-21", + "tld_updated": [ + "2024-05-31" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "olayan", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgba7c0bbn0a", @@ -200171,7 +200419,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200209,7 +200457,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200217,7 +200465,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200228,7 +200476,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200236,7 +200484,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200247,7 +200495,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -200255,34 +200503,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.olayan.com/", - "whois_server": "whois.nic.xn--mgba7c0bbn0a", - "rdap_server": "https://rdap.nic.xn--mgba7c0bbn0a/", - "tld_created": "2016-04-21", - "tld_updated": [ - "2024-05-31" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "olayan", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--mgbaakc7dvf", @@ -200313,7 +200540,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "communications" + "icann_translation_en": "communications", + "language_code": "ar", + "language_name_en": "Arabic" } }, { @@ -200331,6 +200560,24 @@ "tech": ".ae Domain Administration (.aeDA)" } }, + "registry_url": "http://aeda.ae/", + "whois_server": "whois.aeda.net.ae", + "tld_created": "2010-05-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "United Arab Emirates", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.aedns.ae", @@ -200389,23 +200636,7 @@ } ] } - ], - "registry_url": "http://aeda.ae/", - "whois_server": "whois.aeda.net.ae", - "tld_created": "2010-05-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "United Arab Emirates", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbab2bd", @@ -200432,6 +200663,29 @@ "date_removed": null } }, + "registry_url": "http://corenic.org", + "whois_server": "whois.nic.xn--mgbab2bd", + "rdap_server": "https://rdap.nic.xn--mgbab2bd/", + "tld_created": "2014-02-06", + "tld_updated": [ + "2022-01-07" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "bazaar", + "as_org_aliases": [ + "Knipp Medien" + ], + "as_org_slugs": [ + "knipp-medien" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "anycast10.irondns.net", @@ -200509,28 +200763,7 @@ } ] } - ], - "registry_url": "http://corenic.org", - "whois_server": "whois.nic.xn--mgbab2bd", - "rdap_server": "https://rdap.nic.xn--mgbab2bd/", - "tld_created": "2014-02-06", - "tld_updated": [ - "2022-01-07" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "bazaar", - "as_org_aliases": [ - "Knipp Medien" - ], - "as_org_slugs": [ - "knipp-medien" - ] - } + ] }, { "tld": "xn--mgbah1a3hjkrd", @@ -200547,6 +200780,26 @@ "tech": "Faculté des Sciences et Techniques (UNA)" } }, + "registry_url": "http://www.nic.mr", + "whois_server": "whois.nic.mr", + "tld_created": "2017-11-28", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Mauritania", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns-mr.afrinic.net", @@ -200629,25 +200882,7 @@ } ] } - ], - "registry_url": "http://www.nic.mr", - "whois_server": "whois.nic.mr", - "tld_created": "2017-11-28", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Mauritania", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbai9azgqp6j", @@ -200664,6 +200899,16 @@ "tech": "National Telecommunication Corporation" } }, + "tld_created": "2011-02-28", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "country_name_iso": "Pakistan", + "geographic_scope": "country", + "language_code": "ur", + "language_name_en": "Urdu" + }, "nameservers": [ { "hostname": "ns1.ntc.org.pk", @@ -200701,15 +200946,7 @@ ], "ipv6": [] } - ], - "tld_created": "2011-02-28", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "country_name_iso": "Pakistan", - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbayh7gpa", @@ -200726,6 +200963,23 @@ "tech": "Ministry of Digital Economy and Entrepreneurship (MoDEE)" } }, + "registry_url": "https://dns.jo/", + "tld_created": "2010-08-20", + "tld_updated": [ + "2026-02-05" + ], + "annotations": { + "country_name_iso": "Jordan", + "as_org_aliases": [ + "Amazon" + ], + "as_org_slugs": [ + "amazon" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.cctld-servers.net.jo", @@ -200822,22 +201076,7 @@ } ] } - ], - "registry_url": "https://dns.jo/", - "tld_created": "2010-08-20", - "tld_updated": [ - "2026-02-05" - ], - "annotations": { - "country_name_iso": "Jordan", - "as_org_aliases": [ - "Amazon" - ], - "as_org_slugs": [ - "amazon" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbb9fbpob", @@ -200868,7 +201107,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "mobily" + "icann_translation_en": "mobily", + "language_code": "ar", + "language_name_en": "Arabic" } }, { @@ -200886,6 +201127,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -200963,10 +201230,26 @@ } ] } - ], + ] + }, + { + "tld": "xn--mgbbh1a71e", + "tld_unicode": "بھارت", + "tld_script": "Arabic", + "tld_iso": "in", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "National Internet Exchange of India", + "admin": "National Internet Exchange of India", + "tech": "National Internet Exchange of India" + } + }, "registry_url": "https://registry.in", "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", + "tld_created": "2011-02-05", "tld_updated": [ "2026-04-16" ], @@ -200986,23 +201269,9 @@ "packet-clearing-house", "tucows" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--mgbbh1a71e", - "tld_unicode": "بھارت", - "tld_script": "Arabic", - "tld_iso": "in", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "National Internet Exchange of India", - "admin": "National Internet Exchange of India", - "tech": "National Internet Exchange of India" - } + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" }, "nameservers": [ { @@ -201081,31 +201350,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbc0a9azcg", @@ -201122,6 +201367,23 @@ "tech": "Agence Nationale de Réglementation des Télécommunications (ANRT)" } }, + "registry_url": "http://www.registre.ma", + "tld_created": "2011-02-05", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Morocco", + "as_org_aliases": [ + "AFNIC" + ], + "as_org_slugs": [ + "afnic" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.tld.ma", @@ -201273,22 +201535,7 @@ } ] } - ], - "registry_url": "http://www.registre.ma", - "tld_created": "2011-02-05", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Morocco", - "as_org_aliases": [ - "AFNIC" - ], - "as_org_slugs": [ - "afnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbca7dzdo", @@ -201315,6 +201562,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.xn--mgbca7dzdo", + "rdap_server": "https://rdap.nic.xn--mgbca7dzdo", + "tld_created": "2016-03-03", + "tld_updated": [ + "2019-11-26" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "abu dhabi", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -201340,7 +201610,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201392,28 +201662,7 @@ } ] } - ], - "whois_server": "whois.nic.xn--mgbca7dzdo", - "rdap_server": "https://rdap.nic.xn--mgbca7dzdo", - "tld_created": "2016-03-03", - "tld_updated": [ - "2019-11-26" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "abu dhabi", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "xn--mgbcpq6gpa1a", @@ -201430,6 +201679,24 @@ "tech": "CentralNic" } }, + "tld_created": "2019-06-13", + "tld_updated": [ + "2024-07-01" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "country_name_iso": "Bahrain", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgbcpq6gpa1a", @@ -201507,23 +201774,7 @@ } ] } - ], - "tld_created": "2019-06-13", - "tld_updated": [ - "2024-07-01" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "country_name_iso": "Bahrain", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgberp4a5d4ar", @@ -201540,6 +201791,24 @@ "tech": "Communications, Space and Technology Commission" } }, + "registry_url": "http://www.nic.net.sa/", + "whois_server": "whois.nic.net.sa", + "tld_created": "2010-05-05", + "tld_updated": [ + "2026-02-18" + ], + "annotations": { + "country_name_iso": "Saudi Arabia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "c1.dns.sa", @@ -201687,8 +201956,8 @@ "ipv6": [ { "ip": "2001:16a0:1:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -201706,8 +201975,8 @@ "ipv6": [ { "ip": "2001:16a0:2:3002::2", - "asn": 39386, - "as_org": "STC-IGW-AS", + "asn": 25019, + "as_org": "SAUDINETSTC-AS", "as_country": "SA" } ] @@ -201731,23 +202000,7 @@ } ] } - ], - "registry_url": "http://www.nic.net.sa/", - "whois_server": "whois.nic.net.sa", - "tld_created": "2010-05-05", - "tld_updated": [ - "2026-02-18" - ], - "annotations": { - "country_name_iso": "Saudi Arabia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbgu82a", @@ -201764,6 +202017,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-08-15", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -201841,31 +202120,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-08-15", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbi4ecexp", @@ -201892,6 +202147,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--mgbi4ecexp", + "rdap_server": "https://rdap.nic.xn--mgbi4ecexp/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--mgbi4ecexp", @@ -201917,7 +202196,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201955,7 +202234,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201963,7 +202242,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201974,7 +202253,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201982,7 +202261,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -201993,7 +202272,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -202001,35 +202280,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--mgbi4ecexp", - "rdap_server": "https://rdap.nic.xn--mgbi4ecexp/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--mgbpl2fh", @@ -202046,15 +202303,32 @@ "tech": "Sudan Internet Society" } }, + "registry_url": "http://domains.sd", + "tld_created": "2012-11-20", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Sudan", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ans1.sis.sd", "ipv4": [ { "ip": "196.29.166.134", - "asn": 33788, - "as_org": "KANARTEL", - "as_country": "SD" + "asn": 0, + "as_org": "Not routed", + "as_country": "None" } ], "ipv6": [] @@ -202078,22 +202352,7 @@ } ] } - ], - "registry_url": "http://domains.sd", - "tld_created": "2012-11-20", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Sudan", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbt3dhd", @@ -202120,14 +202379,42 @@ "date_removed": null } }, + "registry_url": "https://icann.org/ebero", + "rdap_server": "https://rdap.nominet.uk/xn--mgbt3dhd/", + "tld_created": "2015-11-25", + "tld_updated": [ + "2025-01-30" + ], + "annotations": { + "iana_sponsor_alias": "ICANN EBERO", + "iana_sponsor_slug": "icann-ebero", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "along", + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "dns1.emdns.uk", "ipv4": [ { "ip": "213.248.217.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -202145,8 +202432,8 @@ "ipv4": [ { "ip": "103.49.81.153", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -202273,33 +202560,7 @@ } ] } - ], - "registry_url": "https://icann.org/ebero", - "rdap_server": "https://rdap.nominet.uk/xn--mgbt3dhd/", - "tld_created": "2015-11-25", - "tld_updated": [ - "2025-01-30" - ], - "annotations": { - "iana_sponsor_alias": "ICANN EBERO", - "iana_sponsor_slug": "icann-ebero", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "along", - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "xn--mgbtx2b", @@ -202316,6 +202577,26 @@ "tech": "Communications and Media Commission (CMC)" } }, + "registry_url": "http://www.cmc.iq/en/iq.html", + "whois_server": "whois.cmc.iq", + "tld_created": "2014-09-29", + "tld_updated": [ + "2023-12-18" + ], + "annotations": { + "country_name_iso": "Iraq", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns.cmc.iq", @@ -202386,25 +202667,7 @@ } ] } - ], - "registry_url": "http://www.cmc.iq/en/iq.html", - "whois_server": "whois.cmc.iq", - "tld_created": "2014-09-29", - "tld_updated": [ - "2023-12-18" - ], - "annotations": { - "country_name_iso": "Iraq", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mgbx4cd0ab", @@ -202421,6 +202684,24 @@ "tech": "MYNIC Berhad" } }, + "registry_url": "http://www.mynic.my", + "whois_server": "whois.mynic.my", + "tld_created": "2011-10-22", + "tld_updated": [ + "2026-04-17" + ], + "annotations": { + "country_name_iso": "Malaysia", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "ms", + "language_name_en": "Malay" + }, "nameservers": [ { "hostname": "a.mynic.centralnic-dns.com", @@ -202517,23 +202798,7 @@ } ] } - ], - "registry_url": "http://www.mynic.my", - "whois_server": "whois.mynic.my", - "tld_created": "2011-10-22", - "tld_updated": [ - "2026-04-17" - ], - "annotations": { - "country_name_iso": "Malaysia", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mix891f", @@ -202550,6 +202815,24 @@ "tech": "Macao Network Information Centre (MONIC) - HNET Asia" } }, + "registry_url": "https://www.monic.mo", + "whois_server": "whois.monic.mo", + "tld_created": "2015-04-21", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Macao", + "as_org_aliases": [ + "Community DNS" + ], + "as_org_slugs": [ + "community-dns" + ], + "geographic_scope": "country", + "language_code": "zh-Hant", + "language_name_en": "Chinese (Traditional)" + }, "nameservers": [ { "hostname": "a.monic.mo", @@ -202684,23 +202967,7 @@ } ] } - ], - "registry_url": "https://www.monic.mo", - "whois_server": "whois.monic.mo", - "tld_created": "2015-04-21", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Macao", - "as_org_aliases": [ - "Community DNS" - ], - "as_org_slugs": [ - "community-dns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--mk1bu44c", @@ -202727,22 +202994,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--mk1bu44c", + "rdap_server": "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -202771,16 +203069,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -202804,36 +203102,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--mk1bu44c", - "rdap_server": "https://tld-rdap.verisign.com/xn--mk1bu44c/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--mxtq1m", @@ -202860,6 +203129,23 @@ "date_removed": null } }, + "registry_url": "http://www.netc.tw", + "whois_server": "whois.nic.xn--mxtq1m", + "rdap_server": "https://rdap.twnic.tw/rdap/", + "tld_created": "2015-01-08", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "government", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--mxtq1m", @@ -202937,22 +203223,7 @@ } ] } - ], - "registry_url": "http://www.netc.tw", - "whois_server": "whois.nic.xn--mxtq1m", - "rdap_server": "https://rdap.twnic.tw/rdap/", - "tld_created": "2015-01-08", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "government" - } + ] }, { "tld": "xn--ngbc5azd", @@ -202979,6 +203250,33 @@ "date_removed": null } }, + "registry_url": "http://www.dotshabaka.com", + "whois_server": "whois.nic.xn--ngbc5azd", + "rdap_server": "https://rdap.nic.xn--ngbc5azd/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "web", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.nic.xn--ngbc5azd", @@ -203004,7 +203302,7 @@ "ipv4": [ { "ip": "37.209.194.3", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203042,7 +203340,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203050,7 +203348,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203061,7 +203359,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203069,7 +203367,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203080,7 +203378,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203088,38 +203386,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.dotshabaka.com", - "whois_server": "whois.nic.xn--ngbc5azd", - "rdap_server": "https://rdap.nic.xn--ngbc5azd/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "web", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--ngbe9e0a", @@ -203146,6 +203419,31 @@ "date_removed": null } }, + "registry_url": "http://kfh.com", + "whois_server": "whois.nic.xn--ngbe9e0a", + "rdap_server": "https://rdap.registry.kfh/rdap/", + "tld_created": "2015-10-29", + "tld_updated": [ + "2026-04-06" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "your own house", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -203223,30 +203521,7 @@ } ] } - ], - "registry_url": "http://kfh.com", - "whois_server": "whois.nic.xn--ngbe9e0a", - "rdap_server": "https://rdap.registry.kfh/rdap/", - "tld_created": "2015-10-29", - "tld_updated": [ - "2026-04-06" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "your own house", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "xn--ngbrx", @@ -203273,6 +203548,29 @@ "date_removed": null } }, + "whois_server": "whois.nic.xn--ngbrx", + "rdap_server": "https://rdap.nic.xn--ngbrx/", + "tld_created": "2017-05-11", + "tld_updated": [ + "2020-05-14" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "arab", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "cultural_affiliation": "arab", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "gtld.alpha.aridns.net.au", @@ -203298,7 +203596,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -203350,27 +203648,7 @@ } ] } - ], - "whois_server": "whois.nic.xn--ngbrx", - "rdap_server": "https://rdap.nic.xn--ngbrx/", - "tld_created": "2017-05-11", - "tld_updated": [ - "2020-05-14" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "arab", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--node", @@ -203387,6 +203665,23 @@ "tech": "Cloud9 LTD" } }, + "registry_url": "http://xn--lodaehvb5cdik4g.xn--node", + "tld_created": "2011-02-11", + "tld_updated": [ + "2024-06-26" + ], + "annotations": { + "country_name_iso": "Georgia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ka", + "language_name_en": "Georgian" + }, "nameservers": [ { "hostname": "xn--node.ns.anycast.pch.net", @@ -203426,22 +203721,7 @@ } ] } - ], - "registry_url": "http://xn--lodaehvb5cdik4g.xn--node", - "tld_created": "2011-02-11", - "tld_updated": [ - "2024-06-26" - ], - "annotations": { - "country_name_iso": "Georgia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--nqv7f", @@ -203468,6 +203748,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--nqv7f", + "whois_server": "whois.nic.xn--nqv7f", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--nqv7f", @@ -203545,36 +203856,7 @@ } ] } - ], - "registry_url": "http://nic.xn--nqv7f", - "whois_server": "whois.nic.xn--nqv7f", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--nqv7fs00ema", @@ -203601,6 +203883,37 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--nqv7fs00ema", + "whois_server": "whois.nic.xn--nqv7fs00ema", + "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", + "tld_created": "2014-02-27", + "tld_updated": [ + "2025-08-14" + ], + "annotations": { + "iana_sponsor_alias": "PIR", + "iana_sponsor_slug": "pir", + "iana_admin_alias": "PIR", + "iana_admin_slug": "pir", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "PIR", + "icann_registry_operator_slug": "pir", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "org", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a0.nic.xn--nqv7fs00ema", @@ -203678,36 +203991,7 @@ } ] } - ], - "registry_url": "http://nic.xn--nqv7fs00ema", - "whois_server": "whois.nic.xn--nqv7fs00ema", - "rdap_server": "https://rdap.publicinterestregistry.org/rdap/", - "tld_created": "2014-02-27", - "tld_updated": [ - "2025-08-14" - ], - "annotations": { - "iana_sponsor_alias": "PIR", - "iana_sponsor_slug": "pir", - "iana_admin_alias": "PIR", - "iana_admin_slug": "pir", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "PIR", - "icann_registry_operator_slug": "pir", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "org", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--nyqy26a", @@ -203734,14 +204018,36 @@ "date_removed": null } }, + "registry_url": "http://www.stabletone.com", + "rdap_server": "https://rdap.teleinfo.cn/xn--nyqy26a/", + "tld_created": "2015-03-12", + "tld_updated": [ + "2025-05-01" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "healthy", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -203797,27 +204103,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.stabletone.com", - "rdap_server": "https://rdap.teleinfo.cn/xn--nyqy26a/", - "tld_created": "2015-03-12", - "tld_updated": [ - "2025-05-01" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "healthy", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--o3cw4h", @@ -203834,6 +204120,26 @@ "tech": "Thai Network Information Center Foundation" } }, + "registry_url": "http://www.thnic.co.th", + "whois_server": "whois.thnic.co.th", + "rdap_server": "https://rdap.thains.co.th", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Thailand", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "th", + "language_name_en": "Thai" + }, "nameservers": [ { "hostname": "a.thains.co.th", @@ -203923,25 +204229,7 @@ } ] } - ], - "registry_url": "http://www.thnic.co.th", - "whois_server": "whois.thnic.co.th", - "rdap_server": "https://rdap.thains.co.th", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Thailand", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--ogbpf8fl", @@ -203958,6 +204246,24 @@ "tech": "National Agency for Network Services (NANS)" } }, + "registry_url": "http://tld.sy", + "whois_server": "whois.tld.sy", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-05-14" + ], + "annotations": { + "country_name_iso": "Syrian Arab Republic", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.tld.sy", @@ -204009,23 +204315,7 @@ } ] } - ], - "registry_url": "http://tld.sy", - "whois_server": "whois.tld.sy", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-05-14" - ], - "annotations": { - "country_name_iso": "Syrian Arab Republic", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--otu796d", @@ -204052,6 +204342,27 @@ "date_removed": null } }, + "rdap_server": "https://rdap.zdnsgtld.com/xn--otu796d", + "tld_created": "2017-12-21", + "tld_updated": [ + "2024-12-17" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "recruitment", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -204149,26 +204460,7 @@ } ] } - ], - "rdap_server": "https://rdap.zdnsgtld.com/xn--otu796d", - "tld_created": "2017-12-21", - "tld_updated": [ - "2024-12-17" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "recruitment", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--p1acf", @@ -204195,6 +204487,29 @@ "date_removed": null } }, + "registry_url": "http://rusnames.ru/", + "rdap_server": "https://rdap.nic.xn--p1acf/", + "tld_created": "2014-07-03", + "tld_updated": [ + "2025-12-04" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "russian speaking community", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "ns1.anycastdns.cz", @@ -204253,28 +204568,7 @@ } ] } - ], - "registry_url": "http://rusnames.ru/", - "rdap_server": "https://rdap.nic.xn--p1acf/", - "tld_created": "2014-07-03", - "tld_updated": [ - "2025-12-04" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "russian speaking community", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ] - } + ] }, { "tld": "xn--p1ai", @@ -204291,6 +204585,18 @@ "tech": "Technical Center of Internet" } }, + "registry_url": "http://cctld.ru/en", + "whois_server": "whois.tcinet.ru", + "tld_created": "2010-05-12", + "tld_updated": [ + "2025-10-22" + ], + "annotations": { + "country_name_iso": "Russian Federation", + "geographic_scope": "country", + "language_code": "ru", + "language_name_en": "Russian" + }, "nameservers": [ { "hostname": "a.dns.ripn.net", @@ -204387,17 +204693,7 @@ } ] } - ], - "registry_url": "http://cctld.ru/en", - "whois_server": "whois.tcinet.ru", - "tld_created": "2010-05-12", - "tld_updated": [ - "2025-10-22" - ], - "annotations": { - "country_name_iso": "Russian Federation", - "geographic_scope": "country" - } + ] }, { "tld": "xn--pbt977c", @@ -204428,7 +204724,9 @@ "base", "non_sponsored" ], - "icann_translation_en": "jewelry" + "icann_translation_en": "jewelry", + "language_code": "zh", + "language_name_en": "Chinese" } }, { @@ -204446,6 +204744,26 @@ "tech": "Agence Tunisienne d'Internet" } }, + "registry_url": "http://www.ati.tn", + "whois_server": "whois.ati.tn", + "tld_created": "2010-08-19", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Tunisia", + "as_org_aliases": [ + "AFNIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "afnic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns-tn.afrinic.net", @@ -204561,25 +204879,7 @@ } ] } - ], - "registry_url": "http://www.ati.tn", - "whois_server": "whois.ati.tn", - "tld_created": "2010-08-19", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Tunisia", - "as_org_aliases": [ - "AFNIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "afnic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--pssy2u", @@ -204606,22 +204906,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--pssy2u", + "rdap_server": "https://tld-rdap.verisign.com/xn--pssy2u/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -204650,16 +204981,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -204683,36 +205014,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--pssy2u", - "rdap_server": "https://tld-rdap.verisign.com/xn--pssy2u/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--q7ce6a", @@ -204729,6 +205031,24 @@ "tech": "Lao National Internet Center (LANIC)" } }, + "registry_url": "https://www.la", + "whois_server": "whois.nic.la", + "tld_created": "2019-06-10", + "tld_updated": [ + "2023-03-17" + ], + "annotations": { + "country_name_iso": "Lao People's Democratic Republic", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "country", + "language_code": "lo", + "language_name_en": "Lao" + }, "nameservers": [ { "hostname": "a.xn--q7ce6a.centralnic-dns.com", @@ -204806,23 +205126,7 @@ } ] } - ], - "registry_url": "https://www.la", - "whois_server": "whois.nic.la", - "tld_created": "2019-06-10", - "tld_updated": [ - "2023-03-17" - ], - "annotations": { - "country_name_iso": "Lao People's Democratic Republic", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--q9jyb4c", @@ -204849,6 +205153,36 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2013-11-13", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "everyone", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -204945,35 +205279,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2013-11-13", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "everyone", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "xn--qcka1pmc", @@ -205000,6 +205306,36 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-10-09", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "google", + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -205096,35 +205432,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-10-09", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "google", - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "xn--qxa6a", @@ -205141,6 +205449,26 @@ "tech": "EURid vzw" } }, + "registry_url": "https://www.registry.eu", + "whois_server": "whois.eu", + "tld_created": "2019-07-18", + "tld_updated": [ + "2025-12-22" + ], + "annotations": { + "country_name_iso": "European Union", + "as_org_aliases": [ + "DENIC", + "RcodeZero" + ], + "as_org_slugs": [ + "denic", + "rcodezero" + ], + "geographic_scope": "supranational", + "language_code": "el", + "language_name_en": "Greek" + }, "nameservers": [ { "hostname": "be.dns.eu", @@ -205230,25 +205558,7 @@ } ] } - ], - "registry_url": "https://www.registry.eu", - "whois_server": "whois.eu", - "tld_created": "2019-07-18", - "tld_updated": [ - "2025-12-22" - ], - "annotations": { - "country_name_iso": "European Union", - "as_org_aliases": [ - "DENIC", - "RcodeZero" - ], - "as_org_slugs": [ - "denic", - "rcodezero" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--qxam", @@ -205265,6 +205575,25 @@ "tech": "ICS-FORTH GR" } }, + "registry_url": "http://www.gr", + "tld_created": "2015-05-06", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Greece", + "as_org_aliases": [ + "Community DNS", + "DENIC" + ], + "as_org_slugs": [ + "community-dns", + "denic" + ], + "geographic_scope": "country", + "language_code": "el", + "language_name_en": "Greek" + }, "nameservers": [ { "hostname": "estia.ics.forth.gr", @@ -205347,24 +205676,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.gr", - "tld_created": "2015-05-06", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Greece", - "as_org_aliases": [ - "Community DNS", - "DENIC" - ], - "as_org_slugs": [ - "community-dns", - "denic" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--rhqv96g", @@ -205391,14 +205703,36 @@ "date_removed": null } }, + "registry_url": "http://www.stabletone.com", + "rdap_server": "https://rdap.teleinfo.cn/xn--rhqv96g/", + "tld_created": "2014-03-06", + "tld_updated": [ + "2025-04-30" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "world", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -205454,27 +205788,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.stabletone.com", - "rdap_server": "https://rdap.teleinfo.cn/xn--rhqv96g/", - "tld_created": "2014-03-06", - "tld_updated": [ - "2025-04-30" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "world", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--rovu88b", @@ -205501,6 +205815,35 @@ "date_removed": null } }, + "registry_url": "http://www.nic.xn--rovu88b", + "whois_server": "whois.nic.xn--rovu88b", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "book", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--rovu88b", @@ -205616,34 +205959,7 @@ } ] } - ], - "registry_url": "http://www.nic.xn--rovu88b", - "whois_server": "whois.nic.xn--rovu88b", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "book", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--rvc1e0am3e", @@ -205660,6 +205976,32 @@ "tech": "National Internet eXchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2016-04-18", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ml", + "language_name_en": "Malayalam" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -205737,10 +206079,26 @@ } ] } - ], + ] + }, + { + "tld": "xn--s9brj9c", + "tld_unicode": "ਭਾਰਤ", + "tld_script": "Gurmukhi", + "tld_iso": "in", + "delegated": true, + "iana_tag": "country-code", + "type": "cctld", + "orgs": { + "iana": { + "sponsor": "National Internet Exchange of India", + "admin": "National Internet Exchange of India", + "tech": "National Internet Exchange of India" + } + }, "registry_url": "https://registry.in", "whois_server": "whois.nixiregistry.in", - "tld_created": "2016-04-18", + "tld_created": "2011-02-05", "tld_updated": [ "2026-04-16" ], @@ -205760,23 +206118,9 @@ "packet-clearing-house", "tucows" ], - "geographic_scope": "country" - } - }, - { - "tld": "xn--s9brj9c", - "tld_unicode": "ਭਾਰਤ", - "tld_script": "Gurmukhi", - "tld_iso": "in", - "delegated": true, - "iana_tag": "country-code", - "type": "cctld", - "orgs": { - "iana": { - "sponsor": "National Internet Exchange of India", - "admin": "National Internet Exchange of India", - "tech": "National Internet Exchange of India" - } + "geographic_scope": "country", + "language_code": "pa", + "language_name_en": "Punjabi" }, "nameservers": [ { @@ -205855,31 +206199,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--ses554g", @@ -205906,6 +206226,29 @@ "date_removed": null } }, + "registry_url": "http://nic.xn--ses554g/", + "whois_server": "whois.nic.xn--ses554g", + "rdap_server": "https://rdap.zdnsgtld.com/xn--ses554g", + "tld_created": "2014-03-13", + "tld_updated": [ + "2026-04-10" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "web address", + "as_org_aliases": [ + "ZDNS" + ], + "as_org_slugs": [ + "zdns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.zdnscloud.cn", @@ -206003,28 +206346,7 @@ } ] } - ], - "registry_url": "http://nic.xn--ses554g/", - "whois_server": "whois.nic.xn--ses554g", - "rdap_server": "https://rdap.zdnsgtld.com/xn--ses554g", - "tld_created": "2014-03-13", - "tld_updated": [ - "2026-04-10" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "web address", - "as_org_aliases": [ - "ZDNS" - ], - "as_org_slugs": [ - "zdns" - ] - } + ] }, { "tld": "xn--t60b56a", @@ -206051,22 +206373,53 @@ "date_removed": null } }, + "registry_url": "http://www.verisigninc.com", + "whois_server": "whois.nic.xn--t60b56a", + "rdap_server": "https://tld-rdap.verisign.com/xn--t60b56a/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "dot net", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ko", + "language_name_en": "Korean" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -206095,16 +206448,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -206128,36 +206481,7 @@ } ] } - ], - "registry_url": "http://www.verisigninc.com", - "whois_server": "whois.nic.xn--t60b56a", - "rdap_server": "https://tld-rdap.verisign.com/xn--t60b56a/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "dot net", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--tckwe", @@ -206184,22 +206508,53 @@ "date_removed": null } }, + "registry_url": "https://www.verisigninc.com", + "whois_server": "whois.nic.xn--tckwe", + "rdap_server": "https://tld-rdap.verisign.com/xn--tckwe/v1/", + "tld_created": "2015-07-02", + "tld_updated": [ + "2026-03-30" + ], + "annotations": { + "iana_sponsor_alias": "VeriSign", + "iana_sponsor_slug": "verisign", + "iana_admin_alias": "VeriSign", + "iana_admin_slug": "verisign", + "iana_tech_alias": "VeriSign", + "iana_tech_slug": "verisign", + "icann_registry_operator_alias": "VeriSign", + "icann_registry_operator_slug": "verisign", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "com", + "as_org_aliases": [ + "VeriSign" + ], + "as_org_slugs": [ + "verisign" + ], + "language_code": "ja", + "language_name_en": "Japanese" + }, "nameservers": [ { "hostname": "ac1.nstld.com", "ipv4": [ { "ip": "192.42.173.30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:120::30", - "asn": 10515, - "as_org": "CLT-NIC", + "asn": 397204, + "as_org": "VRSN-AC28", "as_country": "US" } ] @@ -206228,16 +206583,16 @@ "ipv4": [ { "ip": "192.42.175.30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 36625, + "as_org": "KGTLD", "as_country": "US" } ], "ipv6": [ { "ip": "2001:500:122::30", - "asn": 36623, - "as_org": "HGTLD", + "asn": 25485, + "as_org": "VERISIGN-AS", "as_country": "US" } ] @@ -206261,36 +206616,7 @@ } ] } - ], - "registry_url": "https://www.verisigninc.com", - "whois_server": "whois.nic.xn--tckwe", - "rdap_server": "https://tld-rdap.verisign.com/xn--tckwe/v1/", - "tld_created": "2015-07-02", - "tld_updated": [ - "2026-03-30" - ], - "annotations": { - "iana_sponsor_alias": "VeriSign", - "iana_sponsor_slug": "verisign", - "iana_admin_alias": "VeriSign", - "iana_admin_slug": "verisign", - "iana_tech_alias": "VeriSign", - "iana_tech_slug": "verisign", - "icann_registry_operator_alias": "VeriSign", - "icann_registry_operator_slug": "verisign", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "com", - "as_org_aliases": [ - "VeriSign" - ], - "as_org_slugs": [ - "verisign" - ] - } + ] }, { "tld": "xn--tiq49xqyj", @@ -206317,6 +206643,30 @@ "date_removed": null } }, + "registry_url": "http://www.pccs.va", + "whois_server": "whois.nic.xn--tiq49xqyj", + "rdap_server": "https://rdap.nic.xn--tiq49xqyj/", + "tld_created": "2016-11-16", + "tld_updated": [ + "2023-12-21" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "catholic", + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "a.nic.xn--tiq49xqyj", @@ -206342,7 +206692,7 @@ "ipv4": [ { "ip": "37.209.194.9", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206380,7 +206730,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206388,7 +206738,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206399,7 +206749,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206407,7 +206757,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206418,7 +206768,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -206426,35 +206776,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://www.pccs.va", - "whois_server": "whois.nic.xn--tiq49xqyj", - "rdap_server": "https://rdap.nic.xn--tiq49xqyj/", - "tld_created": "2016-11-16", - "tld_updated": [ - "2023-12-21" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "catholic", - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xn--unup4y", @@ -206481,6 +206809,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-10-21", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "game", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--unup4y", @@ -206596,35 +206954,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-10-21", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "game", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--vermgensberater-ctb", @@ -206651,6 +206981,31 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.xn--vermgensberater-ctb", + "rdap_server": "https://rdap.centralnic.com/xn--vermgensberater-ctb", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "financial adviser", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "de", + "language_name_en": "German" + }, "nameservers": [ { "hostname": "a.nic.xn--vermgensberater-ctb", @@ -206728,30 +207083,7 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.xn--vermgensberater-ctb", - "rdap_server": "https://rdap.centralnic.com/xn--vermgensberater-ctb", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "financial adviser", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "xn--vermgensberatung-pwb", @@ -206778,6 +207110,31 @@ "date_removed": null } }, + "registry_url": "http://www.dvag-registry.de", + "whois_server": "whois.nic.xn--vermgensberatung-pwb", + "rdap_server": "https://rdap.centralnic.com/xn--vermgensberatung-pwb", + "tld_created": "2014-09-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "financial advice", + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "language_code": "de", + "language_name_en": "German" + }, "nameservers": [ { "hostname": "a.nic.xn--vermgensberatung-pwb", @@ -206855,30 +207212,7 @@ } ] } - ], - "registry_url": "http://www.dvag-registry.de", - "whois_server": "whois.nic.xn--vermgensberatung-pwb", - "rdap_server": "https://rdap.centralnic.com/xn--vermgensberatung-pwb", - "tld_created": "2014-09-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "financial advice", - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "xn--vhquv", @@ -206905,6 +207239,36 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2013-11-25", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "enterprise", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--vhquv", @@ -207020,35 +207384,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2013-11-25", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "enterprise", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--vuq861b", @@ -207075,14 +207411,37 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2015-02-05", + "tld_updated": [ + "2025-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "knowledge", + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -207138,28 +207497,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2015-02-05", - "tld_updated": [ - "2025-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "knowledge", - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "xn--w4r85el8fhu5dnra", @@ -207186,6 +207524,37 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.xn--w4r85el8fhu5dnra", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "kerry hotels", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--w4r85el8fhu5dnra", @@ -207301,36 +207670,7 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.xn--w4r85el8fhu5dnra", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "kerry hotels", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--w4rs40l", @@ -207357,6 +207697,38 @@ "date_removed": null } }, + "registry_url": "http://www.kerryprops.com", + "whois_server": "whois.nic.xn--w4rs40l", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-02-05", + "tld_updated": [ + "2025-12-08" + ], + "annotations": { + "iana_sponsor_alias": "Kerry Trading", + "iana_sponsor_slug": "kerry-trading", + "iana_admin_alias": "Kerry Trading", + "iana_admin_slug": "kerry-trading", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Kerry Trading", + "icann_registry_operator_slug": "kerry-trading", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "icann_translation_en": "kerry", + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "v0n0.nic.xn--w4rs40l", @@ -207472,37 +207844,7 @@ } ] } - ], - "registry_url": "http://www.kerryprops.com", - "whois_server": "whois.nic.xn--w4rs40l", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-02-05", - "tld_updated": [ - "2025-12-08" - ], - "annotations": { - "iana_sponsor_alias": "Kerry Trading", - "iana_sponsor_slug": "kerry-trading", - "iana_admin_alias": "Kerry Trading", - "iana_admin_slug": "kerry-trading", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Kerry Trading", - "icann_registry_operator_slug": "kerry-trading", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "icann_translation_en": "kerry", - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "xn--wgbh1c", @@ -207519,6 +207861,22 @@ "tech": "National Telecommunication Regulatory Authority - NTRA" } }, + "tld_created": "2010-05-05", + "tld_updated": [ + "2023-07-25" + ], + "annotations": { + "country_name_iso": "Egypt", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "ns1.dotmasr.eg", @@ -207568,21 +207926,7 @@ ], "ipv6": [] } - ], - "tld_created": "2010-05-05", - "tld_updated": [ - "2023-07-25" - ], - "annotations": { - "country_name_iso": "Egypt", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--wgbl6a", @@ -207599,6 +207943,26 @@ "tech": "Communications Regulatory Authority" } }, + "registry_url": "https://www.cra.gov.qa/", + "whois_server": "whois.registry.qa", + "tld_created": "2010-12-24", + "tld_updated": [ + "2023-03-07" + ], + "annotations": { + "country_name_iso": "Qatar", + "as_org_aliases": [ + "Packet Clearing House", + "UltraDNS" + ], + "as_org_slugs": [ + "packet-clearing-house", + "ultradns" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "a.registry.qa", @@ -207684,7 +208048,7 @@ "ipv4": [ { "ip": "37.209.194.6", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -207736,25 +208100,7 @@ } ] } - ], - "registry_url": "https://www.cra.gov.qa/", - "whois_server": "whois.registry.qa", - "tld_created": "2010-12-24", - "tld_updated": [ - "2023-03-07" - ], - "annotations": { - "country_name_iso": "Qatar", - "as_org_aliases": [ - "Packet Clearing House", - "UltraDNS" - ], - "as_org_slugs": [ - "packet-clearing-house", - "ultradns" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--xhq521b", @@ -207781,6 +208127,29 @@ "date_removed": null } }, + "registry_url": "http://www.yu-wei.cn/", + "whois_server": "whois.ngtld.cn", + "rdap_server": "https://restwhois.ngtld.cn/", + "tld_created": "2014-07-24", + "tld_updated": [ + "2026-01-23" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "icann_translation_en": "guangdong", + "as_org_aliases": [ + "CNNIC" + ], + "as_org_slugs": [ + "cnnic" + ], + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ta.ngtld.cn", @@ -207806,7 +208175,7 @@ "ipv4": [ { "ip": "42.83.131.1", - "asn": 24151, + "asn": 24406, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -207844,7 +208213,7 @@ "ipv4": [ { "ip": "42.83.133.1", - "asn": 24406, + "asn": 24151, "as_org": "CNNIC-CRITICAL-AP China Internet Network Infomation Center", "as_country": "CN" } @@ -207863,28 +208232,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.yu-wei.cn/", - "whois_server": "whois.ngtld.cn", - "rdap_server": "https://restwhois.ngtld.cn/", - "tld_created": "2014-07-24", - "tld_updated": [ - "2026-01-23" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "icann_translation_en": "guangdong", - "as_org_aliases": [ - "CNNIC" - ], - "as_org_slugs": [ - "cnnic" - ] - } + ] }, { "tld": "xn--xkc2al3hye2a", @@ -207901,6 +208249,25 @@ "tech": "LK Domain Registry" } }, + "registry_url": "http://www.domains.lk", + "tld_created": "2010-08-19", + "tld_updated": [ + "2025-08-01" + ], + "annotations": { + "country_name_iso": "Sri Lanka", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "h.nic.lk", @@ -208009,24 +208376,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.domains.lk", - "tld_created": "2010-08-19", - "tld_updated": [ - "2025-08-01" - ], - "annotations": { - "country_name_iso": "Sri Lanka", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--xkc2dl3a5ee0h", @@ -208043,6 +208393,32 @@ "tech": "National Internet Exchange of India" } }, + "registry_url": "https://registry.in", + "whois_server": "whois.nixiregistry.in", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-04-16" + ], + "annotations": { + "iana_sponsor_alias": "NIXI", + "iana_sponsor_slug": "nixi", + "iana_admin_alias": "NIXI", + "iana_admin_slug": "nixi", + "iana_tech_alias": "NIXI", + "iana_tech_slug": "nixi", + "country_name_iso": "India", + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ], + "geographic_scope": "country", + "language_code": "ta", + "language_name_en": "Tamil" + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -208120,31 +208496,7 @@ } ] } - ], - "registry_url": "https://registry.in", - "whois_server": "whois.nixiregistry.in", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-04-16" - ], - "annotations": { - "iana_sponsor_alias": "NIXI", - "iana_sponsor_slug": "nixi", - "iana_admin_alias": "NIXI", - "iana_admin_slug": "nixi", - "iana_tech_alias": "NIXI", - "iana_tech_slug": "nixi", - "country_name_iso": "India", - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--y9a3aq", @@ -208161,6 +208513,26 @@ "tech": "\"Internet Society\" Non-governmental Organization" } }, + "registry_url": "https://www.amnic.net/", + "whois_server": "whois.amnic.net", + "tld_created": "2014-11-26", + "tld_updated": [ + "2024-11-25" + ], + "annotations": { + "country_name_iso": "Armenia", + "as_org_aliases": [ + "Community DNS", + "Packet Clearing House" + ], + "as_org_slugs": [ + "community-dns", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "hy", + "language_name_en": "Armenian" + }, "nameservers": [ { "hostname": "fork.sth.dnsnode.net", @@ -208238,25 +208610,7 @@ } ] } - ], - "registry_url": "https://www.amnic.net/", - "whois_server": "whois.amnic.net", - "tld_created": "2014-11-26", - "tld_updated": [ - "2024-11-25" - ], - "annotations": { - "country_name_iso": "Armenia", - "as_org_aliases": [ - "Community DNS", - "Packet Clearing House" - ], - "as_org_slugs": [ - "community-dns", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--yfro4i67o", @@ -208273,6 +208627,30 @@ "tech": "Singapore Network Information Centre (SGNIC) Pte Ltd" } }, + "registry_url": "http://www.sgnic.sg/", + "whois_server": "whois.zh.sgnic.sg", + "rdap_server": "https://rdap.zh.sgnic.sg/rdap/", + "tld_created": "2011-02-05", + "tld_updated": [ + "2026-02-11" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Singapore", + "as_org_aliases": [ + "CIRA", + "DENIC", + "Packet Clearing House" + ], + "as_org_slugs": [ + "cira", + "denic", + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "zh-Hans", + "language_name_en": "Chinese (Simplified)" + }, "nameservers": [ { "hostname": "dsany2.sgnic.sg", @@ -208369,29 +208747,7 @@ } ] } - ], - "registry_url": "http://www.sgnic.sg/", - "whois_server": "whois.zh.sgnic.sg", - "rdap_server": "https://rdap.zh.sgnic.sg/rdap/", - "tld_created": "2011-02-05", - "tld_updated": [ - "2026-02-11" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Singapore", - "as_org_aliases": [ - "CIRA", - "DENIC", - "Packet Clearing House" - ], - "as_org_slugs": [ - "cira", - "denic", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--ygbi2ammx", @@ -208408,6 +208764,24 @@ "tech": "Palestinian National Internet Naming Authority (PNINA)" } }, + "registry_url": "http://www.pnina.ps", + "whois_server": "whois.pnina.ps", + "tld_created": "2010-08-20", + "tld_updated": [ + "2024-02-05" + ], + "annotations": { + "country_name_iso": "Palestine, State of", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country", + "language_code": "ar", + "language_name_en": "Arabic" + }, "nameservers": [ { "hostname": "dns1.gov.ps", @@ -208508,29 +208882,13 @@ "ipv6": [ { "ip": "2001:67c:e0::105", - "asn": 0, - "as_org": "Not routed", - "as_country": "None" + "asn": 197000, + "as_org": "RIPE-NCC-AUTHDNS-AS Reseaux IP Europeens Network Coordination Centre RIPE NCC", + "as_country": "NL" } ] } - ], - "registry_url": "http://www.pnina.ps", - "whois_server": "whois.pnina.ps", - "tld_created": "2010-08-20", - "tld_updated": [ - "2024-02-05" - ], - "annotations": { - "country_name_iso": "Palestine, State of", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "xn--zckzah", @@ -208542,7 +208900,11 @@ "tld_created": "2007-10-19", "tld_updated": [ "2020-04-02" - ] + ], + "annotations": { + "language_code": "ja", + "language_name_en": "Japanese" + } }, { "tld": "xn--zfr164b", @@ -208569,6 +208931,24 @@ "date_removed": null } }, + "registry_url": "http://www.conac.cn", + "whois_server": "whois.conac.cn", + "rdap_server": "https://rdap.conac.cn", + "tld_created": "2013-12-12", + "tld_updated": [ + "2024-07-18" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "community", + "non_sponsored" + ], + "icann_translation_en": "government", + "language_code": "zh", + "language_name_en": "Chinese" + }, "nameservers": [ { "hostname": "ns1.conac.cn", @@ -208651,23 +209031,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.conac.cn", - "whois_server": "whois.conac.cn", - "rdap_server": "https://rdap.conac.cn", - "tld_created": "2013-12-12", - "tld_updated": [ - "2024-07-18" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "community", - "non_sponsored" - ], - "icann_translation_en": "government" - } + ] }, { "tld": "xperia", @@ -208722,6 +209086,34 @@ "date_removed": null } }, + "registry_url": "http://nic.xxx", + "whois_server": "whois.nic.xxx", + "rdap_server": "https://rdap.nic.xxx/", + "tld_created": "2011-04-15", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "ICM Registry", + "iana_sponsor_slug": "icm-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "ICM Registry", + "icann_registry_operator_slug": "icm-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.xxx", @@ -208747,7 +209139,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208785,7 +209177,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208793,7 +209185,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208804,7 +209196,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208812,7 +209204,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208823,7 +209215,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -208831,41 +209223,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.xxx", - "whois_server": "whois.nic.xxx", - "rdap_server": "https://rdap.nic.xxx/", - "tld_created": "2011-04-15", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "ICM Registry", - "iana_sponsor_slug": "icm-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "ICM Registry", - "icann_registry_operator_slug": "icm-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "xyz", @@ -208890,6 +209254,34 @@ "date_removed": null } }, + "registry_url": "https://nic.xyz", + "whois_server": "whois.nic.xyz", + "rdap_server": "https://rdap.centralnic.com/xyz", + "tld_created": "2014-02-06", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "generationxyz.nic.xyz", @@ -208967,35 +209359,7 @@ } ] } - ], - "registry_url": "https://nic.xyz", - "whois_server": "whois.nic.xyz", - "rdap_server": "https://rdap.centralnic.com/xyz", - "tld_created": "2014-02-06", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "yachts", @@ -209020,6 +209384,34 @@ "date_removed": null } }, + "registry_url": "http://nic.yachts", + "whois_server": "whois.nic.yachts", + "rdap_server": "https://rdap.centralnic.com/yachts/", + "tld_created": "2014-05-01", + "tld_updated": [ + "2025-08-12" + ], + "annotations": { + "iana_sponsor_alias": "xyz.com", + "iana_sponsor_slug": "xyz-com", + "iana_admin_alias": "xyz.com", + "iana_admin_slug": "xyz-com", + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "icann_registry_operator_alias": "xyz.com", + "icann_registry_operator_slug": "xyz-com", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ] + }, "nameservers": [ { "hostname": "a.nic.yachts", @@ -209097,35 +209489,7 @@ } ] } - ], - "registry_url": "http://nic.yachts", - "whois_server": "whois.nic.yachts", - "rdap_server": "https://rdap.centralnic.com/yachts/", - "tld_created": "2014-05-01", - "tld_updated": [ - "2025-08-12" - ], - "annotations": { - "iana_sponsor_alias": "xyz.com", - "iana_sponsor_slug": "xyz-com", - "iana_admin_alias": "xyz.com", - "iana_admin_slug": "xyz-com", - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "icann_registry_operator_alias": "xyz.com", - "icann_registry_operator_slug": "xyz-com", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ] - } + ] }, { "tld": "yahoo", @@ -209150,6 +209514,29 @@ "date_removed": null } }, + "registry_url": "http://nic.yahoo", + "whois_server": "whois.nic.yahoo", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2016-01-29", + "tld_updated": [ + "2026-05-25" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.yahoo", @@ -209265,30 +209652,7 @@ } ] } - ], - "registry_url": "http://nic.yahoo", - "whois_server": "whois.nic.yahoo", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2016-01-29", - "tld_updated": [ - "2026-05-25" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "yamaxun", @@ -209313,14 +209677,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.yamaxun", + "rdap_server": "https://rdap.nominet.uk/yamaxun/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.yamaxun", "ipv4": [ { "ip": "213.248.218.88", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -209338,8 +209731,8 @@ "ipv4": [ { "ip": "103.49.82.88", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -209466,36 +209859,7 @@ } ] } - ], - "registry_url": "http://www.nic.yamaxun", - "rdap_server": "https://rdap.nominet.uk/yamaxun/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "yandex", @@ -209520,6 +209884,31 @@ "date_removed": null } }, + "registry_url": "http://www.yandex.ru/", + "whois_server": "whois.nic.yandex", + "rdap_server": "https://rdap.nic.yandex/rdap/", + "tld_created": "2014-07-10", + "tld_updated": [ + "2025-12-12" + ], + "annotations": { + "iana_tech_alias": "Tucows", + "iana_tech_slug": "tucows", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Packet Clearing House", + "Tucows" + ], + "as_org_slugs": [ + "packet-clearing-house", + "tucows" + ] + }, "nameservers": [ { "hostname": "ns01.trs-dns.com", @@ -209597,32 +209986,7 @@ } ] } - ], - "registry_url": "http://www.yandex.ru/", - "whois_server": "whois.nic.yandex", - "rdap_server": "https://rdap.nic.yandex/rdap/", - "tld_created": "2014-07-10", - "tld_updated": [ - "2025-12-12" - ], - "annotations": { - "iana_tech_alias": "Tucows", - "iana_tech_slug": "tucows", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Packet Clearing House", - "Tucows" - ], - "as_org_slugs": [ - "packet-clearing-house", - "tucows" - ] - } + ] }, { "tld": "ye", @@ -209636,6 +210000,25 @@ "tech": "TeleYemen" } }, + "whois_server": "whois.y.net.ye", + "rdap_server": "https://rdap.y.net.ye/", + "tld_created": "1996-08-19", + "tld_updated": [ + "2025-03-16" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Yemen", + "as_org_aliases": [ + "Knipp Medien", + "Packet Clearing House" + ], + "as_org_slugs": [ + "knipp-medien", + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "d.tld.ye", @@ -209732,26 +210115,7 @@ } ] } - ], - "whois_server": "whois.y.net.ye", - "rdap_server": "https://rdap.y.net.ye/", - "tld_created": "1996-08-19", - "tld_updated": [ - "2025-03-16" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Yemen", - "as_org_aliases": [ - "Knipp Medien", - "Packet Clearing House" - ], - "as_org_slugs": [ - "knipp-medien", - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "yodobashi", @@ -209776,6 +210140,31 @@ "date_removed": null } }, + "registry_url": "http://www.gmoregistry.com/en/", + "whois_server": "whois.nic.gmo", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2015-02-13", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -209801,7 +210190,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209846,32 +210235,7 @@ } ] } - ], - "registry_url": "http://www.gmoregistry.com/en/", - "whois_server": "whois.nic.gmo", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2015-02-13", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "yoga", @@ -209896,6 +210260,34 @@ "date_removed": null } }, + "registry_url": "http://nic.yoga/", + "whois_server": "whois.nic.yoga", + "rdap_server": "https://rdap.nic.yoga/", + "tld_created": "2014-08-15", + "tld_updated": [ + "2024-04-17" + ], + "annotations": { + "iana_sponsor_alias": "GoDaddy Registry", + "iana_sponsor_slug": "godaddy-registry", + "iana_admin_alias": "GoDaddy Registry", + "iana_admin_slug": "godaddy-registry", + "iana_tech_alias": "GoDaddy Registry", + "iana_tech_slug": "godaddy-registry", + "icann_registry_operator_alias": "GoDaddy Registry", + "icann_registry_operator_slug": "godaddy-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ] + }, "nameservers": [ { "hostname": "a.nic.yoga", @@ -209921,7 +210313,7 @@ "ipv4": [ { "ip": "37.209.194.10", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209959,7 +210351,7 @@ "ipv4": [ { "ip": "156.154.172.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209967,7 +210359,7 @@ "ipv6": [ { "ip": "2610:a1:1074::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209978,7 +210370,7 @@ "ipv4": [ { "ip": "156.154.173.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209986,7 +210378,7 @@ "ipv6": [ { "ip": "2610:a1:1075::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -209997,7 +210389,7 @@ "ipv4": [ { "ip": "156.154.174.82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -210005,41 +210397,13 @@ "ipv6": [ { "ip": "2610:a1:1076::1:82", - "asn": 19905, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } ] } - ], - "registry_url": "http://nic.yoga/", - "whois_server": "whois.nic.yoga", - "rdap_server": "https://rdap.nic.yoga/", - "tld_created": "2014-08-15", - "tld_updated": [ - "2024-04-17" - ], - "annotations": { - "iana_sponsor_alias": "GoDaddy Registry", - "iana_sponsor_slug": "godaddy-registry", - "iana_admin_alias": "GoDaddy Registry", - "iana_admin_slug": "godaddy-registry", - "iana_tech_alias": "GoDaddy Registry", - "iana_tech_slug": "godaddy-registry", - "icann_registry_operator_alias": "GoDaddy Registry", - "icann_registry_operator_slug": "godaddy-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ] - } + ] }, { "tld": "yokohama", @@ -210064,6 +210428,35 @@ "date_removed": null } }, + "registry_url": "http://www.gmo-registry.com/en/", + "whois_server": "whois.nic.yokohama", + "rdap_server": "https://rdap.gmoregistry.net/rdap/", + "tld_created": "2014-03-27", + "tld_updated": [ + "2019-08-20" + ], + "annotations": { + "iana_sponsor_alias": "GMO Registry", + "iana_sponsor_slug": "gmo-registry", + "iana_admin_alias": "GMO Registry", + "iana_admin_slug": "gmo-registry", + "iana_tech_alias": "GMO Registry", + "iana_tech_slug": "gmo-registry", + "icann_registry_operator_alias": "GMO Registry", + "icann_registry_operator_slug": "gmo-registry", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "UltraDNS" + ], + "as_org_slugs": [ + "ultradns" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.gmoregistry.net", @@ -210089,7 +210482,7 @@ "ipv4": [ { "ip": "37.209.194.4", - "asn": 397213, + "asn": 12008, "as_org": "SECURITYSERVICES", "as_country": "US" } @@ -210134,36 +210527,7 @@ } ] } - ], - "registry_url": "http://www.gmo-registry.com/en/", - "whois_server": "whois.nic.yokohama", - "rdap_server": "https://rdap.gmoregistry.net/rdap/", - "tld_created": "2014-03-27", - "tld_updated": [ - "2019-08-20" - ], - "annotations": { - "iana_sponsor_alias": "GMO Registry", - "iana_sponsor_slug": "gmo-registry", - "iana_admin_alias": "GMO Registry", - "iana_admin_slug": "gmo-registry", - "iana_tech_alias": "GMO Registry", - "iana_tech_slug": "gmo-registry", - "icann_registry_operator_alias": "GMO Registry", - "icann_registry_operator_slug": "gmo-registry", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "UltraDNS" - ], - "as_org_slugs": [ - "ultradns" - ], - "geographic_scope": "city" - } + ] }, { "tld": "you", @@ -210188,14 +210552,43 @@ "date_removed": null } }, + "registry_url": "http://www.nic.you", + "rdap_server": "https://rdap.nominet.uk/you/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.you", "ipv4": [ { "ip": "213.248.218.89", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -210213,8 +210606,8 @@ "ipv4": [ { "ip": "103.49.82.89", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -210341,36 +210734,7 @@ } ] } - ], - "registry_url": "http://www.nic.you", - "rdap_server": "https://rdap.nominet.uk/you/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "youtube", @@ -210395,6 +210759,34 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -210491,35 +210883,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "yt", @@ -210533,65 +210897,6 @@ "tech": "Association Française pour le Nommage Internet en Coopération (A.F.N.I.C.)" } }, - "nameservers": [ - { - "hostname": "d.nic.fr", - "ipv4": [ - { - "ip": "194.0.9.1", - "asn": 2486, - "as_org": "NIC-FR-DNS-UNICAST-PARIS2 AFNIC Association Francaise pour le Nommage Internet en Cooperation", - "as_country": "FR" - } - ], - "ipv6": [ - { - "ip": "2001:678:c::1", - "asn": 2486, - "as_org": "NIC-FR-DNS-UNICAST-PARIS2 AFNIC Association Francaise pour le Nommage Internet en Cooperation", - "as_country": "FR" - } - ] - }, - { - "hostname": "f.ext.nic.fr", - "ipv4": [ - { - "ip": "194.146.106.46", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", - "as_country": "SE" - } - ], - "ipv6": [ - { - "ip": "2001:67c:1010:11::53", - "asn": 8674, - "as_org": "NETNOD-IX Netnod AB", - "as_country": "SE" - } - ] - }, - { - "hostname": "g.ext.nic.fr", - "ipv4": [ - { - "ip": "194.0.36.1", - "asn": 42, - "as_org": "WOODYNET-1", - "as_country": "US" - } - ], - "ipv6": [ - { - "ip": "2001:678:4c::1", - "asn": 42, - "as_org": "WOODYNET-1", - "as_country": "US" - } - ] - } - ], "registry_url": "http://www.nic.yt", "whois_server": "whois.nic.yt", "rdap_server": "https://rdap.nic.yt/", @@ -210617,7 +210922,66 @@ "packet-clearing-house" ], "geographic_scope": "country" - } + }, + "nameservers": [ + { + "hostname": "d.nic.fr", + "ipv4": [ + { + "ip": "194.0.9.1", + "asn": 2486, + "as_org": "NIC-FR-DNS-UNICAST-PARIS2 AFNIC Association Francaise pour le Nommage Internet en Cooperation", + "as_country": "FR" + } + ], + "ipv6": [ + { + "ip": "2001:678:c::1", + "asn": 2486, + "as_org": "NIC-FR-DNS-UNICAST-PARIS2 AFNIC Association Francaise pour le Nommage Internet en Cooperation", + "as_country": "FR" + } + ] + }, + { + "hostname": "f.ext.nic.fr", + "ipv4": [ + { + "ip": "194.146.106.46", + "asn": 8674, + "as_org": "NETNOD-IX Netnod AB", + "as_country": "SE" + } + ], + "ipv6": [ + { + "ip": "2001:67c:1010:11::53", + "asn": 8674, + "as_org": "NETNOD-IX Netnod AB", + "as_country": "SE" + } + ] + }, + { + "hostname": "g.ext.nic.fr", + "ipv4": [ + { + "ip": "194.0.36.1", + "asn": 42, + "as_org": "WOODYNET-1", + "as_country": "US" + } + ], + "ipv6": [ + { + "ip": "2001:678:4c::1", + "asn": 42, + "as_org": "WOODYNET-1", + "as_country": "US" + } + ] + } + ] }, { "tld": "yun", @@ -210642,14 +211006,34 @@ "date_removed": null } }, + "registry_url": "http://www.teleinfo.cn", + "whois_server": "whois.teleinfo.cn", + "rdap_server": "https://rdap.teleinfo.cn/", + "tld_created": "2016-03-18", + "tld_updated": [ + "2025-10-24" + ], + "annotations": { + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Microsoft" + ], + "as_org_slugs": [ + "microsoft" + ] + }, "nameservers": [ { "hostname": "ns1.teleinfo.cn", "ipv4": [ { "ip": "103.61.60.1", - "asn": 139137, - "as_org": "CAICTNET Chinese Academy of Telecommunication Research", + "asn": 138457, + "as_org": "CAICT-AS-AP China Academy of Information and Communications Technology", "as_country": "CN" } ], @@ -210705,27 +211089,7 @@ ], "ipv6": [] } - ], - "registry_url": "http://www.teleinfo.cn", - "whois_server": "whois.teleinfo.cn", - "rdap_server": "https://rdap.teleinfo.cn/", - "tld_created": "2016-03-18", - "tld_updated": [ - "2025-10-24" - ], - "annotations": { - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Microsoft" - ], - "as_org_slugs": [ - "microsoft" - ] - } + ] }, { "tld": "za", @@ -210739,6 +211103,21 @@ "tech": "ZA Domain Name Authority" } }, + "registry_url": "http://www.zadna.org.za/", + "tld_created": "1990-11-07", + "tld_updated": [ + "2025-04-16" + ], + "annotations": { + "country_name_iso": "South Africa", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "nsza.is.co.za", @@ -210790,22 +211169,7 @@ } ] } - ], - "registry_url": "http://www.zadna.org.za/", - "tld_created": "1990-11-07", - "tld_updated": [ - "2025-04-16" - ], - "annotations": { - "country_name_iso": "South Africa", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "zappos", @@ -210830,14 +211194,44 @@ "date_removed": null } }, + "registry_url": "http://www.nic.zappos", + "rdap_server": "https://rdap.nominet.uk/zappos/", + "tld_created": "2016-05-19", + "tld_updated": [ + "2025-02-14" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Nominet", + "iana_tech_slug": "nominet", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Nominet", + "UltraDNS" + ], + "as_org_slugs": [ + "nominet", + "ultradns" + ] + }, "nameservers": [ { "hostname": "dns1.nic.zappos", "ipv4": [ { "ip": "213.248.218.52", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -210855,8 +211249,8 @@ "ipv4": [ { "ip": "103.49.82.52", - "asn": 137502, - "as_org": "NOMINET-AS-AP NOMINET UK", + "asn": 43519, + "as_org": "NOMINETANYCAST", "as_country": "GB" } ], @@ -210983,37 +211377,7 @@ } ] } - ], - "registry_url": "http://www.nic.zappos", - "rdap_server": "https://rdap.nominet.uk/zappos/", - "tld_created": "2016-05-19", - "tld_updated": [ - "2025-02-14" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Nominet", - "iana_tech_slug": "nominet", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Nominet", - "UltraDNS" - ], - "as_org_slugs": [ - "nominet", - "ultradns" - ] - } + ] }, { "tld": "zara", @@ -211038,6 +211402,29 @@ "date_removed": null } }, + "registry_url": "http://www.zara.com", + "whois_server": "whois.nic.zara", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-09-10", + "tld_updated": [ + "2023-08-04" + ], + "annotations": { + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "brand", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "a0.nic.zara", @@ -211115,30 +211502,7 @@ } ] } - ], - "registry_url": "http://www.zara.com", - "whois_server": "whois.nic.zara", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-09-10", - "tld_updated": [ - "2023-08-04" - ], - "annotations": { - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "brand", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "zero", @@ -211163,6 +211527,34 @@ "date_removed": null } }, + "registry_url": "http://www.nic.zero", + "whois_server": "whois.nic.zero", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2015-11-12", + "tld_updated": [ + "2025-06-17" + ], + "annotations": { + "iana_sponsor_alias": "Amazon", + "iana_sponsor_slug": "amazon", + "iana_admin_alias": "Amazon", + "iana_admin_slug": "amazon", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Amazon", + "icann_registry_operator_slug": "amazon", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.zero", @@ -211278,35 +211670,7 @@ } ] } - ], - "registry_url": "http://www.nic.zero", - "whois_server": "whois.nic.zero", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2015-11-12", - "tld_updated": [ - "2025-06-17" - ], - "annotations": { - "iana_sponsor_alias": "Amazon", - "iana_sponsor_slug": "amazon", - "iana_admin_alias": "Amazon", - "iana_admin_slug": "amazon", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Amazon", - "icann_registry_operator_slug": "amazon", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "zip", @@ -211331,6 +211695,33 @@ "date_removed": null } }, + "registry_url": "https://www.registry.google", + "rdap_server": "https://pubapi.registry.google/rdap/", + "tld_created": "2014-08-23", + "tld_updated": [ + "2025-04-11" + ], + "annotations": { + "iana_sponsor_alias": "Google", + "iana_sponsor_slug": "google", + "iana_admin_alias": "Google", + "iana_admin_slug": "google", + "iana_tech_alias": "Google", + "iana_tech_slug": "google", + "icann_registry_operator_alias": "Google", + "icann_registry_operator_slug": "google", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Google" + ], + "as_org_slugs": [ + "google" + ] + }, "nameservers": [ { "hostname": "ns-tld1.charlestonroadregistry.com", @@ -211427,34 +211818,7 @@ } ] } - ], - "registry_url": "https://www.registry.google", - "rdap_server": "https://pubapi.registry.google/rdap/", - "tld_created": "2014-08-23", - "tld_updated": [ - "2025-04-11" - ], - "annotations": { - "iana_sponsor_alias": "Google", - "iana_sponsor_slug": "google", - "iana_admin_alias": "Google", - "iana_admin_slug": "google", - "iana_tech_alias": "Google", - "iana_tech_slug": "google", - "icann_registry_operator_alias": "Google", - "icann_registry_operator_slug": "google", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Google" - ], - "as_org_slugs": [ - "google" - ] - } + ] }, { "tld": "zippo", @@ -211498,6 +211862,24 @@ "tech": "Zambia Information and Communications Technology Authority (ZICTA)" } }, + "registry_url": "https://registry.zicta.zm", + "whois_server": "whois.zicta.zm", + "rdap_server": "https://rdap.nic.zm", + "tld_created": "1994-03-25", + "tld_updated": [ + "2024-04-24" + ], + "annotations": { + "rdap_source": "IANA", + "country_name_iso": "Zambia", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "gransy.nic.zm", @@ -211555,25 +211937,7 @@ } ] } - ], - "registry_url": "https://registry.zicta.zm", - "whois_server": "whois.zicta.zm", - "rdap_server": "https://rdap.nic.zm", - "tld_created": "1994-03-25", - "tld_updated": [ - "2024-04-24" - ], - "annotations": { - "rdap_source": "IANA", - "country_name_iso": "Zambia", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] }, { "tld": "zone", @@ -211598,6 +211962,33 @@ "date_removed": null } }, + "registry_url": "https://www.identity.digital/", + "rdap_server": "https://rdap.identitydigital.services/rdap/", + "tld_created": "2014-01-09", + "tld_updated": [ + "2025-10-07" + ], + "annotations": { + "iana_sponsor_alias": "Identity Digital", + "iana_sponsor_slug": "identity-digital", + "iana_admin_alias": "Identity Digital", + "iana_admin_slug": "identity-digital", + "iana_tech_alias": "Identity Digital", + "iana_tech_slug": "identity-digital", + "icann_registry_operator_alias": "Identity Digital", + "icann_registry_operator_slug": "identity-digital", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "Identity Digital" + ], + "as_org_slugs": [ + "identity-digital" + ] + }, "nameservers": [ { "hostname": "v0n0.nic.zone", @@ -211713,34 +212104,7 @@ } ] } - ], - "registry_url": "https://www.identity.digital/", - "rdap_server": "https://rdap.identitydigital.services/rdap/", - "tld_created": "2014-01-09", - "tld_updated": [ - "2025-10-07" - ], - "annotations": { - "iana_sponsor_alias": "Identity Digital", - "iana_sponsor_slug": "identity-digital", - "iana_admin_alias": "Identity Digital", - "iana_admin_slug": "identity-digital", - "iana_tech_alias": "Identity Digital", - "iana_tech_slug": "identity-digital", - "icann_registry_operator_alias": "Identity Digital", - "icann_registry_operator_slug": "identity-digital", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "Identity Digital" - ], - "as_org_slugs": [ - "identity-digital" - ] - } + ] }, { "tld": "zuerich", @@ -211765,6 +212129,29 @@ "date_removed": null } }, + "registry_url": "https://nic.zuerich", + "whois_server": "whois.nic.zuerich", + "rdap_server": "https://rdap.centralnic.com/zuerich", + "tld_created": "2014-12-18", + "tld_updated": [ + "2023-10-16" + ], + "annotations": { + "iana_tech_alias": "CentralNic", + "iana_tech_slug": "centralnic", + "rdap_source": "IANA", + "registry_agreement_types": [ + "base", + "non_sponsored" + ], + "as_org_aliases": [ + "CentralNic" + ], + "as_org_slugs": [ + "centralnic" + ], + "geographic_scope": "city" + }, "nameservers": [ { "hostname": "a.nic.zuerich", @@ -211842,30 +212229,7 @@ } ] } - ], - "registry_url": "https://nic.zuerich", - "whois_server": "whois.nic.zuerich", - "rdap_server": "https://rdap.centralnic.com/zuerich", - "tld_created": "2014-12-18", - "tld_updated": [ - "2023-10-16" - ], - "annotations": { - "iana_tech_alias": "CentralNic", - "iana_tech_slug": "centralnic", - "rdap_source": "IANA", - "registry_agreement_types": [ - "base", - "non_sponsored" - ], - "as_org_aliases": [ - "CentralNic" - ], - "as_org_slugs": [ - "centralnic" - ], - "geographic_scope": "city" - } + ] }, { "tld": "zw", @@ -211879,6 +212243,20 @@ "tech": "TelOne Pvt Ltd" } }, + "tld_created": "1991-11-06", + "tld_updated": [ + "2021-03-11" + ], + "annotations": { + "country_name_iso": "Zimbabwe", + "as_org_aliases": [ + "Packet Clearing House" + ], + "as_org_slugs": [ + "packet-clearing-house" + ], + "geographic_scope": "country" + }, "nameservers": [ { "hostname": "ns1.liquidtelecom.net", @@ -211975,21 +212353,7 @@ } ] } - ], - "tld_created": "1991-11-06", - "tld_updated": [ - "2021-03-11" - ], - "annotations": { - "country_name_iso": "Zimbabwe", - "as_org_aliases": [ - "Packet Clearing House" - ], - "as_org_slugs": [ - "packet-clearing-house" - ], - "geographic_scope": "country" - } + ] } ] } diff --git a/data/manual/annotations.json b/data/manual/annotations.json index 723a218e..1c98860e 100644 --- a/data/manual/annotations.json +++ b/data/manual/annotations.json @@ -1,64 +1,80 @@ { - "abudhabi": { "geographic_scope": "city" }, - "africa": { "geographic_scope": "supranational" }, - "alsace": { "geographic_scope": "subdivision" }, - "amsterdam": { "geographic_scope": "city" }, - "arab": { "cultural_affiliation": "arab" }, - "asia": { "geographic_scope": "supranational" }, - "barcelona": { "geographic_scope": "city" }, - "bcn": { "geographic_scope": "city" }, - "berlin": { "geographic_scope": "city" }, - "boston": { "geographic_scope": "city" }, - "brussels": { "geographic_scope": "city" }, - "bzh": { "geographic_scope": "subdivision", "cultural_affiliation": "breton" }, - "capetown": { "geographic_scope": "city" }, - "cat": { "cultural_affiliation": "catalan" }, - "cologne": { "geographic_scope": "city" }, - "cymru": { "geographic_scope": "subdivision", "cultural_affiliation": "welsh" }, - "desi": { "cultural_affiliation": "desi" }, - "dubai": { "geographic_scope": "city" }, - "durban": { "geographic_scope": "city" }, - "eu": { "geographic_scope": "supranational" }, - "eus": { "geographic_scope": "subdivision", "cultural_affiliation": "basque" }, - "frl": { "geographic_scope": "subdivision" }, - "gal": { "geographic_scope": "subdivision", "cultural_affiliation": "galician" }, - "gent": { "geographic_scope": "city" }, - "hamburg": { "geographic_scope": "city" }, - "helsinki": { "geographic_scope": "city" }, - "istanbul": { "geographic_scope": "city" }, - "joburg": { "geographic_scope": "city" }, - "kiwi": { "cultural_affiliation": "kiwi" }, - "koeln": { "geographic_scope": "city" }, - "krd": { "cultural_affiliation": "kurdish" }, - "kyoto": { "geographic_scope": "city" }, - "lat": { "geographic_scope": "supranational" }, - "london": { "geographic_scope": "city" }, - "madrid": { "geographic_scope": "city" }, - "melbourne": { "geographic_scope": "city" }, - "miami": { "geographic_scope": "city" }, - "moscow": { "geographic_scope": "city" }, - "nagoya": { "geographic_scope": "city" }, - "nrw": { "geographic_scope": "subdivision" }, - "nyc": { "geographic_scope": "city" }, - "osaka": { "geographic_scope": "city" }, - "paris": { "geographic_scope": "city" }, - "quebec": { "geographic_scope": "subdivision" }, - "rio": { "geographic_scope": "city" }, - "saarland": { "geographic_scope": "subdivision" }, - "scot": { "geographic_scope": "subdivision", "cultural_affiliation": "scottish" }, - "stockholm": { "geographic_scope": "city" }, - "swiss": { "cultural_affiliation": "swiss" }, - "sydney": { "geographic_scope": "city" }, - "taipei": { "geographic_scope": "city" }, - "tatar": { "geographic_scope": "subdivision", "cultural_affiliation": "tatar" }, - "tirol": { "geographic_scope": "subdivision" }, - "tokyo": { "geographic_scope": "city" }, - "vegas": { "geographic_scope": "city" }, - "vlaanderen": { "geographic_scope": "subdivision" }, - "wales": { "geographic_scope": "subdivision", "cultural_affiliation": "welsh" }, - "wien": { "geographic_scope": "city" }, - "xn--80adxhks": { "geographic_scope": "city" }, - "xn--mgbca7dzdo": { "geographic_scope": "city" }, - "yokohama": { "geographic_scope": "city" }, - "zuerich": { "geographic_scope": "city" } + "abudhabi": {"geographic_scope": "city"}, + "africa": {"geographic_scope": "supranational"}, + "alsace": {"geographic_scope": "subdivision"}, + "amsterdam": {"geographic_scope": "city"}, + "arab": {"cultural_affiliation": "arab"}, + "asia": {"geographic_scope": "supranational"}, + "barcelona": {"geographic_scope": "city"}, + "bayern": {"geographic_scope": "subdivision"}, + "bcn": {"geographic_scope": "city"}, + "berlin": {"geographic_scope": "city"}, + "boston": {"geographic_scope": "city"}, + "brussels": {"geographic_scope": "city"}, + "bzh": {"geographic_scope": "subdivision", "cultural_affiliation": "breton"}, + "capetown": {"geographic_scope": "city"}, + "cat": {"geographic_scope": "subdivision", "cultural_affiliation": "catalan"}, + "cologne": {"geographic_scope": "city"}, + "corsica": {"geographic_scope": "subdivision"}, + "cymru": {"geographic_scope": "subdivision", "cultural_affiliation": "welsh"}, + "desi": {"cultural_affiliation": "desi"}, + "dubai": {"geographic_scope": "city"}, + "durban": {"geographic_scope": "city"}, + "eu": {"geographic_scope": "supranational"}, + "eus": {"geographic_scope": "subdivision", "cultural_affiliation": "basque"}, + "frl": {"geographic_scope": "subdivision"}, + "gal": {"geographic_scope": "subdivision", "cultural_affiliation": "galician"}, + "gent": {"geographic_scope": "city"}, + "hamburg": {"geographic_scope": "city"}, + "helsinki": {"geographic_scope": "city"}, + "ist": {"geographic_scope": "city"}, + "istanbul": {"geographic_scope": "city"}, + "joburg": {"geographic_scope": "city"}, + "kiwi": {"cultural_affiliation": "kiwi"}, + "koeln": {"geographic_scope": "city"}, + "krd": {"cultural_affiliation": "kurdish"}, + "kyoto": {"geographic_scope": "city"}, + "lat": {"geographic_scope": "supranational"}, + "london": {"geographic_scope": "city"}, + "madrid": {"geographic_scope": "city"}, + "melbourne": {"geographic_scope": "city"}, + "miami": {"geographic_scope": "city"}, + "moscow": {"geographic_scope": "city"}, + "nagoya": {"geographic_scope": "city"}, + "nrw": {"geographic_scope": "subdivision"}, + "nyc": {"geographic_scope": "city"}, + "okinawa": {"geographic_scope": "subdivision"}, + "osaka": {"geographic_scope": "city"}, + "paris": {"geographic_scope": "city"}, + "quebec": {"geographic_scope": "subdivision"}, + "rio": {"geographic_scope": "city"}, + "ruhr": {"geographic_scope": "subdivision"}, + "ryukyu": {"geographic_scope": "subdivision"}, + "saarland": {"geographic_scope": "subdivision"}, + "scot": {"geographic_scope": "subdivision", "cultural_affiliation": "scottish"}, + "stockholm": {"geographic_scope": "city"}, + "swiss": {"cultural_affiliation": "swiss"}, + "sydney": {"geographic_scope": "city"}, + "taipei": {"geographic_scope": "city"}, + "tatar": {"geographic_scope": "subdivision", "cultural_affiliation": "tatar"}, + "tirol": {"geographic_scope": "subdivision"}, + "tokyo": {"geographic_scope": "city"}, + "vegas": {"geographic_scope": "city"}, + "vlaanderen": {"geographic_scope": "subdivision"}, + "wales": {"geographic_scope": "subdivision", "cultural_affiliation": "welsh"}, + "wien": {"geographic_scope": "city"}, + "xn--80adxhks": {"geographic_scope": "city"}, + "xn--fiqs8s": {"language_code": "zh-Hans"}, + "xn--fiqz9s": {"language_code": "zh-Hant"}, + "xn--j6w193g": {"language_code": "zh-Hant"}, + "xn--kprw13d": {"language_code": "zh-Hant-TW"}, + "xn--kpry57d": {"language_code": "zh-Hant-TW"}, + "xn--mgbca7dzdo": {"geographic_scope": "city"}, + "xn--mix891f": {"language_code": "zh-Hant"}, + "xn--ngbrx": {"cultural_affiliation": "arab"}, + "xn--vermgensberater-ctb": {"language_code": "de"}, + "xn--vermgensberatung-pwb": {"language_code": "de"}, + "xn--yfro4i67o": {"language_code": "zh-Hans"}, + "yokohama": {"geographic_scope": "city"}, + "zuerich": {"geographic_scope": "city"} } diff --git a/data/manual/cultures.json b/data/manual/cultures.json new file mode 100644 index 00000000..2d16a4cb --- /dev/null +++ b/data/manual/cultures.json @@ -0,0 +1,62 @@ +{ + "arab": { + "name_en": "Arab", + "info_link": "https://en.wikipedia.org/wiki/Arab_culture", + "language_code": "ar" + }, + "basque": { + "name_en": "Basque", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_the_Basque_Country", + "language_code": "eu" + }, + "breton": { + "name_en": "Breton", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Brittany", + "language_code": "br" + }, + "catalan": { + "name_en": "Catalan", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Catalonia", + "language_code": "ca" + }, + "desi": { + "name_en": "Desi", + "info_link": "https://en.wikipedia.org/wiki/Desi", + "language_code": null + }, + "galician": { + "name_en": "Galician", + "info_link": "https://en.wikipedia.org/wiki/Galician_culture", + "language_code": "gl" + }, + "kiwi": { + "name_en": "Kiwi", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_New_Zealand", + "language_code": null + }, + "kurdish": { + "name_en": "Kurdish", + "info_link": "https://en.wikipedia.org/wiki/Kurdish_culture", + "language_code": "ku" + }, + "scottish": { + "name_en": "Scottish", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Scotland", + "language_code": null + }, + "swiss": { + "name_en": "Swiss", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Switzerland", + "language_code": null + }, + "tatar": { + "name_en": "Tatar", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Tatarstan", + "language_code": "tt" + }, + "welsh": { + "name_en": "Welsh", + "info_link": "https://en.wikipedia.org/wiki/Culture_of_Wales", + "language_code": "cy" + } +} diff --git a/data/manual/dependent-territories.json b/data/manual/dependent-territories.json new file mode 100644 index 00000000..27086b71 --- /dev/null +++ b/data/manual/dependent-territories.json @@ -0,0 +1,12 @@ +{ + "au": ["cc", "cx", "hm", "nf"], + "cn": ["hk", "mo"], + "dk": ["fo", "gl"], + "fi": ["ax"], + "fr": ["gf", "gp", "mq", "nc", "pf", "pm", "re", "tf", "wf", "yt"], + "gb": ["ai", "bm", "fk", "gg", "gi", "gs", "im", "io", "je", "ky", "ms", "pn", "sh", "tc", "vg"], + "nl": ["aw", "cw", "sx"], + "no": ["bv", "sj"], + "nz": ["ck", "nu", "tk"], + "us": ["as", "gu", "mp", "pr", "vi"] +} diff --git a/data/manual/places.json b/data/manual/places.json new file mode 100644 index 00000000..ad4a024c --- /dev/null +++ b/data/manual/places.json @@ -0,0 +1,458 @@ +{ + "abudhabi": { + "subtype": "city", + "name_en": "Abu Dhabi", + "iso_code": null, + "parent": "ae", + "info_link": "https://en.wikipedia.org/wiki/Abu_Dhabi", + "tlds": ["abudhabi", "xn--mgbca7dzdo"] + }, + "africa": { + "subtype": "supranational", + "name_en": "Africa", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Africa", + "tlds": ["africa"] + }, + "alsace": { + "subtype": "subdivision", + "name_en": "Alsace", + "iso_code": null, + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Alsace", + "tlds": ["alsace"] + }, + "amsterdam": { + "subtype": "city", + "name_en": "Amsterdam", + "iso_code": null, + "parent": "nl", + "info_link": "https://en.wikipedia.org/wiki/Amsterdam", + "tlds": ["amsterdam"] + }, + "asia": { + "subtype": "supranational", + "name_en": "Asia", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Asia", + "tlds": ["asia"] + }, + "barcelona": { + "subtype": "city", + "name_en": "Barcelona", + "iso_code": null, + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Barcelona", + "tlds": ["barcelona", "bcn"] + }, + "basque-country": { + "subtype": "subdivision", + "name_en": "Basque Country", + "iso_code": "ES-PV", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", + "tlds": ["eus"] + }, + "bayern": { + "subtype": "subdivision", + "name_en": "Bavaria", + "iso_code": "DE-BY", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Bavaria", + "tlds": ["bayern"] + }, + "berlin": { + "subtype": "city", + "name_en": "Berlin", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Berlin", + "tlds": ["berlin"] + }, + "boston": { + "subtype": "city", + "name_en": "Boston", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Boston", + "tlds": ["boston"] + }, + "brittany": { + "subtype": "subdivision", + "name_en": "Brittany", + "iso_code": "FR-BRE", + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Brittany", + "tlds": ["bzh"] + }, + "brussels": { + "subtype": "city", + "name_en": "Brussels", + "iso_code": null, + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Brussels", + "tlds": ["brussels"] + }, + "capetown": { + "subtype": "city", + "name_en": "Cape Town", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Cape_Town", + "tlds": ["capetown"] + }, + "catalonia": { + "subtype": "subdivision", + "name_en": "Catalonia", + "iso_code": "ES-CT", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Catalonia", + "tlds": ["cat"] + }, + "cologne": { + "subtype": "city", + "name_en": "Cologne", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Cologne", + "tlds": ["cologne", "koeln"] + }, + "corsica": { + "subtype": "subdivision", + "name_en": "Corsica", + "iso_code": "FR-20R", + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Corsica", + "tlds": ["corsica"] + }, + "dubai": { + "subtype": "city", + "name_en": "Dubai", + "iso_code": null, + "parent": "ae", + "info_link": "https://en.wikipedia.org/wiki/Dubai", + "tlds": ["dubai"] + }, + "durban": { + "subtype": "city", + "name_en": "Durban", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Durban", + "tlds": ["durban"] + }, + "eu": { + "subtype": "supranational", + "name_en": "European Union", + "iso_code": "EU", + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/European_Union", + "tlds": ["eu", "xn--e1a4c", "xn--qxa6a"] + }, + "flanders": { + "subtype": "subdivision", + "name_en": "Flanders", + "iso_code": "BE-VLG", + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Flanders", + "tlds": ["vlaanderen"] + }, + "friesland": { + "subtype": "subdivision", + "name_en": "Friesland", + "iso_code": "NL-FR", + "parent": "nl", + "info_link": "https://en.wikipedia.org/wiki/Friesland", + "tlds": ["frl"] + }, + "galicia": { + "subtype": "subdivision", + "name_en": "Galicia", + "iso_code": "ES-GA", + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Galicia_(Spain)", + "tlds": ["gal"] + }, + "gent": { + "subtype": "city", + "name_en": "Ghent", + "iso_code": null, + "parent": "be", + "info_link": "https://en.wikipedia.org/wiki/Ghent", + "tlds": ["gent"] + }, + "hamburg": { + "subtype": "city", + "name_en": "Hamburg", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Hamburg", + "tlds": ["hamburg"] + }, + "helsinki": { + "subtype": "city", + "name_en": "Helsinki", + "iso_code": null, + "parent": "fi", + "info_link": "https://en.wikipedia.org/wiki/Helsinki", + "tlds": ["helsinki"] + }, + "istanbul": { + "subtype": "city", + "name_en": "Istanbul", + "iso_code": null, + "parent": "tr", + "info_link": "https://en.wikipedia.org/wiki/Istanbul", + "tlds": ["ist", "istanbul"] + }, + "joburg": { + "subtype": "city", + "name_en": "Johannesburg", + "iso_code": null, + "parent": "za", + "info_link": "https://en.wikipedia.org/wiki/Johannesburg", + "tlds": ["joburg"] + }, + "kyoto": { + "subtype": "city", + "name_en": "Kyoto", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Kyoto", + "tlds": ["kyoto"] + }, + "latin-america": { + "subtype": "supranational", + "name_en": "Latin America", + "iso_code": null, + "parent": null, + "info_link": "https://en.wikipedia.org/wiki/Latin_America", + "tlds": ["lat"] + }, + "london": { + "subtype": "city", + "name_en": "London", + "iso_code": null, + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/London", + "tlds": ["london"] + }, + "madrid": { + "subtype": "city", + "name_en": "Madrid", + "iso_code": null, + "parent": "es", + "info_link": "https://en.wikipedia.org/wiki/Madrid", + "tlds": ["madrid"] + }, + "melbourne": { + "subtype": "city", + "name_en": "Melbourne", + "iso_code": null, + "parent": "au", + "info_link": "https://en.wikipedia.org/wiki/Melbourne", + "tlds": ["melbourne"] + }, + "miami": { + "subtype": "city", + "name_en": "Miami", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Miami", + "tlds": ["miami"] + }, + "moscow": { + "subtype": "city", + "name_en": "Moscow", + "iso_code": null, + "parent": "ru", + "info_link": "https://en.wikipedia.org/wiki/Moscow", + "tlds": ["moscow", "xn--80adxhks"] + }, + "nagoya": { + "subtype": "city", + "name_en": "Nagoya", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Nagoya", + "tlds": ["nagoya"] + }, + "north-rhine-westphalia": { + "subtype": "subdivision", + "name_en": "North Rhine-Westphalia", + "iso_code": "DE-NW", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/North_Rhine-Westphalia", + "tlds": ["nrw"] + }, + "nyc": { + "subtype": "city", + "name_en": "New York City", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/New_York_City", + "tlds": ["nyc"] + }, + "okinawa": { + "subtype": "subdivision", + "name_en": "Okinawa", + "iso_code": "JP-47", + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Okinawa_Prefecture", + "tlds": ["okinawa"] + }, + "osaka": { + "subtype": "city", + "name_en": "Osaka", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Osaka", + "tlds": ["osaka"] + }, + "paris": { + "subtype": "city", + "name_en": "Paris", + "iso_code": null, + "parent": "fr", + "info_link": "https://en.wikipedia.org/wiki/Paris", + "tlds": ["paris"] + }, + "quebec": { + "subtype": "subdivision", + "name_en": "Quebec", + "iso_code": "CA-QC", + "parent": "ca", + "info_link": "https://en.wikipedia.org/wiki/Quebec", + "tlds": ["quebec"] + }, + "rio": { + "subtype": "city", + "name_en": "Rio de Janeiro", + "iso_code": null, + "parent": "br", + "info_link": "https://en.wikipedia.org/wiki/Rio_de_Janeiro", + "tlds": ["rio"] + }, + "ruhr": { + "subtype": "subdivision", + "name_en": "Ruhr", + "iso_code": null, + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Ruhr", + "tlds": ["ruhr"] + }, + "ryukyu": { + "subtype": "subdivision", + "name_en": "Ryukyu Islands", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Ryukyu_Islands", + "tlds": ["ryukyu"] + }, + "saarland": { + "subtype": "subdivision", + "name_en": "Saarland", + "iso_code": "DE-SL", + "parent": "de", + "info_link": "https://en.wikipedia.org/wiki/Saarland", + "tlds": ["saarland"] + }, + "scotland": { + "subtype": "subdivision", + "name_en": "Scotland", + "iso_code": "GB-SCT", + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/Scotland", + "tlds": ["scot"] + }, + "stockholm": { + "subtype": "city", + "name_en": "Stockholm", + "iso_code": null, + "parent": "se", + "info_link": "https://en.wikipedia.org/wiki/Stockholm", + "tlds": ["stockholm"] + }, + "sydney": { + "subtype": "city", + "name_en": "Sydney", + "iso_code": null, + "parent": "au", + "info_link": "https://en.wikipedia.org/wiki/Sydney", + "tlds": ["sydney"] + }, + "taipei": { + "subtype": "city", + "name_en": "Taipei", + "iso_code": null, + "parent": "tw", + "info_link": "https://en.wikipedia.org/wiki/Taipei", + "tlds": ["taipei"] + }, + "tatarstan": { + "subtype": "subdivision", + "name_en": "Tatarstan", + "iso_code": "RU-TA", + "parent": "ru", + "info_link": "https://en.wikipedia.org/wiki/Tatarstan", + "tlds": ["tatar"] + }, + "tokyo": { + "subtype": "city", + "name_en": "Tokyo", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Tokyo", + "tlds": ["tokyo"] + }, + "tyrol": { + "subtype": "subdivision", + "name_en": "Tyrol", + "iso_code": "AT-7", + "parent": "at", + "info_link": "https://en.wikipedia.org/wiki/Tyrol_(state)", + "tlds": ["tirol"] + }, + "vegas": { + "subtype": "city", + "name_en": "Las Vegas", + "iso_code": null, + "parent": "us", + "info_link": "https://en.wikipedia.org/wiki/Las_Vegas", + "tlds": ["vegas"] + }, + "wales": { + "subtype": "subdivision", + "name_en": "Wales", + "iso_code": "GB-WLS", + "parent": "gb", + "info_link": "https://en.wikipedia.org/wiki/Wales", + "tlds": ["cymru", "wales"] + }, + "wien": { + "subtype": "city", + "name_en": "Vienna", + "iso_code": null, + "parent": "at", + "info_link": "https://en.wikipedia.org/wiki/Vienna", + "tlds": ["wien"] + }, + "yokohama": { + "subtype": "city", + "name_en": "Yokohama", + "iso_code": null, + "parent": "jp", + "info_link": "https://en.wikipedia.org/wiki/Yokohama", + "tlds": ["yokohama"] + }, + "zuerich": { + "subtype": "city", + "name_en": "Zurich", + "iso_code": null, + "parent": "ch", + "info_link": "https://en.wikipedia.org/wiki/Z%C3%BCrich", + "tlds": ["zuerich"] + } +} diff --git a/pyproject.toml b/pyproject.toml index 33cb7e9e..0e0f4c99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ required-version = ">=0.10" [dependency-groups] dev = [ + "langcodes==3.5.1", "pydeps==3.0.6", "pyright>=1.1.409", "pytest>=9.0.3", diff --git a/src/build/agreements.py b/src/build/agreements.py new file mode 100644 index 00000000..f9b5f81e --- /dev/null +++ b/src/build/agreements.py @@ -0,0 +1,85 @@ +"""Build data/generated/agreements.json. + +Transposes the built TLD list into a per-agreement-type reverse index. The slug +and verbatim ICANN string come from REGISTRY_AGREEMENT_TYPE_MAPPING; the friendly +display_name is an editorial layer authored here. +""" + +import logging +from datetime import datetime, timezone +from pathlib import Path + +from ..config import REGISTRY_AGREEMENT_TYPE_MAPPING +from ..utilities.content_changed import write_json_if_changed + +logger = logging.getLogger(__name__) + +_DESCRIPTION = ( + "ICANN registry-agreement types with a reverse index of the gTLDs operating " + "under each. Slugs and source_names are canonical ICANN values; display_name " + "is a friendly editorial label." +) + +_SOURCES = [ + "data/source/icann-registry-agreement-table.csv (ICANN)", +] + +# Friendly display label per slug. Must cover every slug in +# REGISTRY_AGREEMENT_TYPE_MAPPING; a missing entry fails the build (KeyError). +_DISPLAY_NAMES: dict[str, str] = { + "base": "Base", + "non_sponsored": "Non-Sponsored", + "brand": "Brand", + "community": "Community", + "sponsored": "Sponsored", +} + + +def build_agreements_json(tlds: list[dict], output_path: Path) -> tuple[bool, str]: + """Transpose registry-agreement types and write agreements.json. + + Args: + tlds: The built TLD entries (the source of agreement-type relationships). + output_path: Destination for the generated artifact. + + Returns: + The ``(changed, status)`` tuple from ``write_json_if_changed``. + """ + # slug -> verbatim ICANN string (the inverse of the source mapping). + source_strings = { + slug: raw for raw, slug in REGISTRY_AGREEMENT_TYPE_MAPPING.items() + } + tlds_by_slug = _transpose(tlds) + + agreements = [] + for slug in sorted(source_strings): + agreements.append( + { + "slug": slug, + "display_name": _DISPLAY_NAMES[slug], + "source_names": {"icann": source_strings[slug]}, + "tlds": sorted(tlds_by_slug.get(slug, set())), + } + ) + + output = { + "description": _DESCRIPTION, + "publication": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"), + "sources": _SOURCES, + "agreements": agreements, + } + + changed, status = write_json_if_changed( + output_path, output, exclude_fields=["publication"], indent=2 + ) + logger.info("agreements.json: %s (changed=%s)", status, changed) + return changed, status + + +def _transpose(tlds: list[dict]) -> dict[str, set[str]]: + """Build ``{slug: {tlds}}`` from each TLD's registry_agreement_types.""" + acc: dict[str, set[str]] = {} + for entry in tlds: + for slug in entry.get("annotations", {}).get("registry_agreement_types", []): + acc.setdefault(slug, set()).add(entry["tld"]) + return acc diff --git a/src/build/cultures.py b/src/build/cultures.py new file mode 100644 index 00000000..1ddf6876 --- /dev/null +++ b/src/build/cultures.py @@ -0,0 +1,75 @@ +"""Build data/generated/cultures.json. + +Merges the editorial culture identity (data/manual/cultures.json) with a reverse +index of TLDs transposed from each TLD's annotations.cultural_affiliation. +""" + +import logging +from datetime import datetime, timezone +from pathlib import Path + +from ..utilities.content_changed import write_json_if_changed + +logger = logging.getLogger(__name__) + +_DESCRIPTION = ( + "Ethno-linguistic and cultural communities claimed by TLDs in the IANA root " + "zone, each with a reverse index of those TLDs." +) + +_SOURCES = [ + "data/manual/cultures.json (editorial)", + "data/manual/annotations.json (cultural_affiliation tags)", +] + + +def build_cultures_json( + tlds: list[dict], manual_cultures: dict[str, dict], output_path: Path +) -> tuple[bool, str]: + """Attach the TLD reverse-index to the culture seed and write the file. + + Args: + tlds: The built TLD entries (source of cultural_affiliation membership). + manual_cultures: Editorial culture identity, keyed by slug. + output_path: Destination for the generated artifact. + + Returns: + The ``(changed, status)`` tuple from ``write_json_if_changed``. + """ + tlds_by_slug = _transpose(tlds) + + cultures = [] + for slug in sorted(manual_cultures): + rec = manual_cultures[slug] + cultures.append( + { + "slug": slug, + "name_en": rec["name_en"], + "info_link": rec["info_link"], + "language_code": rec.get("language_code"), + "tlds": sorted(tlds_by_slug.get(slug, set())), + } + ) + + output = { + "description": _DESCRIPTION, + "publication": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"), + "sources": _SOURCES, + "cultures": cultures, + } + + changed, status = write_json_if_changed( + output_path, output, exclude_fields=["publication"], indent=2 + ) + logger.info("cultures.json: %s (changed=%s)", status, changed) + return changed, status + + +def _transpose(tlds: list[dict]) -> dict[str, set[str]]: + """Build ``{culture_slug: {tlds}}`` from each TLD's cultural_affiliation.""" + acc: dict[str, set[str]] = {} + for entry in tlds: + affiliation = entry.get("annotations", {}).get("cultural_affiliation") + if affiliation: + acc.setdefault(affiliation, set()).add(entry["tld"]) + return acc diff --git a/src/build/idn_language.py b/src/build/idn_language.py new file mode 100644 index 00000000..79df66bc --- /dev/null +++ b/src/build/idn_language.py @@ -0,0 +1,126 @@ +"""Derive language_code (BCP-47) and language_name_en for IDN TLDs.""" + +from typing import Final + +# tld_script -> BCP-47 default. Source: CLDR likelySubtags und-