Version in base suite: 128.10.0esr-1~deb12u1 Version in overlay suite: 128.11.0esr-1~deb12u1 Base version: firefox-esr_128.11.0esr-1~deb12u1 Target version: firefox-esr_128.12.0esr-1~deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/f/firefox-esr/firefox-esr_128.11.0esr-1~deb12u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/f/firefox-esr/firefox-esr_128.12.0esr-1~deb12u1.dsc CLOBBER | 2 browser/actors/SearchSERPTelemetryChild.sys.mjs | 19 browser/config/version.txt | 2 browser/config/version_display.txt | 2 browser/extensions/webcompat/manifest.json | 2 browser/extensions/webcompat/moz.build | 5 browser/extensions/webcompat/tests/browser/browser_aboutcompat.js | 6 browser/extensions/webcompat/tests/browser/browser_uuid_migration.js | 33 browser/extensions/webcompat/tests/browser/browser_uuid_migration.toml | 7 config/milestone.txt | 2 debian/changelog | 8 debian/patches/fixes/Apply-wasm2c-upstream-fix-for-clang-targetting-mips.patch | 141 docshell/base/nsDocShell.cpp | 21 dom/base/nsObjectLoadingContent.cpp | 20 dom/base/test/browser.toml | 6 dom/base/test/browser_object_attachment.js | 237 dom/base/test/file_html_attachment.html | 6 dom/base/test/file_html_attachment.html^headers^ | 2 dom/base/test/file_html_object_attachment.html | 6 dom/base/test/file_svg_attachment.svg | 3 dom/base/test/file_svg_attachment.svg^headers^ | 2 dom/base/test/file_svg_object_attachment.html | 6 layout/style/FontFaceSet.cpp | 15 netwerk/cache2/CacheFile.h | 12 netwerk/cache2/CacheFileMetadata.cpp | 25 netwerk/cache2/CacheFileMetadata.h | 13 netwerk/dns/effective_tld_names.dat | 105 security/manager/ssl/StaticHPKPins.h | 2 security/manager/ssl/nsSTSPreloadList.inc | 5820 +++++----- services/settings/dumps/blocklists/addons-bloomfilters.json | 311 services/settings/dumps/blocklists/gfx.json | 28 services/settings/dumps/main/devtools-compatibility-browsers.json | 415 services/settings/dumps/main/search-config-v2.json | 30 services/settings/dumps/main/search-telemetry-v2.json | 390 services/settings/dumps/main/translations-models.json | 1082 + services/settings/dumps/main/translations-wasm.json | 58 services/settings/dumps/security-state/intermediates.json | 1548 ++ services/settings/dumps/security-state/onecrl.json | 225 sourcestamp.txt | 4 taskcluster/docker/periodic-updates/scripts/getHSTSPreloadList.js | 1 taskcluster/gecko_taskgraph/transforms/signing.py | 1 taskcluster/gecko_taskgraph/transforms/task.py | 4 taskcluster/kinds/release-bouncer-aliases/kind.yml | 1 toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs | 19 toolkit/components/extensions/Extension.sys.mjs | 19 toolkit/components/nimbus/FeatureManifest.yaml | 6 toolkit/components/reputationservice/ApplicationReputation.cpp | 1 toolkit/components/reputationservice/ApplicationReputation.h | 2 toolkit/components/reputationservice/test/gtest/TestExecutableLists.cpp | 1 toolkit/moz.configure | 6 uriloader/base/nsIURILoader.idl | 6 uriloader/base/nsURILoader.cpp | 114 xpcom/io/nsLocalFileCommon.cpp | 1 xpcom/io/nsLocalFileCommon.h | 4 xpcom/io/nsLocalFileUnix.cpp | 1 55 files changed, 6965 insertions(+), 3843 deletions(-) diff -Nru firefox-esr-128.11.0esr/CLOBBER firefox-esr-128.12.0esr/CLOBBER --- firefox-esr-128.11.0esr/CLOBBER 2025-05-19 14:57:50.000000000 +0000 +++ firefox-esr-128.12.0esr/CLOBBER 2025-06-17 01:36:33.000000000 +0000 @@ -22,4 +22,4 @@ # changes to stick? As of bug 928195, this shouldn't be necessary! Please # don't change CLOBBER for WebIDL changes any more. -Merge day clobber 2025-04-28 \ No newline at end of file +Merge day clobber 2025-05-26 \ No newline at end of file diff -Nru firefox-esr-128.11.0esr/browser/actors/SearchSERPTelemetryChild.sys.mjs firefox-esr-128.12.0esr/browser/actors/SearchSERPTelemetryChild.sys.mjs --- firefox-esr-128.11.0esr/browser/actors/SearchSERPTelemetryChild.sys.mjs 2025-05-19 14:57:50.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/actors/SearchSERPTelemetryChild.sys.mjs 2025-06-17 01:36:33.000000000 +0000 @@ -502,25 +502,12 @@ return ""; } - // Avoid extracting or fixing up Javascript URLs. - if (href.startsWith("javascript")) { + let url = URL.parse(href, origin); + if (!url || (url.protocol !== "https:" && url.protocol !== "http:")) { return ""; } - // Hrefs can be relative. - if (!href.startsWith("https://") && !href.startsWith("http://")) { - href = origin + href; - } - // Per Bug 376844, apostrophes in query params are escaped, and thus, are - // percent-encoded by the time they are observed in the network. Even - // though it's more comprehensive, we avoid using newURI because its more - // expensive and conversions should be the exception. - // e.g. /path'?q=Mozilla's -> /path'?q=Mozilla%27s - let arr = href.split("?"); - if (arr.length == 2 && arr[1].includes("'")) { - href = arr[0] + "?" + arr[1].replaceAll("'", "%27"); - } - return href; + return url.href; } /** diff -Nru firefox-esr-128.11.0esr/browser/config/version.txt firefox-esr-128.12.0esr/browser/config/version.txt --- firefox-esr-128.11.0esr/browser/config/version.txt 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/config/version.txt 2025-06-17 01:36:34.000000000 +0000 @@ -1 +1 @@ -128.11.0 +128.12.0 diff -Nru firefox-esr-128.11.0esr/browser/config/version_display.txt firefox-esr-128.12.0esr/browser/config/version_display.txt --- firefox-esr-128.11.0esr/browser/config/version_display.txt 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/config/version_display.txt 2025-06-17 01:36:34.000000000 +0000 @@ -1 +1 @@ -128.11.0esr +128.12.0esr diff -Nru firefox-esr-128.11.0esr/browser/extensions/webcompat/manifest.json firefox-esr-128.12.0esr/browser/extensions/webcompat/manifest.json --- firefox-esr-128.11.0esr/browser/extensions/webcompat/manifest.json 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/extensions/webcompat/manifest.json 2025-06-17 01:36:34.000000000 +0000 @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Web Compatibility Interventions", "description": "Urgent post-release fixes for web compatibility.", - "version": "133.4.0", + "version": "133.5.0", "browser_specific_settings": { "gecko": { "id": "webcompat@mozilla.org", diff -Nru firefox-esr-128.11.0esr/browser/extensions/webcompat/moz.build firefox-esr-128.12.0esr/browser/extensions/webcompat/moz.build --- firefox-esr-128.11.0esr/browser/extensions/webcompat/moz.build 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/extensions/webcompat/moz.build 2025-06-17 01:36:34.000000000 +0000 @@ -202,7 +202,10 @@ "components.conf", ] -BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"] +BROWSER_CHROME_MANIFESTS += [ + "tests/browser/browser.toml", + "tests/browser/browser_uuid_migration.toml", +] with Files("**"): BUG_COMPONENT = ("Web Compatibility", "Tooling & Investigations") diff -Nru firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_aboutcompat.js firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_aboutcompat.js --- firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_aboutcompat.js 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_aboutcompat.js 2025-06-17 01:36:34.000000000 +0000 @@ -8,6 +8,12 @@ }); await SpecialPowers.spawn(tab.linkedBrowser, [], async function () { + is( + content.origin, + "moz-extension://9a310967-e580-48bf-b3e8-4eafebbc122d", + "Expected origin of about:compat" + ); + await ContentTaskUtils.waitForCondition( () => content.document.querySelector("#overrides tr[data-id]"), "UA overrides are listed" diff -Nru firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.js firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.js --- firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.js 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.js 2025-06-17 01:36:34.000000000 +0000 @@ -0,0 +1,33 @@ +"use strict"; + +// Sanity check: The setup in the toml file is effective at fixing the uuid +// for at least one extension. +add_task(async function test_sanity_check_uuid_fixed_by_pref() { + is( + WebExtensionPolicy.getByID("pictureinpicture@mozilla.org") + .mozExtensionHostname, + "f00df00d-2222-f00d-8888-012345678900", + "Non-webcompat uuid is fixed by pref in browser_uuid_migration.toml" + ); +}); + +add_task(async function test_webcompat_migrates_existing_uuid_pref() { + const expectedWebCompatUUID = "9a310967-e580-48bf-b3e8-4eafebbc122d"; + Assert.notEqual( + expectedWebCompatUUID, + "f00df00d-1111-f00d-8888-012345678900", + "Sanity check: Expected UUID differs from browser_uuid_migration.toml" + ); + + is( + WebExtensionPolicy.getByID("webcompat@mozilla.org").mozExtensionHostname, + expectedWebCompatUUID, + "webcompat add-on has fixed UUID" + ); + + let uuids = Services.prefs.getStringPref("extensions.webextensions.uuids"); + ok( + uuids.includes(`"webcompat@mozilla.org":"${expectedWebCompatUUID}"`), + `Pref value (${uuids}) should contain: ${expectedWebCompatUUID}` + ); +}); diff -Nru firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.toml firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.toml --- firefox-esr-128.11.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.toml 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/browser/extensions/webcompat/tests/browser/browser_uuid_migration.toml 2025-06-17 01:36:34.000000000 +0000 @@ -0,0 +1,7 @@ +[DEFAULT] +tags = "webextensions" +# Must be set in [DEFAULT] to ensure that the pref is set before the browser starts. +# We choose two built-in extensions here: webcompat and another built-in extension. +prefs = ['extensions.webextensions.uuids={"webcompat@mozilla.org":"f00df00d-1111-f00d-8888-012345678900","pictureinpicture@mozilla.org":"f00df00d-2222-f00d-8888-012345678900"}'] + +["browser_uuid_migration.js"] diff -Nru firefox-esr-128.11.0esr/config/milestone.txt firefox-esr-128.12.0esr/config/milestone.txt --- firefox-esr-128.11.0esr/config/milestone.txt 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/config/milestone.txt 2025-06-17 01:36:34.000000000 +0000 @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -128.11.0 +128.12.0 diff -Nru firefox-esr-128.11.0esr/debian/changelog firefox-esr-128.12.0esr/debian/changelog --- firefox-esr-128.11.0esr/debian/changelog 2025-05-28 01:55:09.000000000 +0000 +++ firefox-esr-128.12.0esr/debian/changelog 2025-06-24 21:15:00.000000000 +0000 @@ -1,3 +1,11 @@ +firefox-esr (128.12.0esr-1~deb12u1) bookworm-security; urgency=medium + + * New upstream release. + * Fixes for mfsa2025-53, also known as: + CVE-2025-6424, CVE-2025-6425, CVE-2025-6429, CVE-2025-6430. + + -- Mike Hommey Wed, 25 Jun 2025 06:15:00 +0900 + firefox-esr (128.11.0esr-1~deb12u1) bookworm-security; urgency=medium * New upstream release. diff -Nru firefox-esr-128.11.0esr/debian/patches/fixes/Apply-wasm2c-upstream-fix-for-clang-targetting-mips.patch firefox-esr-128.12.0esr/debian/patches/fixes/Apply-wasm2c-upstream-fix-for-clang-targetting-mips.patch --- firefox-esr-128.11.0esr/debian/patches/fixes/Apply-wasm2c-upstream-fix-for-clang-targetting-mips.patch 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/debian/patches/fixes/Apply-wasm2c-upstream-fix-for-clang-targetting-mips.patch 2025-06-24 21:15:00.000000000 +0000 @@ -0,0 +1,141 @@ +From: Mike Hommey +Date: Wed, 22 Jan 2025 13:03:01 +0900 +Subject: Apply wasm2c upstream fix for clang targetting mips + +https://github.com/WebAssembly/wabt/pull/2274 +--- + .../wasm2c_simd_source_declarations.cc | 4 +- + .../prebuilt/wasm2c_source_declarations.cc | 56 ++++++++++++------- + 2 files changed, 38 insertions(+), 22 deletions(-) + +diff --git a/third_party/wasm2c/src/prebuilt/wasm2c_simd_source_declarations.cc b/third_party/wasm2c/src/prebuilt/wasm2c_simd_source_declarations.cc +index cc8bd8c..bbd10ee 100644 +--- a/third_party/wasm2c/src/prebuilt/wasm2c_simd_source_declarations.cc ++++ b/third_party/wasm2c/src/prebuilt/wasm2c_simd_source_declarations.cc +@@ -1,6 +1,6 @@ +-const char* s_simd_source_declarations = R"w2c_template(#ifdef __x86_64__ ++const char* s_simd_source_declarations = R"w2c_template(#if defined(__GNUC__) && defined(__x86_64__) + )w2c_template" +-R"w2c_template(#define SIMD_FORCE_READ(var) wasm_asm("" ::"x"(var)); ++R"w2c_template(#define SIMD_FORCE_READ(var) __asm__("" ::"x"(var)); + )w2c_template" + R"w2c_template(#else + )w2c_template" +diff --git a/third_party/wasm2c/src/prebuilt/wasm2c_source_declarations.cc b/third_party/wasm2c/src/prebuilt/wasm2c_source_declarations.cc +index ca54177..5b07679 100644 +--- a/third_party/wasm2c/src/prebuilt/wasm2c_source_declarations.cc ++++ b/third_party/wasm2c/src/prebuilt/wasm2c_source_declarations.cc +@@ -88,11 +88,27 @@ R"w2c_template(#endif + R"w2c_template( + #ifdef __GNUC__ + )w2c_template" +-R"w2c_template(#define wasm_asm __asm__ ++R"w2c_template(#define FORCE_READ_INT(var) __asm__("" ::"r"(var)); ++)w2c_template" ++R"w2c_template(// Clang on Mips requires "f" constraints on floats ++)w2c_template" ++R"w2c_template(#if defined(__clang__) && \ ++)w2c_template" ++R"w2c_template( (defined(mips) || defined(__mips__) || defined(__mips)) ++)w2c_template" ++R"w2c_template(#define FORCE_READ_FLOAT(var) __asm__("" ::"f"(var)); ++)w2c_template" ++R"w2c_template(#else ++)w2c_template" ++R"w2c_template(#define FORCE_READ_FLOAT(var) __asm__("" ::"r"(var)); ++)w2c_template" ++R"w2c_template(#endif + )w2c_template" + R"w2c_template(#else + )w2c_template" +-R"w2c_template(#define wasm_asm(X) ++R"w2c_template(#define FORCE_READ_INT(var) ++)w2c_template" ++R"w2c_template(#define FORCE_READ_FLOAT(var) + )w2c_template" + R"w2c_template(#endif + )w2c_template" +@@ -135,7 +151,7 @@ R"w2c_template( load_data(&(m.data[m.size - o - s]), i, s); \ + )w2c_template" + R"w2c_template( } while (0) + )w2c_template" +-R"w2c_template(#define DEFINE_LOAD(name, t1, t2, t3) \ ++R"w2c_template(#define DEFINE_LOAD(name, t1, t2, t3, force_read) \ + )w2c_template" + R"w2c_template( static inline t3 name(wasm_rt_memory_t* mem, u64 addr) { \ + )w2c_template" +@@ -147,7 +163,7 @@ R"w2c_template( wasm_rt_memcpy(&result, &mem->data[mem->size - addr - sizeof( + )w2c_template" + R"w2c_template( sizeof(t1)); \ + )w2c_template" +-R"w2c_template( wasm_asm("" ::"r"(result)); \ ++R"w2c_template( force_read(result); \ + )w2c_template" + R"w2c_template( return (t3)(t2)result; \ + )w2c_template" +@@ -192,7 +208,7 @@ R"w2c_template( load_data(&(m.data[o]), i, s); \ + )w2c_template" + R"w2c_template( } while (0) + )w2c_template" +-R"w2c_template(#define DEFINE_LOAD(name, t1, t2, t3) \ ++R"w2c_template(#define DEFINE_LOAD(name, t1, t2, t3, force_read) \ + )w2c_template" + R"w2c_template( static inline t3 name(wasm_rt_memory_t* mem, u64 addr) { \ + )w2c_template" +@@ -202,7 +218,7 @@ R"w2c_template( t1 result; \ + )w2c_template" + R"w2c_template( wasm_rt_memcpy(&result, &mem->data[addr], sizeof(t1)); \ + )w2c_template" +-R"w2c_template( wasm_asm("" ::"r"(result)); \ ++R"w2c_template( force_read(result); \ + )w2c_template" + R"w2c_template( return (t3)(t2)result; \ + )w2c_template" +@@ -224,33 +240,33 @@ R"w2c_template( } + R"w2c_template(#endif + )w2c_template" + R"w2c_template( +-DEFINE_LOAD(i32_load, u32, u32, u32) ++DEFINE_LOAD(i32_load, u32, u32, u32, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load, u64, u64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load, u64, u64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(f32_load, f32, f32, f32) ++R"w2c_template(DEFINE_LOAD(f32_load, f32, f32, f32, FORCE_READ_FLOAT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(f64_load, f64, f64, f64) ++R"w2c_template(DEFINE_LOAD(f64_load, f64, f64, f64, FORCE_READ_FLOAT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i32_load8_s, s8, s32, u32) ++R"w2c_template(DEFINE_LOAD(i32_load8_s, s8, s32, u32, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load8_s, s8, s64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load8_s, s8, s64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i32_load8_u, u8, u32, u32) ++R"w2c_template(DEFINE_LOAD(i32_load8_u, u8, u32, u32, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load8_u, u8, u64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load8_u, u8, u64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i32_load16_s, s16, s32, u32) ++R"w2c_template(DEFINE_LOAD(i32_load16_s, s16, s32, u32, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load16_s, s16, s64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load16_s, s16, s64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i32_load16_u, u16, u32, u32) ++R"w2c_template(DEFINE_LOAD(i32_load16_u, u16, u32, u32, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load16_u, u16, u64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load16_u, u16, u64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load32_s, s32, s64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load32_s, s32, s64, u64, FORCE_READ_INT) + )w2c_template" +-R"w2c_template(DEFINE_LOAD(i64_load32_u, u32, u64, u64) ++R"w2c_template(DEFINE_LOAD(i64_load32_u, u32, u64, u64, FORCE_READ_INT) + )w2c_template" + R"w2c_template(DEFINE_STORE(i32_store, u32, u32) + )w2c_template" diff -Nru firefox-esr-128.11.0esr/docshell/base/nsDocShell.cpp firefox-esr-128.12.0esr/docshell/base/nsDocShell.cpp --- firefox-esr-128.11.0esr/docshell/base/nsDocShell.cpp 2025-05-19 14:57:52.000000000 +0000 +++ firefox-esr-128.12.0esr/docshell/base/nsDocShell.cpp 2025-06-17 01:36:35.000000000 +0000 @@ -10564,11 +10564,14 @@ openFlags |= nsIURILoader::DONT_RETARGET; } - // Unless the pref is set, object/embed loads always specify DONT_RETARGET. - // See bug 1868001 for details. - if (!aIsDocumentLoad && - !StaticPrefs::dom_navigation_object_embed_allow_retargeting()) { - openFlags |= nsIURILoader::DONT_RETARGET; + if (!aIsDocumentLoad) { + openFlags |= nsIURILoader::IS_OBJECT_EMBED; + + // Unless the pref is set, object/embed loads always specify DONT_RETARGET. + // See bug 1868001 for details. + if (!StaticPrefs::dom_navigation_object_embed_allow_retargeting()) { + openFlags |= nsIURILoader::DONT_RETARGET; + } } return openFlags; @@ -10659,8 +10662,14 @@ // ClientInfo, so we just need to allocate a corresponding ClientSource. CreateReservedSourceIfNeeded(channel, GetMainThreadSerialEventTarget()); + uint32_t documentOpenInfoFlags = nsIURILoader::DONT_RETARGET; + if (loadInfo->GetExternalContentPolicyType() == + ExtContentPolicy::TYPE_OBJECT) { + documentOpenInfoFlags |= nsIURILoader::IS_OBJECT_EMBED; + } + RefPtr loader = - new nsDocumentOpenInfo(this, nsIURILoader::DONT_RETARGET, nullptr); + new nsDocumentOpenInfo(this, documentOpenInfoFlags, nullptr); channel->SetLoadGroup(mLoadGroup); MOZ_ALWAYS_SUCCEEDS(loader->Prepare()); diff -Nru firefox-esr-128.11.0esr/dom/base/nsObjectLoadingContent.cpp firefox-esr-128.12.0esr/dom/base/nsObjectLoadingContent.cpp --- firefox-esr-128.11.0esr/dom/base/nsObjectLoadingContent.cpp 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/nsObjectLoadingContent.cpp 2025-06-17 01:36:34.000000000 +0000 @@ -540,8 +540,8 @@ } // See if requester is planning on using the JS API. - nsAutoCString uri; - nsresult rv = aURI->GetSpec(uri); + nsAutoCString prePath; + nsresult rv = aURI->GetPrePath(prePath); if (NS_FAILED(rv)) { return; } @@ -552,10 +552,10 @@ // URLs, convert the parameters to query in order to make the video load // correctly as an iframe. In either case, warn about it in the // developer console. - int32_t ampIndex = uri.FindChar('&', 0); + int32_t ampIndex = path.FindChar('&', 0); bool replaceQuery = false; if (ampIndex != -1) { - int32_t qmIndex = uri.FindChar('?', 0); + int32_t qmIndex = path.FindChar('?', 0); if (qmIndex == -1 || qmIndex > ampIndex) { replaceQuery = true; } @@ -571,19 +571,21 @@ return; } - nsAutoString utf16OldURI = NS_ConvertUTF8toUTF16(uri); + NS_ConvertUTF8toUTF16 utf16OldURI(prePath); + AppendUTF8toUTF16(path, utf16OldURI); // If we need to convert the URL, it means an ampersand comes first. // Use the index we found earlier. if (replaceQuery) { // Replace question marks with ampersands. - uri.ReplaceChar('?', '&'); + path.ReplaceChar('?', '&'); // Replace the first ampersand with a question mark. - uri.SetCharAt('?', ampIndex); + path.SetCharAt('?', ampIndex); } // Switch out video access url formats, which should possibly allow HTML5 // video loading. - uri.ReplaceSubstring("/v/"_ns, "/embed/"_ns); - nsAutoString utf16URI = NS_ConvertUTF8toUTF16(uri); + path.ReplaceSubstring("/v/"_ns, "/embed/"_ns); + NS_ConvertUTF8toUTF16 utf16URI(prePath); + AppendUTF8toUTF16(path, utf16URI); rv = nsContentUtils::NewURIWithDocumentCharset(aRewrittenURI, utf16URI, doc, aBaseURI); if (NS_FAILED(rv)) { diff -Nru firefox-esr-128.11.0esr/dom/base/test/browser.toml firefox-esr-128.12.0esr/dom/base/test/browser.toml --- firefox-esr-128.11.0esr/dom/base/test/browser.toml 2025-05-19 14:57:51.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/browser.toml 2025-06-17 01:36:35.000000000 +0000 @@ -119,6 +119,12 @@ "file_pdf_object_attachment.html", "file_pdf_attachment.pdf", "file_pdf_attachment.pdf^headers^", + "file_svg_object_attachment.html", + "file_svg_attachment.svg", + "file_svg_attachment.svg^headers^", + "file_html_object_attachment.html", + "file_html_attachment.html", + "file_html_attachment.html^headers^", ] ["browser_outline_refocus.js"] diff -Nru firefox-esr-128.11.0esr/dom/base/test/browser_object_attachment.js firefox-esr-128.12.0esr/dom/base/test/browser_object_attachment.js --- firefox-esr-128.11.0esr/dom/base/test/browser_object_attachment.js 2025-05-19 14:57:52.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/browser_object_attachment.js 2025-06-17 01:36:35.000000000 +0000 @@ -7,29 +7,79 @@ "https://example.com" ); -add_task(async function test_pdf_object_attachment() { - await SpecialPowers.pushPrefEnv({ - set: [["dom.navigation.object_embed.allow_retargeting", false]], - }); +async function loadAndCheck(file, displayInline, downloadFile = null) { + // Get the downloads list and add a view to listen for a download to be added. + // We do this even if we aren't going to download anything, so we notice if a + // download is started. + let download; + let downloadList = await Downloads.getList(Downloads.ALL); + let downloadView = { + async onDownloadAdded(aDownload) { + info("download added"); + ok(downloadFile, "Should be expecting a download"); + download = aDownload; + + // Clean up the download from the list + downloadList.remove(aDownload); + await aDownload.finalize(true); + }, + }; + await downloadList.addView(downloadView); + // Open the new URL and perform the load. await BrowserTestUtils.withNewTab( - `${httpsTestRoot}/file_pdf_object_attachment.html`, + `${httpsTestRoot}/${file}`, async browser => { - is( - browser.browsingContext.children.length, - 1, - "Should have a child frame" + // Do this check using waitForCondition, as on ESR, we temporarily create + // an extra subdocument which should be quickly removed. + await TestUtils.waitForCondition( + () => + browser.browsingContext.children.length == (displayInline ? 1 : 0), + `Should ${displayInline ? "" : "not "}have a child frame` + ); + + await SpecialPowers.spawn( + browser, + [displayInline], + async displayInline => { + let obj = content.document.querySelector("object"); + is( + obj.displayedType, + displayInline + ? Ci.nsIObjectLoadingContent.TYPE_DOCUMENT + : Ci.nsIObjectLoadingContent.TYPE_FALLBACK, + `should be displaying TYPE_${ + displayInline ? "DOCUMENT" : "FALLBACK" + }` + ); + } ); - await SpecialPowers.spawn(browser, [], async () => { - let obj = content.document.querySelector("object"); - is( - obj.displayedType, - Ci.nsIObjectLoadingContent.TYPE_DOCUMENT, - "should be displaying TYPE_DOCUMENT" - ); - }); } ); + + // Clean up our download observer. + await downloadList.removeView(downloadView); + if (downloadFile) { + is( + download.source.url, + `${httpsTestRoot}/${downloadFile}`, + "Download has the correct source" + ); + } else { + is(download, undefined, "Should not have seen a download"); + } +} + +add_task(async function test_pdf_object_attachment() { + await SpecialPowers.pushPrefEnv({ + set: [ + ["dom.navigation.object_embed.allow_retargeting", false], + ["browser.download.open_pdf_attachments_inline", false], + ], + }); + + // PDF attachment should display inline. + await loadAndCheck("file_pdf_object_attachment.html", true); }); add_task(async function test_img_object_attachment() { @@ -37,132 +87,71 @@ set: [["dom.navigation.object_embed.allow_retargeting", false]], }); - await BrowserTestUtils.withNewTab( - `${httpsTestRoot}/file_img_object_attachment.html`, - async browser => { - is( - browser.browsingContext.children.length, - 1, - "Should have a child frame" - ); - await SpecialPowers.spawn(browser, [], async () => { - let obj = content.document.querySelector("object"); - is( - obj.displayedType, - Ci.nsIObjectLoadingContent.TYPE_DOCUMENT, - "should be displaying TYPE_DOCUMENT" - ); - }); - } - ); + // Image attachment should display inline. + await loadAndCheck("file_img_object_attachment.html", true); }); -async function waitForDownload() { - // Get the downloads list and add a view to listen for a download to be added. - let downloadList = await Downloads.getList(Downloads.ALL); +add_task(async function test_svg_object_attachment() { + await SpecialPowers.pushPrefEnv({ + set: [["dom.navigation.object_embed.allow_retargeting", false]], + }); - // Wait for a single download - let downloadView; - let finishedAllDownloads = new Promise(resolve => { - downloadView = { - onDownloadAdded(aDownload) { - info("download added"); - resolve(aDownload); - }, - }; + // SVG attachment should fail to load. + await loadAndCheck("file_svg_object_attachment.html", false); +}); + +add_task(async function test_html_object_attachment() { + await SpecialPowers.pushPrefEnv({ + set: [["dom.navigation.object_embed.allow_retargeting", false]], }); - await downloadList.addView(downloadView); - let download = await finishedAllDownloads; - await downloadList.removeView(downloadView); - // Clean up the download from the list. - await downloadList.remove(download); - await download.finalize(true); + // HTML attachment should fail to load. + await loadAndCheck("file_html_object_attachment.html", false); +}); + +add_task(async function test_pdf_object_attachment_allow_retargeting() { + await SpecialPowers.pushPrefEnv({ + set: [ + ["dom.navigation.object_embed.allow_retargeting", true], + ["browser.download.open_pdf_attachments_inline", false], + ], + }); - // Return the download - return download; -} + // Even if `allow_retargeting` is enabled, we always display PDFs inline. + await loadAndCheck("file_pdf_object_attachment.html", true); +}); -add_task(async function test_pdf_object_attachment_download() { +add_task(async function test_img_object_attachment_allow_retargeting() { await SpecialPowers.pushPrefEnv({ set: [["dom.navigation.object_embed.allow_retargeting", true]], }); - // Set the behaviour to save pdfs to disk and not handle internally, so we - // don't end up with extra tabs after the test. - var gMimeSvc = Cc["@mozilla.org/mime;1"].getService(Ci.nsIMIMEService); - var gHandlerSvc = Cc["@mozilla.org/uriloader/handler-service;1"].getService( - Ci.nsIHandlerService - ); - const mimeInfo = gMimeSvc.getFromTypeAndExtension("application/pdf", "pdf"); - let previousAction = mimeInfo.preferredAction; - mimeInfo.preferredAction = Ci.nsIHandlerInfo.saveToDisk; - gHandlerSvc.store(mimeInfo); - registerCleanupFunction(() => { - mimeInfo.preferredAction = previousAction; - gHandlerSvc.store(mimeInfo); - }); + // Even if `allow_retargeting` is enabled, we always display images inline. + await loadAndCheck("file_img_object_attachment.html", true); +}); - // Start listening for the download before opening the new tab. - let downloadPromise = waitForDownload(); - await BrowserTestUtils.withNewTab( - `${httpsTestRoot}/file_pdf_object_attachment.html`, - async browser => { - let download = await downloadPromise; - is( - download.source.url, - `${httpsTestRoot}/file_pdf_attachment.pdf`, - "download should be the pdf" - ); +add_task(async function test_svg_object_attachment_allow_retargeting() { + await SpecialPowers.pushPrefEnv({ + set: [["dom.navigation.object_embed.allow_retargeting", true]], + }); - await SpecialPowers.spawn(browser, [], async () => { - let obj = content.document.querySelector("object"); - is( - obj.displayedType, - Ci.nsIObjectLoadingContent.TYPE_FALLBACK, - "should be displaying TYPE_FALLBACK" - ); - }); - } + // SVG attachments are downloaded if allow_retargeting is set. + await loadAndCheck( + "file_svg_object_attachment.html", + false, + "file_svg_attachment.svg" ); }); -add_task(async function test_img_object_attachment_download() { - // NOTE: This is testing our current behaviour here as of bug 1868001 (which - // is to download an image with `Content-Disposition: attachment` embedded - // within an object or embed element). - // - // Other browsers ignore the `Content-Disposition: attachment` header when - // loading images within object or embed element as-of december 2023, as - // we did prior to the changes in bug 1595491. - // - // If this turns out to be a web-compat issue, we may want to introduce - // special handling to ignore content-disposition when loading images within - // an object or embed element. +add_task(async function test_html_object_attachment_allow_retargeting() { await SpecialPowers.pushPrefEnv({ set: [["dom.navigation.object_embed.allow_retargeting", true]], }); - // Start listening for the download before opening the new tab. - let downloadPromise = waitForDownload(); - await BrowserTestUtils.withNewTab( - `${httpsTestRoot}/file_img_object_attachment.html`, - async browser => { - let download = await downloadPromise; - is( - download.source.url, - `${httpsTestRoot}/file_img_attachment.jpg`, - "download should be the jpg" - ); - - await SpecialPowers.spawn(browser, [], async () => { - let obj = content.document.querySelector("object"); - is( - obj.displayedType, - Ci.nsIObjectLoadingContent.TYPE_FALLBACK, - "should be displaying TYPE_FALLBACK" - ); - }); - } + // HTML attachments are downloaded if allow_retargeting is set. + await loadAndCheck( + "file_html_object_attachment.html", + false, + "file_html_attachment.html" ); }); diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_html_attachment.html firefox-esr-128.12.0esr/dom/base/test/file_html_attachment.html --- firefox-esr-128.11.0esr/dom/base/test/file_html_attachment.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_html_attachment.html 2025-06-17 01:36:35.000000000 +0000 @@ -0,0 +1,6 @@ + + + +

Hello, World!

+ + diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_html_attachment.html^headers^ firefox-esr-128.12.0esr/dom/base/test/file_html_attachment.html^headers^ --- firefox-esr-128.11.0esr/dom/base/test/file_html_attachment.html^headers^ 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_html_attachment.html^headers^ 2025-06-17 01:36:35.000000000 +0000 @@ -0,0 +1,2 @@ +Content-Type: text/html +Content-Disposition: attachment diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_html_object_attachment.html firefox-esr-128.12.0esr/dom/base/test/file_html_object_attachment.html --- firefox-esr-128.11.0esr/dom/base/test/file_html_object_attachment.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_html_object_attachment.html 2025-06-17 01:36:35.000000000 +0000 @@ -0,0 +1,6 @@ + + + + fallback + + diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_svg_attachment.svg firefox-esr-128.12.0esr/dom/base/test/file_svg_attachment.svg --- firefox-esr-128.11.0esr/dom/base/test/file_svg_attachment.svg 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_svg_attachment.svg 2025-06-17 01:36:35.000000000 +0000 @@ -0,0 +1,3 @@ + + + diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_svg_attachment.svg^headers^ firefox-esr-128.12.0esr/dom/base/test/file_svg_attachment.svg^headers^ --- firefox-esr-128.11.0esr/dom/base/test/file_svg_attachment.svg^headers^ 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_svg_attachment.svg^headers^ 2025-06-17 01:36:35.000000000 +0000 @@ -0,0 +1,2 @@ +Content-Type: text/svg+xml +Content-Disposition: attachment diff -Nru firefox-esr-128.11.0esr/dom/base/test/file_svg_object_attachment.html firefox-esr-128.12.0esr/dom/base/test/file_svg_object_attachment.html --- firefox-esr-128.11.0esr/dom/base/test/file_svg_object_attachment.html 1970-01-01 00:00:00.000000000 +0000 +++ firefox-esr-128.12.0esr/dom/base/test/file_svg_object_attachment.html 2025-06-17 01:36:34.000000000 +0000 @@ -0,0 +1,6 @@ + + + + fallback + + diff -Nru firefox-esr-128.11.0esr/layout/style/FontFaceSet.cpp firefox-esr-128.12.0esr/layout/style/FontFaceSet.cpp --- firefox-esr-128.11.0esr/layout/style/FontFaceSet.cpp 2025-05-19 14:57:58.000000000 +0000 +++ firefox-esr-128.12.0esr/layout/style/FontFaceSet.cpp 2025-06-17 01:36:41.000000000 +0000 @@ -142,10 +142,17 @@ nsTArray> promises; - nsTArray faces; - mImpl->FindMatchingFontFaces(aFont, aText, faces, aRv); - if (aRv.Failed()) { - return nullptr; + nsTArray> faces; + { + nsTArray weakFaces; + mImpl->FindMatchingFontFaces(aFont, aText, weakFaces, aRv); + if (aRv.Failed()) { + return nullptr; + } + if (!faces.AppendElements(weakFaces, fallible)) { + aRv.Throw(NS_ERROR_FAILURE); + return nullptr; + } } for (FontFace* f : faces) { diff -Nru firefox-esr-128.11.0esr/netwerk/cache2/CacheFile.h firefox-esr-128.12.0esr/netwerk/cache2/CacheFile.h --- firefox-esr-128.11.0esr/netwerk/cache2/CacheFile.h 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/netwerk/cache2/CacheFile.h 2025-06-17 01:36:42.000000000 +0000 @@ -30,12 +30,12 @@ class CacheFileLock; }; -#define CACHEFILELISTENER_IID \ - { /* 95e7f284-84ba-48f9-b1fc-3a7336b4c33c */ \ - 0x95e7f284, 0x84ba, 0x48f9, { \ - 0xb1, 0xfc, 0x3a, 0x73, 0x36, 0xb4, 0xc3, 0x3c \ - } \ - } +#define CACHEFILELISTENER_IID \ + {/* 95e7f284-84ba-48f9-b1fc-3a7336b4c33c */ \ + 0x95e7f284, \ + 0x84ba, \ + 0x48f9, \ + {0xb1, 0xfc, 0x3a, 0x73, 0x36, 0xb4, 0xc3, 0x3c}} class CacheFileListener : public nsISupports { public: diff -Nru firefox-esr-128.11.0esr/netwerk/cache2/CacheFileMetadata.cpp firefox-esr-128.12.0esr/netwerk/cache2/CacheFileMetadata.cpp --- firefox-esr-128.11.0esr/netwerk/cache2/CacheFileMetadata.cpp 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/netwerk/cache2/CacheFileMetadata.cpp 2025-06-17 01:36:42.000000000 +0000 @@ -354,6 +354,12 @@ return NS_OK; } +void CacheFileMetadata::HandleCorruptMetaData() const { + if (mHandle) { + CacheFileIOManager::DoomFile(mHandle, nullptr); + } +} + const char* CacheFileMetadata::GetElement(const char* aKey) { const char* data = mBuf; const char* limit = mBuf + mElementsSize; @@ -361,19 +367,20 @@ while (data != limit) { size_t maxLen = limit - data; size_t keyLen = strnlen(data, maxLen); - MOZ_RELEASE_ASSERT(keyLen != maxLen, - "Metadata elements corrupted. Key " - "isn't null terminated!"); - MOZ_RELEASE_ASSERT(keyLen + 1 != maxLen, - "Metadata elements corrupted. " - "There is no value for the key!"); + + if (keyLen == maxLen || // Key isn't null terminated! + keyLen + 1 == maxLen) { // There is no value for the key! + HandleCorruptMetaData(); + return nullptr; + } const char* value = data + keyLen + 1; maxLen = limit - value; size_t valueLen = strnlen(value, maxLen); - MOZ_RELEASE_ASSERT(valueLen != maxLen, - "Metadata elements corrupted. Value " - "isn't null terminated!"); + if (valueLen == maxLen) { // Value isn't null terminated + HandleCorruptMetaData(); + return nullptr; + } if (strcmp(data, aKey) == 0) { LOG(("CacheFileMetadata::GetElement() - Key found [this=%p, key=%s]", diff -Nru firefox-esr-128.11.0esr/netwerk/cache2/CacheFileMetadata.h firefox-esr-128.12.0esr/netwerk/cache2/CacheFileMetadata.h --- firefox-esr-128.11.0esr/netwerk/cache2/CacheFileMetadata.h 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/netwerk/cache2/CacheFileMetadata.h 2025-06-17 01:36:42.000000000 +0000 @@ -115,12 +115,12 @@ #pragma pack(pop) -#define CACHEFILEMETADATALISTENER_IID \ - { /* a9e36125-3f01-4020-9540-9dafa8d31ba7 */ \ - 0xa9e36125, 0x3f01, 0x4020, { \ - 0x95, 0x40, 0x9d, 0xaf, 0xa8, 0xd3, 0x1b, 0xa7 \ - } \ - } +#define CACHEFILEMETADATALISTENER_IID \ + {/* a9e36125-3f01-4020-9540-9dafa8d31ba7 */ \ + 0xa9e36125, \ + 0x3f01, \ + 0x4020, \ + {0x95, 0x40, 0x9d, 0xaf, 0xa8, 0xd3, 0x1b, 0xa7}} class CacheFileMetadataListener : public nsISupports { public: @@ -162,6 +162,7 @@ bool Pinned() const { return !!(mMetaHdr.mFlags & kCacheEntryIsPinned); } const char* GetElement(const char* aKey); + void HandleCorruptMetaData() const; nsresult SetElement(const char* aKey, const char* aValue); void Visit(nsICacheEntryMetaDataVisitor* aVisitor); diff -Nru firefox-esr-128.11.0esr/netwerk/dns/effective_tld_names.dat firefox-esr-128.12.0esr/netwerk/dns/effective_tld_names.dat --- firefox-esr-128.11.0esr/netwerk/dns/effective_tld_names.dat 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/netwerk/dns/effective_tld_names.dat 2025-06-17 01:36:42.000000000 +0000 @@ -5,8 +5,8 @@ // Please pull this list from, and only from https://publicsuffix.org/list/public_suffix_list.dat, // rather than any other VCS sites. Pulling from any other URL is not guaranteed to be supported. -// VERSION: 2025-05-17_19-44-00_UTC -// COMMIT: d4f072b4db3db5c0bd6b144b54eba1802b763c96 +// VERSION: 2025-06-12_21-09-57_UTC +// COMMIT: a01fe523d7359fc523d8b164bcb16834a4f2d8ba // Instructions on pulling and using this list can be found at https://publicsuffix.org/list/. @@ -976,20 +976,59 @@ tm.dz // ec : https://www.nic.ec/ -// Submitted by registry +// Submitted by registry ec +abg.ec +adm.ec +agron.ec +arqt.ec +art.ec +bar.ec +chef.ec com.ec +cont.ec +cpa.ec +cue.ec +dent.ec +dgn.ec +disco.ec +doc.ec edu.ec +eng.ec +esm.ec fin.ec +fot.ec +gal.ec gob.ec gov.ec +gye.ec +ibr.ec info.ec k12.ec +lat.ec +loj.ec med.ec mil.ec +mktg.ec +mon.ec net.ec +ntr.ec +odont.ec org.ec pro.ec +prof.ec +psic.ec +psiq.ec +pub.ec +rio.ec +rrpp.ec +sal.ec +tech.ec +tul.ec +tur.ec +uio.ec +vet.ec +xxx.ec // edu : https://www.iana.org/domains/root/db/edu.html edu @@ -1137,10 +1176,12 @@ // Although domains directly at second level are not possible at the moment, // they have been possible for some time and may come back. gh +biz.gh com.gh edu.gh gov.gh mil.gh +net.gh org.gh // gi : http://www.nic.gi/rules.html @@ -1344,6 +1385,7 @@ co.id desa.id go.id +kop.id mil.id my.id net.id @@ -6750,7 +6792,7 @@ // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-05-17T15:16:58Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-06-07T15:17:54Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -8528,6 +8570,10 @@ // https://www.iana.org/domains/root/db/hot.html hot +// hotel : HOTEL Top-Level-Domain S.a.r.l +// https://www.iana.org/domains/root/db/hotel.html +hotel + // hotels : Booking.com B.V. // https://www.iana.org/domains/root/db/hotels.html hotels @@ -11260,9 +11306,10 @@ aem.live hlx.live adobeaemcloud.net +aem.network aem.page hlx.page -hlx3.page +aem.reviews // Adobe Developer Platform : https://developer.adobe.com // Submitted by Jesse MacFadyen @@ -12347,9 +12394,9 @@ // Canva Pty Ltd : https://canva.com/ // Submitted by Joel Aquilina canva-apps.cn -*.my.canvasite.cn +my.canvasite.cn canva-apps.com -*.my.canva.site +my.canva.site // Carrd : https://carrd.co // Submitted by AJ @@ -12456,7 +12503,6 @@ // Submitted by Khash Sajadi c66.me cloud66.ws -cloud66.zone // CloudAccess.net : https://www.cloudaccess.net/ // Submitted by Pawel Panek @@ -12663,6 +12709,17 @@ deta.app deta.dev +// Dfinity Foundation: https://dfinity.org/ +// Submitted by Dfinity Team +caffeine.ai +id.ai +icp-api.io +icp0.io +*.raw.icp0.io +icp1.io +*.raw.icp1.io +caffeine.site + // dhosting.pl Sp. z o.o. : https://dhosting.pl/ // Submitted by Michal Kokoszkiewicz dfirma.pl @@ -13081,8 +13138,11 @@ // Encoretivity AB : https://encore.cloud // Submitted by André Eriksson encr.app +frontend.encr.app encoreapi.com lp.dev +api.lp.dev +objects.lp.dev // encoway GmbH : https://www.encoway.de // Submitted by Marcel Daus @@ -13444,6 +13504,7 @@ // GitHub, Inc. // Submitted by Patrick Toomey +github.app githubusercontent.com githubpreview.dev github.io @@ -13592,6 +13653,7 @@ // Submitted by Shannon McCabe *.hosted.app *.run.app +*.mtls.run.app web.app *.0emm.com appspot.com @@ -13848,6 +13910,7 @@ // Submitted by Henrik Willert apps-1and1.com live-website.com +webspace-host.com apps-1and1.net websitebuilder.online app-ionos.space @@ -13879,13 +13942,15 @@ is-a.dev // IServ GmbH : https://iserv.de -// Submitted by Mario Hoberg +// Submitted by Kim Brodowski iservschule.de mein-iserv.de +schuldock.de schulplattform.de schulserver.de test-iserv.de iserv.dev +iserv.host // Jelastic, Inc. : https://jelastic.com/ // Submitted by Ihor Kolodyuk @@ -14177,6 +14242,10 @@ barsy.co.uk barsyonline.co.uk +// Lutra : https://lutra.ai +// Submitted by Joshua Newman +*.lutrausercontent.com + // Luyani Inc. : https://luyani.com/ // Submitted by Umut Gumeli luyani.app @@ -14760,6 +14829,7 @@ // PROJECT ELIV : https://eliv.kr/ // Submitted by PROJECT ELIV Domain Team c01.kr +eliv-cdn.kr eliv-dns.kr mmv.kr vki.kr @@ -15229,9 +15299,13 @@ apps.lair.io *.stolos.io -// SparrowHost : https://sparrowhost.in/ -// Submitted by Anant Pandey -ind.mom +// sourceWAY GmbH : https://sourceway.de +// Submitted by Richard Reiber +4.at +my.at +my.de +*.nxa.eu +nx.gw // SpeedPartner GmbH : https://www.speedpartner.de/ // Submitted by Stefan Neufeind @@ -15408,6 +15482,10 @@ p.tawk.email p.tawkto.email +// Tche.br : https://tche.br +// Submitted by Bruno Lorensi +tche.br + // team.blue : https://team.blue // Submitted by Cedric Dubois site.tb-hosting.com @@ -15579,11 +15657,12 @@ web.val.run // Vercel, Inc : https://vercel.com/ -// Submitted by Max Leiter +// Submitted by Laurens Duijvesteijn vercel.app v0.build vercel.dev vusercontent.net +vercel.run now.sh // VeryPositive SIA : http://very.lv diff -Nru firefox-esr-128.11.0esr/security/manager/ssl/StaticHPKPins.h firefox-esr-128.12.0esr/security/manager/ssl/StaticHPKPins.h --- firefox-esr-128.11.0esr/security/manager/ssl/StaticHPKPins.h 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/security/manager/ssl/StaticHPKPins.h 2025-06-17 01:36:42.000000000 +0000 @@ -736,4 +736,4 @@ static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1756121050159000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1758539902731000); diff -Nru firefox-esr-128.11.0esr/security/manager/ssl/nsSTSPreloadList.inc firefox-esr-128.12.0esr/security/manager/ssl/nsSTSPreloadList.inc --- firefox-esr-128.11.0esr/security/manager/ssl/nsSTSPreloadList.inc 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/security/manager/ssl/nsSTSPreloadList.inc 2025-06-17 01:36:43.000000000 +0000 @@ -8,7 +8,7 @@ /*****************************************************************************/ #include -const PRTime gPreloadListExpirationTime = INT64_C(1758540246490000); +const PRTime gPreloadListExpirationTime = INT64_C(1760959098211000); %% 0--1.de, 1 0-0.io, 1 @@ -16,6 +16,7 @@ 0-1.party, 1 0-24.com, 1 0-24.net, 1 +0-9.com, 1 0.com.ms, 1 0.sb, 1 00.eco, 1 @@ -56,6 +57,7 @@ 003d88.com, 1 003dyw.com, 1 0047552.com, 1 +00484.com, 1 005184.xyz, 1 0057552.com, 1 0066.in, 1 @@ -76,56 +78,6 @@ 00d88.com, 1 00dani.me, 1 00f.net, 1 -00ffaaa.com, 1 -00ffbbb.com, 1 -00ffccc.com, 1 -00ffddd.com, 1 -00ffeee.com, 1 -00fffaa.com, 1 -00fffbb.com, 1 -00fffcc.com, 1 -00fffdd.com, 1 -00fffee.com, 1 -00fffgg.com, 1 -00fffhh.com, 1 -00fffii.com, 1 -00fffjj.com, 1 -00fffkk.com, 1 -00fffll.com, 1 -00fffmm.com, 1 -00fffnn.com, 1 -00fffoo.com, 1 -00fffpp.com, 1 -00fffqq.com, 1 -00fffrr.com, 1 -00fffss.com, 1 -00ffftt.com, 1 -00fffuu.com, 1 -00fffvv.com, 1 -00fffww.com, 1 -00fffxx.com, 1 -00fffyy.com, 1 -00fffzz.com, 1 -00ffggg.com, 1 -00ffhhh.com, 1 -00ffiii.com, 1 -00ffjjj.com, 1 -00ffkkk.com, 1 -00fflll.com, 1 -00ffmmm.com, 1 -00ffnnn.com, 1 -00ffooo.com, 1 -00ffppp.com, 1 -00ffqqq.com, 1 -00ffrrr.com, 1 -00ffsss.com, 1 -00ffttt.com, 1 -00ffuuu.com, 1 -00ffvvv.com, 1 -00ffwww.com, 1 -00ffxxx.com, 1 -00ffyyy.com, 1 -00ffzzz.com, 1 00wbf.com, 1 01.org, 1 01011970.xyz, 1 @@ -295,6 +247,7 @@ 09kanagawa.jp, 1 0akarma.me, 1 0au.de, 0 +0carbon.com, 1 0cdn.ga, 1 0cdn.net, 1 0cean.tk, 1 @@ -359,7 +312,7 @@ 0x53.de, 1 0x5d.de, 1 0x5f3759df.net, 1 -0x7.io, 1 +0x7.io, 0 0x76.de, 1 0x7d7b.net, 1 0x7fffffff.net, 0 @@ -416,6 +369,7 @@ 1001iq.com, 1 1001kartini.com, 1 1001mv.com, 1 +1001n.com, 1 1001reasonstolearnspanish.com, 1 1001telecommandes.com, 1 1007337.com, 0 @@ -423,7 +377,9 @@ 10086.ru, 1 100baksov.tk, 1 100ballov.tk, 1 +100beauty.com, 1 100bib.ru, 1 +100fast.com, 1 100fss.marketing, 1 100kb.club, 1 100kraz.ga, 1 @@ -435,6 +391,7 @@ 100pluspro.com, 1 100pour100print.com, 1 100pudov.tk, 1 +100reach.com, 1 100refer.tk, 1 100sapog.tk, 1 100skidok.ga, 1 @@ -449,8 +406,8 @@ 10101.io, 1 101010.hopto.org, 1 101010.pl, 1 -101023.xyz, 1 10161997.xyz, 1 +10198.com, 1 101android.ru, 0 101dalmatin.ua, 0 101st-airborne.tk, 1 @@ -468,7 +425,6 @@ 10218b.com, 0 10218c.com, 0 10218cj.com, 1 -10218d.com, 0 10218e.com, 0 10218f.com, 0 10218g.com, 0 @@ -496,6 +452,7 @@ 105318.com, 1 105861.com, 1 106.hi.cn, 1 +10628.com, 1 1068511.com, 1 106906.xyz, 1 10705.ml, 1 @@ -509,6 +466,8 @@ 10gbps.pm, 1 10gunlukhavadurumu.com, 1 10hz.de, 1 +10jahre-govet.de, 1 +10jahre-govet.international, 1 10ktotalent.com, 1 10mach.com, 1 10media.ru, 1 @@ -535,6 +494,8 @@ 110111011.xyz, 1 11018vip.com, 1 11018xpj.com, 1 +11046.com, 1 +11082.com, 1 110838.com, 1 110cl.com, 1 110na.com, 1 @@ -544,6 +505,9 @@ 1111systems.com, 1 111365t.com, 1 11168365.com, 1 +11182.com, 1 +11183.com, 1 +11185.com, 1 111bet86.com, 1 111novosti.tk, 1 111plus.design, 1 @@ -606,14 +570,17 @@ 11365t.com, 1 113k8.com, 0 113z6.com, 1 +11400.com, 1 11443837.com, 0 114514ss.com, 1 114job.com, 0 +114online.com, 1 115.one, 1 115z6.com, 1 1174healing.com, 1 117766.xyz, 1 1177z6.com, 1 +11792.com, 1 1182asaka-shika.com, 1 1190america.tk, 1 1199bet.vip, 1 @@ -652,63 +619,13 @@ 11eexx.com, 1 11eeyy.com, 1 11eezz.com, 1 -11ffaaa.com, 1 -11ffbbb.com, 1 11ffcc.com, 1 -11ffccc.com, 1 -11ffddd.com, 1 -11ffeee.com, 1 -11fffaa.com, 1 -11fffbb.com, 1 -11fffcc.com, 1 -11fffdd.com, 1 -11fffee.com, 1 -11fffgg.com, 1 -11fffhh.com, 1 -11fffii.com, 1 -11fffjj.com, 1 -11fffkk.com, 1 -11fffll.com, 1 -11fffmm.com, 1 -11fffnn.com, 1 -11fffoo.com, 1 -11fffpp.com, 1 -11fffqq.com, 1 -11fffrr.com, 1 -11fffss.com, 1 -11ffftt.com, 1 -11fffuu.com, 1 -11fffvv.com, 1 -11fffww.com, 1 -11fffxx.com, 1 -11fffyy.com, 1 -11fffzz.com, 1 -11ffggg.com, 1 -11ffhhh.com, 1 -11ffiii.com, 1 -11ffjjj.com, 1 11ffkk.com, 1 -11ffkkk.com, 1 -11fflll.com, 1 -11ffmmm.com, 1 -11ffnnn.com, 1 -11ffooo.com, 1 -11ffppp.com, 1 -11ffqqq.com, 1 11ffrr.com, 1 -11ffrrr.com, 1 -11ffsss.com, 1 11fftt.com, 1 -11ffttt.com, 1 -11ffuuu.com, 1 -11ffvvv.com, 1 -11ffwww.com, 1 11ffxx.com, 1 -11ffxxx.com, 1 11ffyy.com, 1 -11ffyyy.com, 1 11ffzz.com, 1 -11ffzzz.com, 1 11ggbb.com, 1 11ggcc.com, 1 11ggee.com, 1 @@ -784,6 +701,7 @@ 12.ag, 1 12.digital, 1 1200.cf, 1 +12006.com, 1 120percent-inc.com, 1 1212.tk, 1 1212873467.rsc.cdn77.org, 1 @@ -861,14 +779,20 @@ 1244.tk, 1 1244546066.rsc.cdn77.org, 1 125-rue.com, 1 +12517.com, 1 +12554.com, 1 +12557.com, 1 +12558.com, 1 +12559.com, 1 +12588.com, 1 125colours.tk, 1 125m125.de, 1 127011.ch, 1 127661.com, 1 -1277bet.com, 1 +12778.com, 1 +12877.com, 1 1288366.com, 1 129.co, 1 -12apostleshotel.com, 1 12fkcdtcetteefqv.myfritz.net, 1 12go.asia, 1 12go.co, 1 @@ -1018,6 +942,7 @@ 161.sh, 1 161233.com, 0 16164f.com, 1 +16195.com, 1 1620301.com, 1 1620302.com, 1 1620303.com, 1 @@ -1054,7 +979,6 @@ 1620336.com, 1 1620337.com, 1 1620338.com, 1 -1620339.com, 1 1620340.com, 1 1620341.com, 1 1620342.com, 1 @@ -1068,6 +992,7 @@ 162jonesrd.ca, 1 163.gd, 1 16321.tk, 1 +163pay.com, 1 164.co, 1 1644091933.rsc.cdn77.org, 1 1650thefan.com, 1 @@ -1126,6 +1051,7 @@ 171365y.com, 1 171365z.com, 1 17187q.com, 1 +17190.com, 1 1720301.com, 1 1720302.com, 1 1720303.com, 1 @@ -1179,9 +1105,11 @@ 173yg.com, 1 174.net.nz, 1 174343.com, 1 -1750studios.com, 0 175dt.com, 1 177milkstreet.com, 1 +17901.com, 1 +17920.com, 1 +17921.com, 1 17experience.com.br, 1 17hats.com, 0 17kpw.com, 1 @@ -1244,15 +1172,14 @@ 1820348.com, 1 1820349.com, 1 182wh.com, 1 -182zlong.com, 1 1831365.com, 1 1832365.com, 1 1834365.com, 1 1837365.com, 1 183cm.tk, 1 -183zlong.com, 1 184325.com, 1 1844329061.rsc.cdn77.org, 1 +18521.com, 1 185k8.com, 0 186526.club, 1 186526.xyz, 1 @@ -1261,6 +1188,7 @@ 186ks.com, 1 1876365.com, 0 1876996.com, 1 +18836.com, 1 1888zr.com, 0 188cn-sb.com, 1 188wei.com, 1 @@ -1276,7 +1204,6 @@ 1911-movie.jp, 1 1911trust.com, 1 1912x.com, 1 -191512.xyz, 1 192.com, 1 1920.tk, 1 1920301.com, 1 @@ -1284,6 +1211,7 @@ 1920303.com, 1 1920304.com, 1 1920305.com, 1 +19216811-sifre.com, 1 192168123.xyz, 0 192168ll.repair, 1 1921958389.rsc.cdn77.org, 1 @@ -1355,6 +1283,7 @@ 1ahyp.de, 1 1and1life.com, 1 1android.de, 1 +1apple.com, 1 1art.tk, 1 1atelie.ru, 1 1autoparts.com, 1 @@ -1384,7 +1313,7 @@ 1datatec.com, 1 1day1ac.red, 1 1ddl.org, 1 -1dmc.de, 0 +1dmc.de, 1 1dollar.ml, 1 1dollarwebsite.gq, 1 1dot1dot1dot1.cf, 1 @@ -1392,11 +1321,13 @@ 1dv.link, 1 1e9.nl, 1 1eanda.com, 1 +1earn.com, 1 1er-secours.ch, 0 1f123.net, 1 1fastcourse.com, 1 1fc0.org, 1 1firstbank.com, 1 +1fresh.com, 1 1g.gg, 1 1gp.us, 1 1hattem.nl, 1 @@ -1426,7 +1357,6 @@ 1me.cz, 1 1mgt.ru, 1 1montre.fr, 1 -1naturalway.com, 1 1nf.me, 1 1nian.vip, 1 1node.site, 1 @@ -1447,14 +1377,15 @@ 1plus1tv.zone, 1 1pluss.ee, 1 1point.kr, 1 +1project.com, 1 1q2w.nl, 1 1q365a.com, 1 1r.is, 1 +1rail.com.au, 1 1rs.nl, 1 1rust.net, 1 1salland.nl, 1 1sand0s.nl, 1 -1scope.com, 1 1se.co, 0 1se2or3.com, 1 1secondeveryday.com, 1 @@ -1473,7 +1404,6 @@ 1stcheltenhamscouts.co.uk, 1 1stchoicelodging.com, 1 1stclassbouncycastles.co.uk, 1 -1stclasschauffeurs.co.uk, 1 1stforfun.co.uk, 1 1stpeninsulabouncers.co.uk, 1 1stream.co.za, 1 @@ -1486,7 +1416,6 @@ 1up.it, 1 1url.site, 1 1v-lsd.eu, 1 -1v1.xyz, 1 1v9.im, 1 1v9.io, 1 1voz.org, 1 @@ -1754,24 +1683,33 @@ 208medical.org, 1 20denier.com, 1 20gg.de, 1 +20plus.com, 1 20sights.tk, 1 21.co.uk, 1 2113.ch, 1 -2137.eu, 1 213k8.com, 1 214701.xyz, 1 21566365.com, 0 216digital.com, 1 +21ce.com, 1 21eb.com, 0 +21er.com, 1 +21expo.com, 1 +21football.com, 1 21gou.com, 1 +21green.com, 1 +21jobs.com, 1 21kampus.com, 1 21lab.co, 1 21nurse.com, 1 21risk.com, 1 21run.com, 0 +21soccer.com, 1 21stcenturycarpentry.com.au, 1 21stcenturyoptics.com, 1 21stnc.us, 1 +21tax.com, 1 +21up.com, 1 22-bets.org, 1 22007apply.gov, 1 220220.de, 1 @@ -1814,56 +1752,6 @@ 22d.io, 1 22delta.com, 1 22emesiecle.com, 0 -22ffaaa.com, 1 -22ffbbb.com, 1 -22ffccc.com, 1 -22ffddd.com, 1 -22ffeee.com, 1 -22fffaa.com, 1 -22fffbb.com, 1 -22fffcc.com, 1 -22fffdd.com, 1 -22fffee.com, 1 -22fffgg.com, 1 -22fffhh.com, 1 -22fffii.com, 1 -22fffjj.com, 1 -22fffkk.com, 1 -22fffll.com, 1 -22fffmm.com, 1 -22fffnn.com, 1 -22fffoo.com, 1 -22fffpp.com, 1 -22fffqq.com, 1 -22fffrr.com, 1 -22fffss.com, 1 -22ffftt.com, 1 -22fffuu.com, 1 -22fffvv.com, 1 -22fffww.com, 1 -22fffxx.com, 1 -22fffyy.com, 1 -22fffzz.com, 1 -22ffggg.com, 1 -22ffhhh.com, 1 -22ffiii.com, 1 -22ffjjj.com, 1 -22ffkkk.com, 1 -22fflll.com, 1 -22ffmmm.com, 1 -22ffnnn.com, 1 -22ffooo.com, 1 -22ffppp.com, 1 -22ffqqq.com, 1 -22ffrrr.com, 1 -22ffsss.com, 1 -22ffttt.com, 1 -22ffuuu.com, 1 -22ffvvv.com, 1 -22ffwww.com, 1 -22ffxxx.com, 1 -22ffyyy.com, 1 -22ffzzz.com, 1 22lc8.com, 0 22momo.com, 1 22nd.com, 1 @@ -1953,7 +1841,7 @@ 247healthshop.com, 1 247maturesex.com, 1 247megamart.com.au, 1 -247naijabuzz.com, 1 +247vision.com, 1 248000.xyz, 1 24848168.com, 0 24848188.com, 0 @@ -1964,7 +1852,6 @@ 24848a.vip, 1 24848b.vip, 1 24848c.vip, 1 -24848d.vip, 1 24848e.vip, 0 24848h.vip, 0 24848rr.com, 0 @@ -1977,22 +1864,39 @@ 2495dentalimplants.com, 1 249722.com, 1 249cq.com, 1 +24action.com, 1 +24alarm.com, 1 +24ball.com, 1 +24beauty.com, 1 24bel.ru, 0 24bit.dk, 1 24buffalo.com, 0 24chance.tk, 1 +24control.com, 1 24d.org, 1 +24fair.com, 1 +24fan.com, 1 24gazette.ga, 1 24go.me, 1 +24hod.com, 1 24hour-locksmithsanantonio.com, 1 24hourcyclist.co.uk, 1 24hourlocksmithdallastx.com, 1 24hourlocksmithhoustontx.com, 1 24hourlocksmithspring.com, 1 24hrbrandbash.com, 1 +24images.com, 1 24k.co.jp, 1 +24london.com, 1 +24meg.com, 1 +24monitor.com, 1 24onlain.tk, 1 +24read.com, 1 +24see.com, 1 +24share.com, 1 24slides.com, 1 +24slot.com, 1 +24status.com, 1 24webservice.nl, 1 24x7aircargoservices.co.in, 1 2500.cf, 1 @@ -2015,6 +1919,7 @@ 25lotto.co.ke, 1 25lotto.com, 1 25may.tk, 1 +25oclock.com, 1 25percent.me, 1 25refer.tk, 1 25reinyan25.net, 1 @@ -2023,6 +1928,7 @@ 2600hq.com, 1 2601.de, 1 262569.com, 1 +263mail.com, 1 267326.com, 1 269196.com, 1 2698pacificave.com, 1 @@ -2066,7 +1972,6 @@ 29zw.com, 1 2abtechnology.in, 1 2b-design.net, 1 -2b2b.pro, 1 2b2t.fi, 1 2bas.nl, 1 2bcompany.ch, 0 @@ -2075,7 +1980,6 @@ 2bitboer.com, 0 2bitout.com, 1 2blazing.cf, 1 -2brothersrenovations.net, 1 2bu2t.online, 1 2bu2t.ru, 1 2buldzha2t.ru, 1 @@ -2089,6 +1993,7 @@ 2c-t-8.com, 1 2c.lol, 1 2c2p.com, 1 +2cars.com, 1 2cat.cc, 1 2cb.rocks, 1 2chan.eu, 1 @@ -2103,22 +2008,26 @@ 2daysmood.nl, 1 2daysmood.us, 1 2dk.info, 1 +2dns.com, 1 2driver-ok.ml, 1 2earn-online.com, 0 2fa.directory, 1 2fabypass.com, 1 +2finish.com, 1 2fm.ie, 1 2fm.radio, 1 2fraud.pro, 1 +2free.com, 1 2g1s.net, 1 +2gallery.com, 1 2gen.com, 1 2gether.fr, 1 2gisparser.tk, 1 -2gmedia.de, 1 2heartsbookings.co.uk, 1 2hypeenterprises.com, 1 2i2.link, 1 2img.net, 1 +2impact.com, 1 2innovateit.com, 0 2insights.com, 1 2jhb.com, 1 @@ -2153,7 +2062,9 @@ 2rodeo.com, 1 2rsc.net, 1 2sendai.net, 1 +2serious.com, 1 2silosbrewing.com, 1 +2target.com, 1 2tausend19.de, 1 2th.me, 1 2think.org, 1 @@ -2164,6 +2075,7 @@ 2up.site, 1 2url.link, 1 2ustyle.com, 1 +2value.com, 1 2vnews.com, 1 2vp-an.online, 1 2x.nu, 1 @@ -2194,6 +2106,7 @@ 30deagosto.tk, 1 30for30podcasts.com, 1 30hb.cn, 1 +30minut.com, 1 30nama1.tk, 1 30region.tk, 1 31-elagage.fr, 1 @@ -2211,7 +2124,6 @@ 317833333.com, 0 317844444.com, 0 317855555.com, 0 -31786666.com, 0 317866666.com, 0 3178666666.com, 1 317877777.com, 0 @@ -2270,56 +2182,6 @@ 33acac.com, 1 33b58.com, 1 33devici.ml, 1 -33ffaaa.com, 1 -33ffbbb.com, 1 -33ffccc.com, 1 -33ffddd.com, 1 -33ffeee.com, 1 -33fffaa.com, 1 -33fffbb.com, 1 -33fffcc.com, 1 -33fffdd.com, 1 -33fffee.com, 1 -33fffgg.com, 1 -33fffhh.com, 1 -33fffii.com, 1 -33fffjj.com, 1 -33fffkk.com, 1 -33fffll.com, 1 -33fffmm.com, 1 -33fffnn.com, 1 -33fffoo.com, 1 -33fffpp.com, 1 -33fffqq.com, 1 -33fffrr.com, 1 -33fffss.com, 1 -33ffftt.com, 1 -33fffuu.com, 1 -33fffvv.com, 1 -33fffww.com, 1 -33fffxx.com, 1 -33fffyy.com, 1 -33fffzz.com, 1 -33ffggg.com, 1 -33ffhhh.com, 1 -33ffiii.com, 1 -33ffjjj.com, 1 -33ffkkk.com, 1 -33fflll.com, 1 -33ffmmm.com, 1 -33ffnnn.com, 1 -33ffooo.com, 1 -33ffppp.com, 1 -33ffqqq.com, 1 -33ffrrr.com, 1 -33ffsss.com, 1 -33ffttt.com, 1 -33ffuuu.com, 1 -33ffvvv.com, 1 -33ffwww.com, 1 -33ffxxx.com, 1 -33ffyyy.com, 1 -33ffzzz.com, 1 33knkn.com, 1 33zv.com, 0 33zxzx.com, 1 @@ -2375,21 +2237,28 @@ 360bcty.com, 1 360cycling.com.br, 1 360degreecloud.com, 1 +360dental.com, 1 360dialog.com, 1 -360e-commerce.de, 1 360e-commerce.net, 1 360ecogroup.com, 0 -360ecommerce.de, 1 360ecommerce.net, 1 +360faces.com, 1 360fcu.org, 1 360gradus.com, 0 360hosting.com.au, 1 +360islam.com, 1 360kuvia.fi, 1 +360mediaworks.com, 1 +360now.com, 1 +360organic.com, 1 360primeview.ie, 1 360prokuvat.fi, 1 360propguide.com, 1 360rail.nl, 1 +360spider.com, 1 +360system.com, 1 360techpartner.com, 1 +360trust.com, 1 360videoshare.com, 1 360visualmedia.co.uk, 1 360vrs.com, 1 @@ -2456,10 +2325,14 @@ 3659869.com, 1 3659980.com, 1 365a1.com, 0 +365air.com, 1 365beautyworld.com, 1 +365blog.com, 1 365canvas.com, 0 +365check.com, 1 365clo.com, 1 365cn-288.com, 1 +365coupon.com, 1 365eib.com, 1 365eif.com, 1 365eil.com, 1 @@ -2467,15 +2340,18 @@ 365eis.com, 1 365eiv.com, 1 365eiw.com, 1 +365fast.com, 1 365healthworld.com, 1 365idezet.hu, 1 365labs.cloud, 1 365nnnn.com, 0 +365pet.com, 1 365poster.de, 0 365q01.com, 1 365renovations.com, 1 365sb-cn.com, 1 365skulls.com, 1 +365vision.com, 1 365y33.com, 1 365y9.com, 0 365yapan.com, 1 @@ -2490,12 +2366,12 @@ 369ra.com, 1 369rr.com, 1 36thdistrictcourtmi.gov, 1 -371137.com, 0 372bbb.com, 1 374952.xyz, 1 375337.com, 1 375575.xyz, 1 375realty.com, 1 +376064.com, 0 377625.com, 1 377837.com, 1 377854.com, 1 @@ -2617,6 +2493,7 @@ 3changtrai.com, 1 3commas.io, 1 3countiescastlehire.co.uk, 1 +3creation.com, 1 3cs.ch, 0 3ct.fr, 1 3ct.group, 1 @@ -2633,11 +2510,13 @@ 3dbox.ba, 1 3dc9.jp, 1 3dcollective.es, 1 +3dcopy.com, 1 3dd365.com, 1 3ddigital.com, 1 3degreedesign.co.uk, 1 3deni.com, 1 3dexpose.tk, 1 +3dfeel.com, 1 3dfiguur.nl, 0 3dflat.tk, 1 3dgep.com, 1 @@ -2645,8 +2524,10 @@ 3dissue.com, 1 3djake.de, 1 3djake.uk, 1 +3djapan.com, 1 3djava.ml, 1 3dlab.team, 1 +3dlan.com, 1 3dm.audio, 1 3dmedium.de, 1 3dmetalprinting.tk, 1 @@ -2655,12 +2536,14 @@ 3dmusiclab.nl, 1 3dnovedades.com, 0 3do3dont.com, 1 +3down.com, 1 3dprintedhouse.nl, 1 3dprintedobjects.be, 1 3dprintsondemand.eu, 1 3dranger.com, 1 3dreal.tk, 1 3dsites.tk, 1 +3dstandard.com, 1 3dstoragellc.com, 1 3dstore.dk, 1 3dsupplies.be, 1 @@ -2681,9 +2564,9 @@ 3gdev.com, 1 3gdu.tk, 1 3gg365.com, 1 -3h-co.de, 1 3haeuserprojekt.org, 1 3hh365.com, 1 +3huan.com, 1 3i-infotech.com, 1 3ieimpact.org, 1 3ii365.com, 1 @@ -2692,6 +2575,7 @@ 3kings-3hills.com, 1 3ks.pl, 1 3ler.net, 1 +3links.com, 1 3lmnyblogger.ga, 1 3logic.ru, 1 3lot.ru, 1 @@ -2884,56 +2768,6 @@ 44ada.pl, 1 44bet86.com, 1 44feelings.com, 1 -44ffaaa.com, 1 -44ffbbb.com, 1 -44ffccc.com, 1 -44ffddd.com, 1 -44ffeee.com, 1 -44fffaa.com, 1 -44fffbb.com, 1 -44fffcc.com, 1 -44fffdd.com, 1 -44fffee.com, 1 -44fffgg.com, 1 -44fffhh.com, 1 -44fffii.com, 1 -44fffjj.com, 1 -44fffkk.com, 1 -44fffll.com, 1 -44fffmm.com, 1 -44fffnn.com, 1 -44fffoo.com, 1 -44fffpp.com, 1 -44fffqq.com, 1 -44fffrr.com, 1 -44fffss.com, 1 -44ffftt.com, 1 -44fffuu.com, 1 -44fffvv.com, 1 -44fffww.com, 1 -44fffxx.com, 1 -44fffyy.com, 1 -44fffzz.com, 1 -44ffggg.com, 1 -44ffhhh.com, 1 -44ffiii.com, 1 -44ffjjj.com, 1 -44ffkkk.com, 1 -44fflll.com, 1 -44ffmmm.com, 1 -44ffnnn.com, 1 -44ffooo.com, 1 -44ffppp.com, 1 -44ffqqq.com, 1 -44ffrrr.com, 1 -44ffsss.com, 1 -44ffttt.com, 1 -44ffuuu.com, 1 -44ffvvv.com, 1 -44ffwww.com, 1 -44ffxxx.com, 1 -44ffyyy.com, 1 -44ffzzz.com, 1 44mining.com, 1 44pro.com, 1 451365.com, 0 @@ -2956,6 +2790,7 @@ 45b.org, 1 45l.cc, 0 45min.ga, 1 +45shiki.net, 1 4609eleventhst.com, 1 463855.com, 1 463lnets.com, 1 @@ -2979,7 +2814,6 @@ 48times.online, 1 491.jp, 1 491mhz.net, 1 -4927a.com, 0 492977.com, 0 497552.com, 0 49889.com, 1 @@ -3003,11 +2837,14 @@ 4cut.tk, 1 4daagse.nl, 1 4dbuild.net, 1 +4dclub.com, 1 4devs.com.br, 1 4digital.it, 1 4digitiq.nl, 1 4dillusion.tk, 1 4dimension.net, 1 +4dplay.com, 1 +4dstyle.com, 1 4e8.net, 1 4everdosti.tk, 1 4everproxy.com, 1 @@ -3017,7 +2854,6 @@ 4fit.ro, 1 4flex.com.br, 1 4flex.info, 1 -4freepress.com, 1 4freeprintable.com, 1 4fund.com, 1 4g-server.eu, 0 @@ -3048,6 +2884,7 @@ 4mm.org, 1 4n3.net, 1 4n6.io, 1 +4nature.com, 1 4netguides.org, 1 4nikola.de, 1 4o.pw, 1 @@ -3070,11 +2907,13 @@ 4sjnc.org, 1 4smart.house, 1 4sun.cf, 1 +4surfers.co.il, 1 4t.pw, 1 4tgw34.tk, 1 4th-ave-studio.com, 1 4thfebruary.tk, 1 4thjdcar.gov, 1 +4true.com, 1 4u.services, 0 4u2ore.net, 1 4uagservices.com, 1 @@ -3096,7 +2935,6 @@ 4yowipes10yo.gq, 1 4yuz.net, 1 50-ottenkov.tk, 1 -50.gy, 1 5000.cx, 1 5000164.com, 1 5000164.jp, 1 @@ -3138,7 +2976,6 @@ 50plusdating.ml, 1 50plusdating.tk, 1 50plusmusikfestival.ch, 1 -50plusnet.nl, 1 50refer.tk, 1 50ten40.com, 1 50thingstodo.org, 1 @@ -3161,7 +2998,6 @@ 515188.xyz, 1 517vpn.cn, 1 518.com.tw, 1 -518k8.com, 1 5197aa.co, 1 5197bb.co, 1 5197cc.co, 1 @@ -3211,15 +3047,26 @@ 51club8.com, 1 51dinghuo.com, 1 51fishing.com, 1 +51flower.com, 1 +51free.com, 1 51fss.marketing, 1 +51ku.com, 1 51lavanderiaindustrial.com.br, 1 +51life.com, 1 +51logo.com, 1 +51motor.com, 1 51nullacht.de, 1 +51photos.com, 1 +51pic.com, 1 51pig.com, 1 -51pinpai.com, 1 +51power.com, 1 51resume.com, 1 51senluo.com, 1 +51share.com, 1 +51space.com, 1 51talk.ph, 1 51tiaojiu.com, 1 +51train.com, 1 51xiongmao.cn, 1 52002a.com, 1 52002b.com, 1 @@ -3306,56 +3153,6 @@ 557.pm, 1 557bbb.com, 1 55bet86.com, 1 -55ffaaa.com, 1 -55ffbbb.com, 1 -55ffccc.com, 1 -55ffddd.com, 1 -55ffeee.com, 1 -55fffaa.com, 1 -55fffbb.com, 1 -55fffcc.com, 1 -55fffdd.com, 1 -55fffee.com, 1 -55fffgg.com, 1 -55fffhh.com, 1 -55fffii.com, 1 -55fffjj.com, 1 -55fffkk.com, 1 -55fffll.com, 1 -55fffmm.com, 1 -55fffnn.com, 1 -55fffoo.com, 1 -55fffpp.com, 1 -55fffqq.com, 1 -55fffrr.com, 1 -55fffss.com, 1 -55ffftt.com, 1 -55fffuu.com, 1 -55fffvv.com, 1 -55fffww.com, 1 -55fffxx.com, 1 -55fffyy.com, 1 -55fffzz.com, 1 -55ffggg.com, 1 -55ffhhh.com, 1 -55ffiii.com, 1 -55ffjjj.com, 1 -55ffkkk.com, 1 -55fflll.com, 1 -55ffmmm.com, 1 -55ffnnn.com, 1 -55ffooo.com, 1 -55ffppp.com, 1 -55ffqqq.com, 1 -55ffrrr.com, 1 -55ffsss.com, 1 -55ffttt.com, 1 -55ffuuu.com, 1 -55ffvvv.com, 1 -55ffwww.com, 1 -55ffxxx.com, 1 -55ffyyy.com, 1 -55ffzzz.com, 1 55fss.net, 1 55k66.vip, 1 55opt.org, 1 @@ -3459,6 +3256,7 @@ 5bet86.com, 1 5c1fd0f31022cbc40af9f785847baaf9.space, 1 5ca.com, 1 +5cake.com, 1 5ccapitalinvestments.com, 1 5dm.link, 1 5dm.me, 1 @@ -3495,7 +3293,6 @@ 5stardesigner.tk, 1 5starexterior.com, 0 5stars.tv, 1 -5startree.com, 1 5startrucksales.us, 1 5stones-consulting.cn, 1 5stones-consulting.com, 1 @@ -3513,7 +3310,6 @@ 6-bros.com, 1 6-d.cc, 1 6.vu, 1 -600k8.com, 0 604windswell.ca, 1 6060fm.tk, 1 6080.ga, 1 @@ -3699,56 +3495,6 @@ 66bet86.com, 1 66bwf.com, 1 66ccff.cc, 1 -66ffaaa.com, 1 -66ffbbb.com, 1 -66ffccc.com, 1 -66ffddd.com, 1 -66ffeee.com, 1 -66fffaa.com, 1 -66fffbb.com, 1 -66fffcc.com, 1 -66fffdd.com, 1 -66fffee.com, 1 -66fffgg.com, 1 -66fffhh.com, 1 -66fffii.com, 1 -66fffjj.com, 1 -66fffkk.com, 1 -66fffll.com, 1 -66fffmm.com, 1 -66fffnn.com, 1 -66fffoo.com, 1 -66fffpp.com, 1 -66fffqq.com, 1 -66fffrr.com, 1 -66fffss.com, 1 -66ffftt.com, 1 -66fffuu.com, 1 -66fffvv.com, 1 -66fffww.com, 1 -66fffxx.com, 1 -66fffyy.com, 1 -66fffzz.com, 1 -66ffggg.com, 1 -66ffhhh.com, 1 -66ffiii.com, 1 -66ffjjj.com, 1 -66ffkkk.com, 1 -66fflll.com, 1 -66ffmmm.com, 1 -66ffnnn.com, 1 -66ffooo.com, 1 -66ffppp.com, 1 -66ffqqq.com, 1 -66ffrrr.com, 1 -66ffsss.com, 1 -66ffttt.com, 1 -66ffuuu.com, 1 -66ffvvv.com, 1 -66ffwww.com, 1 -66ffxxx.com, 1 -66ffyyy.com, 1 -66ffzzz.com, 1 66gal.com, 1 66k66.vip, 1 6700.ar, 1 @@ -3955,7 +3701,6 @@ 716176.com, 0 717966833.xyz, 1 7183.org, 0 -718v.com, 1 71fss.marketing, 1 7203.ru, 1 7203.xn--p1ai, 1 @@ -3964,12 +3709,12 @@ 7214.cc, 1 722201.com, 0 724.tw, 1 +724online.com, 1 725741.com, 1 7261696e626f77.net, 1 727sss.com, 1 730.no, 1 732273.com, 1 -734365.com, 1 736373.com, 1 736573.com, 1 739373.com, 1 @@ -4051,56 +3796,7 @@ 77909i.com, 0 77b58.com, 1 77bet86.com, 1 -77ffaaa.com, 1 -77ffbbb.com, 1 -77ffccc.com, 1 -77ffddd.com, 1 -77ffeee.com, 1 -77fffaa.com, 1 -77fffbb.com, 1 -77fffcc.com, 1 -77fffdd.com, 1 -77fffee.com, 1 -77fffgg.com, 1 -77fffhh.com, 1 -77fffii.com, 1 -77fffjj.com, 1 -77fffkk.com, 1 -77fffll.com, 1 -77fffmm.com, 1 -77fffnn.com, 1 -77fffoo.com, 1 -77fffpp.com, 1 -77fffqq.com, 1 -77fffrr.com, 1 -77fffss.com, 1 -77ffftt.com, 1 -77fffuu.com, 1 -77fffvv.com, 1 -77fffww.com, 1 -77fffxx.com, 1 -77fffyy.com, 1 -77fffzz.com, 1 -77ffggg.com, 1 -77ffhhh.com, 1 -77ffiii.com, 1 -77ffjjj.com, 1 -77ffkkk.com, 1 -77fflll.com, 1 -77ffmmm.com, 1 -77ffnnn.com, 1 -77ffooo.com, 1 -77ffppp.com, 1 -77ffqqq.com, 1 -77ffrrr.com, 1 -77ffsss.com, 1 -77ffttt.com, 1 -77ffuuu.com, 1 -77ffvvv.com, 1 -77ffwww.com, 1 -77ffxxx.com, 1 -77ffyyy.com, 1 -77ffzzz.com, 1 +77online.com, 1 78-couvreur.fr, 1 78.to, 1 780aa.com, 1 @@ -4115,7 +3811,6 @@ 7891553.com, 1 7891997.com, 1 789365t.com, 1 -789zr.com, 0 790951.com, 1 792379.com, 0 793703.com, 1 @@ -4143,14 +3838,12 @@ 7extranews.tk, 1 7f.is, 1 7gr.uk, 1 -7graus.pt, 1 7h12.com, 1 7heavencr.com, 1 7hills.us, 1 7hq.ru, 1 7in0.me, 1 7inci.com, 1 -7kb.info, 1 7ki.photography, 1 7kovrikov.ru, 1 7kvadratov.by, 1 @@ -4159,6 +3852,7 @@ 7matic.net, 1 7money.co, 1 7net.uk, 1 +7nets.com, 1 7networking.com, 1 7plus.com.au, 1 7pm.studio, 1 @@ -4188,8 +3882,12 @@ 800801337.xyz, 1 800999.xyz, 1 800email.com, 1 +800ink.com, 1 +800live.com, 1 800mattress.com, 1 800perkins.com, 1 +800sports.com, 1 +800tea.com, 1 800tutor.com, 1 8012d88.com, 1 8019d88.com, 1 @@ -4452,7 +4150,6 @@ 88522am.com, 1 885287.com, 1 8858ks.com, 1 -885kb.com, 1 885z6.com, 1 886666p.com, 1 886666q.com, 1 @@ -4519,63 +4216,13 @@ 889w889.net, 1 88acesmaritime.com, 1 88bet86.com, 1 +88bill.com, 1 88cakescorner.com, 1 88chigua.com, 1 88d.com, 1 88djl.cc, 1 -88ffaaa.com, 1 -88ffbbb.com, 1 -88ffccc.com, 1 -88ffddd.com, 1 -88ffeee.com, 1 -88fffaa.com, 1 -88fffbb.com, 1 -88fffcc.com, 1 -88fffdd.com, 1 -88fffee.com, 1 -88fffgg.com, 1 -88fffhh.com, 1 -88fffii.com, 1 -88fffjj.com, 1 -88fffkk.com, 1 -88fffll.com, 1 -88fffmm.com, 1 -88fffnn.com, 1 -88fffoo.com, 1 -88fffpp.com, 1 -88fffqq.com, 1 -88fffrr.com, 1 -88fffss.com, 1 -88ffftt.com, 1 -88fffuu.com, 1 -88fffvv.com, 1 -88fffww.com, 1 -88fffxx.com, 1 -88fffyy.com, 1 -88fffzz.com, 1 -88ffggg.com, 1 -88ffhhh.com, 1 -88ffiii.com, 1 -88ffjjj.com, 1 -88ffkkk.com, 1 -88fflll.com, 1 -88ffmmm.com, 1 -88ffnnn.com, 1 -88ffooo.com, 1 -88ffppp.com, 1 -88ffqqq.com, 1 -88ffrrr.com, 1 -88ffsss.com, 1 -88ffttt.com, 1 -88ffuuu.com, 1 -88ffvvv.com, 1 -88ffwww.com, 1 -88ffxxx.com, 1 -88ffyyy.com, 1 -88ffzzz.com, 1 88home9.com, 1 88laohu.cc, 1 -88laohu.com, 1 88thpolarisscouts.ca, 1 88yule11.com, 1 88yule112.com, 1 @@ -4590,6 +4237,7 @@ 8900d.com, 1 8906d.com, 1 8908d.com, 1 +89117.org, 0 8921d.com, 1 8925d.com, 0 8925d88.com, 1 @@ -4613,7 +4261,6 @@ 8ballbombom.uk, 1 8balls.nl, 1 8bb.org, 1 -8bet86.com, 1 8bit.ltd, 1 8bitpickle.com, 1 8bitsafe.com, 1 @@ -4628,21 +4275,24 @@ 8gerd.tk, 1 8hrs.net, 1 8i3m2a67.com, 1 +8i8.fr, 1 8l.com.au, 1 +8link.com, 1 8maerz.at, 1 8me.nl, 1 8mpay.com, 0 8shequapp.com, 1 +8show.com, 1 8t8.eu, 1 8tech.com.hk, 1 8therate.com, 1 8thstreetlatinas.com, 1 +8time.com, 1 8tuffbeers.com, 1 8ung.info, 1 8ung.online, 1 8xxxxxxx.com, 1 8y.network, 0 -8yabo.com, 0 8yun.cf, 1 8yun.ga, 0 9-11commission.gov, 1 @@ -4743,6 +4393,7 @@ 9098.cf, 1 90daydiet.org, 1 90daysales.com, 1 +90minut.com, 1 90r.jp, 1 90splease.com, 1 91-av.com, 1 @@ -5129,6 +4780,7 @@ 9417k.cf, 1 9417k.com, 1 941988.cn, 0 +943359.com, 0 9444.cf, 1 9449-27a1-22a1-e0d9-4237-dd99-e75e-ac85-2f47-9d34.de, 1 947cq.com, 1 @@ -5148,6 +4800,9 @@ 9508.cf, 1 9509.cf, 1 9510.cf, 1 +95105.com, 1 +95107.com, 1 +95108.com, 1 9511.cf, 1 9512.cf, 1 9513.cf, 1 @@ -5183,12 +4838,21 @@ 9548.cf, 1 9549.cf, 1 9550.cf, 1 +95500.com, 1 9551.cf, 1 +95518.com, 1 +95519.com, 1 9552.cf, 1 9553.cf, 1 9554.cf, 1 +95544.com, 1 +95558.com, 1 +95559.com, 1 9556.cf, 1 +95566.com, 1 +95568.com, 1 9557.cf, 1 +95577.com, 1 9558.cf, 1 9559.cf, 1 9560.cf, 1 @@ -5201,6 +4865,7 @@ 9568.cf, 1 9569.cf, 1 9570.cf, 1 +95700.com, 1 9571.cf, 1 9572.cf, 1 9573.cf, 1 @@ -5210,8 +4875,10 @@ 9578.cf, 1 9579.cf, 1 9580.cf, 1 +95808.com, 1 9581.cf, 1 9582.cf, 1 +95828.com, 1 9584.cf, 1 9585.cf, 1 9586.cf, 1 @@ -5226,6 +4893,7 @@ 9596.cf, 1 959606.com, 1 9597.cf, 1 +95996.com, 1 9600.cf, 1 9601.cf, 1 9602.cf, 1 @@ -5247,10 +4915,14 @@ 9617.cf, 1 9617818.net, 1 9618.cf, 1 +96181.com, 1 9619.cf, 1 9620.cf, 1 +96200.com, 1 9621.cf, 1 9622.cf, 1 +96220.com, 1 +96229.com, 1 9623.cf, 1 9624.cf, 1 9625.cf, 1 @@ -5259,9 +4931,15 @@ 9629.cf, 1 9630.cf, 1 9631.cf, 1 +96316.com, 1 9632.cf, 1 9633.cf, 1 +96448.com, 1 964515.com, 1 +96577.com, 1 +96605.com, 1 +96606.com, 1 +96607.com, 1 9666ks.com, 1 96685.com, 1 966ty.com, 1 @@ -5269,6 +4947,8 @@ 9679693.com, 0 9681909.com, 0 968860.com, 1 +96896.com, 1 +96961.com, 1 9700.cf, 1 9701.cf, 1 9702.cf, 1 @@ -5416,6 +5096,7 @@ 988.gov, 1 9882258.com, 1 9884458.com, 1 +98877.com, 1 98944448.com, 1 98944449.com, 1 98944666.com, 1 @@ -5517,87 +5198,15 @@ 998sa.com, 1 998wei.com, 1 998wns.com, 1 -999003.xyz, 1 -999004.xyz, 1 -999005.xyz, 1 9990058.com, 1 -999006.xyz, 1 -999008.xyz, 1 -999011.xyz, 1 -999014.xyz, 1 -999015.xyz, 1 -999016.xyz, 1 -999017.xyz, 1 -999018.xyz, 1 -999019.xyz, 1 -999021.xyz, 1 -999023.xyz, 1 -999024.xyz, 1 -999025.xyz, 1 999026.xyz, 1 -999027.xyz, 1 -999028.xyz, 1 -999029.xyz, 1 -999030.xyz, 1 999031.xyz, 1 -999032.xyz, 1 -999033.xyz, 1 -999034.xyz, 1 -999035.xyz, 1 -999036.xyz, 1 -999037.xyz, 1 -999038.xyz, 1 -999040.xyz, 1 -999041.xyz, 1 -999042.xyz, 1 -999043.xyz, 1 -999044.xyz, 1 -999045.xyz, 1 -999046.xyz, 1 -999047.xyz, 1 999048.xyz, 1 -999049.xyz, 1 -999050.xyz, 1 999051.xyz, 1 -999052.xyz, 1 -999053.xyz, 1 -999054.xyz, 1 -999055.xyz, 1 -999056.xyz, 1 999057.xyz, 1 -999058.xyz, 1 -999059.xyz, 1 -999060.xyz, 1 -999061.xyz, 1 -999062.xyz, 1 -999063.xyz, 1 -999064.xyz, 1 -999065.xyz, 1 -999067.xyz, 1 -999068.xyz, 1 -999070.xyz, 1 -999072.xyz, 1 -999073.xyz, 1 -999074.xyz, 1 -999075.xyz, 1 -999076.xyz, 1 -999078.xyz, 1 -999079.xyz, 1 -999080.xyz, 1 -999081.xyz, 1 -999082.xyz, 1 -999083.xyz, 1 -999084.xyz, 1 -999085.xyz, 1 999086.xyz, 1 -999089.xyz, 1 -999092.xyz, 1 -999093.xyz, 1 999094.xyz, 1 999095.xyz, 1 -999096.xyz, 1 -999097.xyz, 1 -999098.xyz, 1 9991.cf, 1 9991158.com, 1 9992258.com, 1 @@ -5609,6 +5218,7 @@ 9995558.com, 1 9998722.com, 1 9998k8.com, 1 +999942.xyz, 1 99998522.com, 1 99999822.com, 1 999998722.com, 1 @@ -5617,61 +5227,35 @@ 999family.com, 0 999salon.co, 1 999zlong.com, 1 +99bt.com, 1 99buffets.com, 1 -99ffaaa.com, 1 -99ffbbb.com, 1 -99ffccc.com, 1 -99ffddd.com, 1 -99ffeee.com, 1 -99fffaa.com, 1 +99dog.com, 1 99fffbb.com, 1 -99fffcc.com, 1 -99fffdd.com, 1 99fffee.com, 1 99fffgg.com, 1 99fffhh.com, 1 99fffii.com, 1 -99fffjj.com, 1 99fffkk.com, 1 -99fffll.com, 1 99fffmm.com, 1 -99fffnn.com, 1 -99fffoo.com, 1 -99fffpp.com, 1 99fffqq.com, 1 -99fffrr.com, 1 -99fffss.com, 1 -99ffftt.com, 1 99fffuu.com, 1 99fffvv.com, 1 -99fffww.com, 1 -99fffxx.com, 1 -99fffyy.com, 1 -99fffzz.com, 1 99ffggg.com, 1 -99ffhhh.com, 1 -99ffiii.com, 1 99ffjjj.com, 1 -99ffkkk.com, 1 -99fflll.com, 1 99ffmmm.com, 1 99ffnnn.com, 1 -99ffooo.com, 1 99ffppp.com, 1 -99ffqqq.com, 1 99ffrrr.com, 1 99ffsss.com, 1 99ffttt.com, 1 99ffuuu.com, 1 99ffvvv.com, 1 -99ffwww.com, 1 99ffxxx.com, 1 -99ffyyy.com, 1 -99ffzzz.com, 1 99furnitureideasandtips.gq, 1 99furnitureideasexamples.ga, 1 99laptops.com, 1 99lib.net, 1 +99music.com, 1 99naturalfoods.de, 1 99perf.com, 1 99qp.org, 1 @@ -5684,6 +5268,7 @@ 9bet86.com, 1 9ccn.top, 1 9elements.com, 0 +9fruit.com, 1 9fvip.net, 1 9gag.com, 1 9hosts.net, 1 @@ -5795,7 +5380,6 @@ a-1waterproofing.com, 1 a-air.com.ua, 1 a-allard.be, 0 -a-b.ee, 1 a-better-planet.com, 0 a-busty.com, 1 a-care.net, 1 @@ -5872,6 +5456,7 @@ a2zbabyname.com, 1 a2zplumbing.com.au, 1 a30.tokyo, 0 +a340.com, 1 a356.top, 1 a36533.com, 1 a3m.gmbh, 1 @@ -5892,7 +5477,6 @@ a6stech.me, 1 a7m2.me, 1 a7sa2eat.com, 1 -a82365.com, 1 a8438pb3.com, 1 a88fc.com, 1 a899365.com, 0 @@ -5918,9 +5502,11 @@ aaablindfactory.com, 1 aaahosting70.de, 1 aaainfosystems.com, 1 +aaanya.ru, 1 aaapl.com, 1 aaaplumbers.com, 1 aaapo.com.br, 1 +aaapurse.net, 1 aaar.com.hk, 1 aabeltech.com, 1 aabenjaminjewelry.com, 0 @@ -5930,6 +5516,7 @@ aachen-quiz.de, 1 aachen-umzugsunternehmen.de, 1 aacs-design.com, 1 +aact.org, 1 aad-gp.com, 1 aadl.ga, 1 aadv.com.br, 1 @@ -5962,7 +5549,6 @@ aanhuisgebakken.tk, 1 aanlynkursusse.com, 1 aanlynskool.co.za, 1 -aanwp.com, 1 aanyasri.com, 1 aao.fyi, 1 aaogaragedoorrepairaustin.com, 1 @@ -5977,7 +5563,6 @@ aappe.fr, 0 aaprotocol.tk, 1 aarailfan.com, 1 -aare.guru, 1 aareptan.ch, 1 aarestation.ch, 1 aarhus-protein.dk, 1 @@ -6024,6 +5609,7 @@ aattrans.com, 1 aau.edu, 1 aautoline.tk, 1 +aavaa.org, 1 aavawhistlerhotel.com, 1 aave.com, 1 aavgo.com, 1 @@ -6046,7 +5632,6 @@ abacus-essen.de, 1 abacus-marketing.uk, 1 abacusbouncycastle.co.uk, 1 -abacusflooringsolutions.co.uk, 1 abacusnt.es, 1 abacuste.ch, 1 abacustech.co.jp, 1 @@ -6209,10 +5794,12 @@ abetterdeath.com, 1 abetterwichita.org, 1 abeus.com, 1 +abfluss.com, 1 abg.com.sa, 1 abg.ninja, 1 abgeo.ga, 1 abgrafstenen.nl, 1 +abhaken.com, 1 abhaldus.ee, 1 abhandshake.com, 1 abhayaranya.com, 1 @@ -6230,7 +5817,6 @@ abi95oha.de, 1 abiapp.net, 1 abibliasagrada.tk, 1 -abicem.co.uk, 1 abidinginhesed.com, 1 abierta.cr, 1 abigailfriedland.com, 1 @@ -6264,6 +5850,7 @@ abivert-piscines.fr, 1 abk.com.tr, 1 abkhazianews.tk, 1 +ablauf.com, 1 ablebits.com, 1 ablecha.tk, 1 ablehorsehandlers.au, 1 @@ -6285,9 +5872,9 @@ ablmultiservice.nl, 1 ablx.de, 1 abmackenzie.com, 1 -abmahnhelfer.de, 1 abmarketx.com, 1 abmc.gov, 1 +abmelden.com, 1 abminv.com, 1 abmledger.ca, 1 abn-consultants.ie, 1 @@ -6305,6 +5892,7 @@ abogadoscav.com, 1 abogadosescobarysanchez.es, 1 abogehad.tk, 1 +abolicionistas.com, 1 abolition.net, 1 abolitionism.co.uk, 1 abolitionism.com, 1 @@ -6330,7 +5918,6 @@ abort-report.eu, 1 abortionpill.sg, 1 aborto.tk, 1 -abortopr.com, 1 abos.eu, 0 abouncycastleman.co.uk, 1 aboundworlds.com, 1 @@ -6486,7 +6073,7 @@ abtech.link, 1 abteutonia.de, 1 abth.tk, 1 -abtherapy.co.uk, 1 +abtherapy.co.uk, 0 abthorpe.org, 1 abtinheydari.tk, 1 abu-auftrag.ch, 1 @@ -6533,9 +6120,9 @@ academiaeureka.tk, 1 academiaofimage.com, 1 academica.nl, 1 +academicalacrities.com, 1 academicassembly.com, 1 academicexperts.com, 1 -academicexperts.org, 1 academichealthscience.net, 1 academichelp.gq, 1 academie-angoumois.org, 1 @@ -6548,6 +6135,7 @@ acadiate.com, 1 acadolimited.com, 1 acafcantabria.es, 1 +acafellas.com, 1 acaging.ca, 1 acalcio.ga, 1 acallawayroofing.com, 1 @@ -6602,11 +6190,9 @@ accentchair.net, 1 accentsduterroir.fr, 1 accentwebs.ie, 1 -acces-elevation.fr, 1 accesdirectmarketing.ca, 1 accesdirectmarketing.com, 1 accesloges.com, 1 -acceso25.es, 1 accesoriiutilaje.ro, 1 access-board.gov, 1 access-nl.org, 1 @@ -6615,6 +6201,7 @@ access-techniques.com, 1 access-token.tk, 1 access.beer, 1 +access2employment.com, 1 accessacab.co.uk, 1 accessansweringservices.com, 1 accessauto-occasions.be, 0 @@ -6643,7 +6230,6 @@ accesstosystem.cf, 1 accey.cz, 1 acchan-fun.com, 1 -acchiappasognibedandbreakfast.it, 1 accio.be, 1 accionesyreacciones.com, 1 accioninmobiliaria.tk, 1 @@ -6676,7 +6262,6 @@ accudemia.net, 1 accueil-paysan.com, 1 accueillons.org, 1 -acculex.co.uk, 1 acculongrange.com, 1 accuphotography.com, 1 accuracast.com, 1 @@ -6689,6 +6274,7 @@ accutone.com.mx, 1 acdc-tech.eu, 1 acdc-tech.lv, 1 +acdesignsolution.com, 1 acdk2.de, 1 ace-aegon.cloud, 1 ace-clan.tk, 1 @@ -6708,13 +6294,14 @@ acecardiologyclinic.com, 1 acectamentit.tk, 1 acedstudy.com, 1 +aceenergy.com.tw, 1 acefishing.tk, 1 acefront.co.uk, 1 acegroup.org.tw, 1 aceinflatables.com, 1 aceinstituteonline.com, 1 +aceitesencantados.com, 1 acejunkpros.com, 1 -acekit-create.com, 1 aceleracaodigital.com, 1 aceleraguria.com.br, 1 acelpb.com, 1 @@ -6753,6 +6340,7 @@ acgqwq.gq, 1 acgtalktw.com, 1 acgxi.tk, 1 +ach-portal.com, 1 achalay.org, 0 achat-volets-roulants.fr, 1 achatroom.co.uk, 1 @@ -6823,6 +6411,10 @@ acls13.fr, 1 aclu.org, 0 acm.vc, 1 +acme-dns.eu, 1 +acme-dns.nl, 1 +acme-ssl.eu, 1 +acme-ssl.nl, 1 acmebookkeepingsolutions.com, 1 acmebot.org, 1 acmeuc.com, 1 @@ -6869,6 +6461,7 @@ acquadiparma.kr, 1 acquaparrucchieri.it, 1 acquari.roma.it, 1 +acquario.genova.it, 1 acquasuisse.tk, 1 acquire.co.nz, 1 acquirebpo.com, 1 @@ -6910,12 +6503,14 @@ acsbbs.org, 1 acsc.gov.au, 1 acsd-az.gov, 1 +acse.net, 1 acsemb.org, 1 acsihostingsolutions.com, 0 acsiresearch.com, 1 acsmuhendislik.com.tr, 1 acsports.ca, 1 acss.com, 1 +acstallningsmontage.se, 1 acsvalves.com, 0 act-news.com, 1 act-on.com, 1 @@ -7138,13 +6733,13 @@ adamcoffee.net, 0 adamdixon.co.uk, 1 adamdorman.com, 1 -adame.io, 0 adameveplus.com, 1 adamevevod.com, 1 adamfontenot.com, 1 adamgian.com, 1 adamh.us, 1 adamj.eu, 1 +adamjeelukmanjee.com, 1 adamjoycegames.co.uk, 1 adamkissee.com, 1 adamkostecki.de, 1 @@ -7157,6 +6752,7 @@ adamricheimer.com, 1 adams-gonczi.fun, 1 adamsandle.uk, 1 +adamschmuck.de, 1 adamscountyco.gov, 1 adamscountycoelections.gov, 1 adamscountyemsoh.gov, 1 @@ -7193,6 +6789,7 @@ adaptiveu.io, 1 adaptyourlifeacademy.com, 1 adarixconsultores.com, 1 +adarsh-pandey.com, 1 adarshcloud.in, 1 adarsvidler.me, 1 adasbench.com, 1 @@ -7208,7 +6805,6 @@ adbexcavation.ca, 1 adbglobal.com, 1 adblock.ee, 1 -adblock.ovh, 0 adblockextreme.com, 1 adblockextreme.net, 1 adblockextreme.org, 1 @@ -7232,6 +6828,7 @@ adderall.ml, 1 adderall.space, 1 addes-asso.fr, 1 +addexpiresheaders.com, 1 addicfashion.com, 1 addict.tk, 1 addictedtotravel.pl, 1 @@ -7306,6 +6903,7 @@ adeon.ml, 1 adept-elearning.com, 1 adept.org.pl, 1 +adeptasiaconsulting.com, 1 adescb.ga, 1 adese.es, 1 adesex.in, 1 @@ -7360,6 +6958,7 @@ adinaporter.com, 1 adinfinitum.gq, 1 adinovis.com, 1 +adinplay.com, 1 adinternational.com.au, 1 adiph.fr, 1 adiph.org, 1 @@ -7410,6 +7009,7 @@ admin.google.com, 1 admin.se, 1 admin.stg.fedoraproject.org, 1 +admin24.ke, 1 adminbg.eu, 1 adminconnection.net, 1 admindaily.com, 1 @@ -7445,7 +7045,6 @@ adnempresa.es, 1 adnexa.it, 1 adney.land, 1 -adnfiscal.com, 1 adnolesh.com, 1 adnotam.ch, 1 adnscript.tk, 1 @@ -7495,6 +7094,7 @@ adrafinil.wiki, 1 adrcoforegon.org, 1 adreaminsteel.tk, 1 +adreana.com, 1 adregain.com, 1 adregain.ru, 1 adrenajump.com.br, 1 @@ -7540,7 +7140,6 @@ adrienfelsmann.fr, 1 adrieng.fr, 1 adrienkohlbecker.com, 1 -adriennekiss.net, 1 adriennesmiles.com, 1 adrina.gr, 1 adrinet.tk, 1 @@ -7556,6 +7155,7 @@ adsense-arbitrage.com, 1 adseye.tk, 1 adsforcash.ga, 1 +adshooter.com, 1 adsib.gob.bo, 1 adsl2meg.fr, 1 adsmarketing.tk, 1 @@ -7598,7 +7198,6 @@ adulteducation.org.uk, 1 adultforum.gr, 0 adultgames.pro, 1 -aduro.com.tr, 1 adurra.com, 1 adutoras.com.br, 1 adv-geosci.net, 1 @@ -7644,13 +7243,13 @@ advancedturf.tk, 1 advancedurologyca.com, 1 advancedurologyswla.com, 1 +advancedwcanalytics.com, 1 advancedwriters.com, 1 advancemoversnc.com, 1 advanceoptical.com, 1 advances.in, 1 advancetitan.com, 1 advanceworx.com, 1 -advancingpartners.org, 1 advania.info, 1 advanpath.com, 1 advanpath.net, 1 @@ -7662,7 +7261,6 @@ advantage.sa, 1 advantageaustria.org, 1 advantagemechanicalinc.com, 1 -advantageroofer.com, 1 advantagetowing.com.au, 1 advantis.ai, 1 advantis.cf, 1 @@ -7673,6 +7271,7 @@ advapacs.com, 0 advara.com, 1 advarra.com, 1 +advasa.jp, 0 advasa.net, 1 advbizintel.com, 1 advena.com.au, 1 @@ -7700,7 +7299,6 @@ adventuredogranch.net, 1 adventuredrives.com, 1 adventureforest.nz, 1 -adventuregamers.com, 1 adventureoutrvpark.com, 1 adventureprooutdoors.com, 1 adventureprovisionco.com, 1 @@ -7709,6 +7307,7 @@ adventuresofmo.com, 1 adventuretoursbend.com, 1 adventuringup.com, 1 +adventurouswomen.com.au, 1 adventus.space, 1 adventvalue.com, 1 advercarte.com, 1 @@ -7717,6 +7316,7 @@ adversus-test.tk, 0 adversus-web-staging.tk, 0 advertise-ment.tk, 1 +advertise.cn, 1 advertisebwd.co.uk, 1 advertising-design.tk, 1 advertisingcompany.tk, 1 @@ -7739,6 +7339,7 @@ advinans.se, 1 advinix.fr, 1 advirk.tk, 1 +advise.cn, 1 advisertula.ru, 1 advisorperspectives.com, 1 advmaster.cf, 1 @@ -7747,7 +7348,6 @@ advocatae.com, 1 advocatburo.tk, 1 advocateanakha.com, 1 -advocatechannel.com, 1 advocatize.com, 1 advocator.ca, 1 advoervice.ga, 1 @@ -7802,7 +7402,6 @@ adzuna.com.br, 1 adzuna.de, 1 adzuna.fr, 1 -adzuna.in, 1 adzuna.it, 1 adzuna.nl, 1 adzuna.pl, 1 @@ -7842,11 +7441,13 @@ aegee-utrecht.nl, 1 aegee.eu, 1 aegee.org, 1 +aegis-bot.eu, 1 aegisaccounting.co.uk, 1 aegisalarm.co.uk, 1 aegisalarm.com, 1 aegisalarms.co.uk, 1 aegisalarms.com, 1 +aegissec.ca, 1 aegisys.com, 1 aegon.hu, 1 aegrel.ee, 1 @@ -7905,6 +7506,7 @@ aeroequity.com, 1 aeroexpress.tk, 1 aerofarms.com, 1 +aerofestival.fr, 1 aerofiler.com, 1 aeroflot.gq, 1 aeroframe.tk, 1 @@ -7913,6 +7515,7 @@ aerojet.com, 1 aeroklub.tk, 1 aerolog.co, 0 +aeromot.com, 1 aeron.aero, 1 aeronautix.com, 1 aeropetz.com.br, 1 @@ -7986,6 +7589,7 @@ afadvantage.gov, 1 afaf.or.jp, 1 afanasev.tk, 1 +afandou.com, 1 afanias.org, 0 afas-apps.nl, 1 afasim.tk, 1 @@ -8059,6 +7663,7 @@ affirm-stage.com, 1 affissioni.roma.it, 1 affissionicomunali.it, 1 +affittacamere.firenze.it, 1 affittacamere.roma.it, 1 affittacamereilgirasole.net, 1 affittialmare.it, 1 @@ -8106,6 +7711,7 @@ aficards.com, 1 aficionados.com.br, 1 afilia3.com, 1 +afiliado.top, 1 afilio.de, 1 afilmedia.llc, 1 afinaudio.com, 1 @@ -8114,6 +7720,7 @@ afive.us, 1 afiyetolsun.jp, 1 afkmind.com, 1 +aflalogasperini.com.br, 1 aflam-online.tk, 1 aflasafe.com, 1 aflattr.com, 1 @@ -8125,6 +7732,7 @@ aforism.tk, 1 afp548.com, 1 afreelancersworld.com, 1 +afres.com, 1 afreserve.com, 1 afreshperspective.com, 1 africaclassifieds.ga, 1 @@ -8144,6 +7752,7 @@ africanmangoforum.ga, 1 africanmangoforum.gq, 1 africansafaris.co.nz, 1 +africanteachersassociation-us.org, 0 africantourer.com, 1 africaone-publishing.com, 1 afrijet.ga, 1 @@ -8179,6 +7788,7 @@ afterlifeos.com, 1 aftermagic.com, 1 aftermarketinternational.com, 1 +aftermix.com, 1 afternoonhereyes.tk, 1 afteroblivion.tk, 1 afterpay.com, 1 @@ -8187,7 +7797,6 @@ afterstack.net, 1 aftodioikisi.gr, 1 aftonbladet.se, 1 -aftontickets.com, 1 afuturewithoutfear.org, 1 afuturewithoutfear.us, 1 afuzion.com, 1 @@ -8267,6 +7876,7 @@ againstgynexams.tk, 1 againsttheneighbour.tk, 1 againsttheodds.es, 1 +agalia.com, 1 agalloch.tk, 1 agambition.eu, 1 agamsecurity.ch, 0 @@ -8280,6 +7890,7 @@ agartashop.com, 1 agas.com, 1 agasport.nl, 0 +agastia.com, 1 agatajanik.de, 1 agate.pw, 1 agateh.com.au, 1 @@ -8302,7 +7913,6 @@ ageasagentessummit.pt, 1 agechecker.net, 1 agedcaredentistry.com.au, 1 -agedefying.net, 1 agefriendlyri.org, 1 agehotel.com, 1 ageless-world.tk, 1 @@ -8329,7 +7939,9 @@ agencesaintpierre.fr, 1 agencestaff.fr, 1 agencetourismemali.ml, 1 +agenciaalafia.com.br, 1 agenciacanina.tk, 1 +agenciacoder.com, 1 agenciacolors.com.br, 1 agenciacorujadesign.com.br, 1 agenciacrown.es, 1 @@ -8339,7 +7951,6 @@ agenciakarazai.com.br, 1 agenciaonnmarketing.com, 1 agenciaplanner.com.br, 1 -agenciarse.com, 1 agenciatecben.com.br, 1 agencja-interaktywna.ga, 1 agencja-interaktywna.tk, 1 @@ -8350,7 +7961,6 @@ agencygood.tk, 1 agencyinmotion.com, 1 agencymanager.be, 1 -agencypartner.com, 1 agenda-erwachsenenbildung.de, 1 agenda-loto.net, 0 agenda21senden.de, 1 @@ -8491,6 +8101,7 @@ agora-hirsch.de, 1 agora-soft.cf, 1 agora-verkehrswende.de, 1 +agora.co.il, 1 agora.ru, 0 agorabet.com.br, 1 agoracupom.com.br, 1 @@ -8498,6 +8109,7 @@ agoradesk.com, 1 agorapulse.com, 1 agoratek.fr, 1 +agoraviagem.com.br, 0 agoravisitasguiadas.com, 1 agoravm.tk, 1 agorism.eu.org, 1 @@ -8513,6 +8125,7 @@ agpideas.com, 1 agpsn.com, 1 agr.asia, 1 +agrabah.com, 1 agralines.tk, 1 agrarking.com, 1 agrarking.de, 1 @@ -8529,6 +8142,7 @@ agricultural-technology.tk, 1 agriculture-schools.com, 1 agriculturejournals.cz, 1 +agrifoglio.com, 1 agrifoodtoday.it, 1 agrifutures.com.au, 1 agrigentonotizie.it, 1 @@ -8559,14 +8173,17 @@ agrodolce.it, 1 agrodrip-zahara.com, 1 agroenos.com, 1 +agroequipos.com.mx, 1 agrofind.com.br, 1 agrogrup79.com, 1 agroguia.com.co, 1 +agrohim.com, 1 agroinsider.com, 1 agrokomi.tk, 1 agrokredit.ga, 1 agroland.tk, 1 agrolife.tk, 1 +agroma.com, 1 agromanagement.kz, 1 agromotorsburzaco.com, 1 agron.tk, 1 @@ -8609,7 +8226,6 @@ agustipardo.es, 1 agusto.tk, 1 aguz.tk, 1 -agviet88.com, 1 agvins.fr, 1 agvip1000.com, 1 agvip168.com, 1 @@ -8618,7 +8234,6 @@ agvip88.com, 0 agvip986.com, 1 agwa.name, 1 -agwestfc.com, 1 agwin1.com, 0 agwin9.com, 1 agworkers.com, 1 @@ -8628,13 +8243,13 @@ agzy.vip, 1 ah.fm, 1 aha.io, 1 -ahaic.org, 1 ahanet.tk, 1 ahansen.is, 0 ahbap.org, 1 ahccmadison.com, 0 ahccorleone.tk, 1 ahcpr.gov, 1 +ahd-cyber.org, 1 ahd.com, 0 ahd.de, 1 ahealthyjourney.ca, 1 @@ -8650,6 +8265,9 @@ ahima.org, 1 ahityayinlari.com, 1 ahityayinlari.org, 1 +ahj.no, 1 +ahjindigital.com, 1 +ahjy.com, 1 ahl.gov.au, 0 ahl.im, 1 ahlac.tk, 1 @@ -8659,7 +8277,6 @@ ahlibank.com.qa, 1 ahlz.sk, 1 ahm.com.au, 1 -ahmad.space, 1 ahmadfathy.ml, 1 ahmadjakfar.tk, 1 ahmadmaher.tk, 1 @@ -8691,8 +8308,10 @@ ahosamuel.com, 1 ahosi.com, 1 ahouansou.cz, 1 +ahqf.com, 1 ahrefs.com, 1 ahroproject.org, 1 +ahrora.com, 1 ahrq.gov, 1 ahs.com, 1 ahsanautos.pk, 1 @@ -8749,6 +8368,7 @@ aicfb.in, 1 aichat.io, 1 aichi-tokko-shien.com, 1 +aichou.com, 1 aicial.co.uk, 1 aickelin.eu, 1 aicontent.vn, 1 @@ -8783,7 +8403,6 @@ aids.gov, 1 aidventurers.com, 1 aie.de, 1 -aiecosystem.com.au, 1 aiesecarad.ro, 1 aievaluare.ro, 1 aifi.or.id, 1 @@ -8835,13 +8454,13 @@ ailitonia.xyz, 1 ailladearousa.com, 1 aim.org.pt, 1 +aimara.com, 1 aimare-web.tk, 1 aimarketingdesk.com, 1 aimax.com, 1 aimaye.com, 1 aimdigital.tk, 1 aimeeandalec.com, 1 -aimeisi.com, 1 aimforclimate.org, 1 aimgroup.co.tz, 1 aimiescreations.com, 1 @@ -8872,6 +8491,7 @@ ainewsto.com, 0 ainfographie.com, 1 ainkarim.co, 1 +ainong.com, 1 ainsa.tk, 1 aintfeelingit.com, 1 ainutrition.co.uk, 1 @@ -8903,6 +8523,7 @@ aipulse.org, 1 aiqinggu.com, 1 aiqingli.com, 1 +aiquile.com, 1 air-business.tk, 1 air-clan.tk, 1 air-contact.com, 1 @@ -8914,6 +8535,7 @@ air-swift.com, 1 air-techniques.fr, 1 air-ticket.ga, 1 +airalarm.com, 1 airaplus.ca, 1 airbender.tk, 1 airbnb.ae, 1 @@ -8986,8 +8608,6 @@ airbnbchina.cn, 1 airborne-clan.tk, 1 airborne-commando.tk, 1 -airborneexperience.com, 1 -airbossofamerica.com, 1 airburners.com, 1 airburners.net, 1 aircareair.tk, 1 @@ -9006,6 +8626,7 @@ aircrewportpages.com, 1 aircs.racing, 1 airday.tk, 1 +airdeer.com, 1 airdropics.com, 1 airdropkings.com, 1 airductcleaninggrandprairie.com, 1 @@ -9041,10 +8662,12 @@ airflightsdeals.com, 1 airforce-technology.com, 1 airforce.com, 1 +airformosa.com, 1 airfoto.tk, 1 airfox.cf, 1 airfox.gq, 1 airfryerreceitas.com.br, 1 +airgreen.com, 1 airgun.tk, 1 airgundepot.com, 1 airhelp.com, 1 @@ -9053,6 +8676,7 @@ airi.ga, 1 airicy.com, 1 airikai.com, 1 +airism.com, 1 airit.de, 1 airjet.cf, 1 airjordanpascher.tk, 1 @@ -9290,6 +8914,7 @@ airtrain.gq, 1 airtrolinc.com, 1 airtron.com, 1 +airupdate.com, 1 airventuri.com, 1 airvida.sg, 1 airvpn.org, 1 @@ -9354,6 +8979,7 @@ aixm.aero, 1 aixploringprovence.com, 1 aixue.net, 1 +aizhuan.com, 1 aizxxs.com, 1 aizxxs.net, 1 aj-laixada.tk, 1 @@ -9370,7 +8996,6 @@ ajaxfansite.tk, 1 ajaxfansonly.tk, 1 ajaxforever.tk, 1 -ajaxified.com, 1 ajaxmasterdam.tk, 1 ajaxmfs.com, 1 ajaxnetwerk.tk, 1 @@ -9381,7 +9006,6 @@ ajaxtime.tk, 1 ajaxtraining.tk, 1 ajaxworld.tk, 1 -ajces.com, 1 ajedrezbolivia.tk, 1 ajetaci.cz, 1 ajeventhire.co.uk, 1 @@ -9417,7 +9041,6 @@ ajsih.org, 1 ajtmh.org, 1 ajto.pro, 1 -ajvandeven.com, 1 ajvco.com.hk, 1 ajvco.net, 1 ajvocab.com, 1 @@ -9427,7 +9050,6 @@ ak-online.tk, 1 ak-varazdin.hr, 1 ak-wohnen.de, 1 -ak.sb, 1 ak2000.tk, 1 ak47-miyamoto.spdns.org, 1 ak68.tk, 1 @@ -9452,9 +9074,11 @@ akamon.ac.jp, 1 akamsg.com, 1 akamsg.me, 1 +akamslinkphoneqr.co, 1 +akamsnetworksetup.com, 1 akamspairyourphone.com, 1 akamsphonelink.com, 1 -akamu.de, 1 +akamu.de, 0 akaratasker.com, 1 akari.net, 1 akarisoftware.co.uk, 1 @@ -9474,6 +9098,7 @@ akasmedikal.net, 1 akatsukainuneko.co.jp, 1 akaxaka.tk, 1 +akayu.com, 1 akaziya.cf, 1 akbam.co.uk, 1 akbarsempoi.tk, 1 @@ -9515,7 +9140,7 @@ akhilindurti.com, 0 akiakira-nsn.gov, 1 akiba-server.info, 1 -akibarubinstein.pl, 1 +akibarubinstein.pl, 0 akiekintveld.com, 1 akiganka.com, 1 akijo.de, 1 @@ -9547,9 +9172,9 @@ akkumulator-kereso.hu, 1 akl.city, 1 aklagare.se, 1 -akm941roofing.com, 1 akmatrix.org, 1 akmens.id, 1 +ako.gl, 1 akoben.cloud, 1 akoch.net, 1 akoestischafbouwen.nl, 1 @@ -9584,6 +9209,7 @@ akselinurmio.fi, 1 aksenov.tk, 1 aksenovalexey.tk, 1 +aksesuarai.com, 1 akshavitrends.com, 1 akshay.in.eu.org, 1 akshit.me, 1 @@ -9605,12 +9231,11 @@ aktivace.eu, 1 aktive-arbeitslose.at, 1 aktivierungscenter.de, 1 -aktivitetatil.com, 1 aktivpark-lumdatal.de, 1 aktransmission.com, 1 aktuel-urunler.com, 1 -aktuelfirsat.com, 1 aktuelleprospekte.at, 1 +aktueller.com, 1 akuislam.com, 1 akuku-parkitka.pl, 1 akumarjain.com, 1 @@ -9636,6 +9261,8 @@ al-capone.tk, 1 al-craft.info, 1 al-dostour.com, 1 +al-etraaf-belmoahlat-fi-almania.de, 1 +al-etraaf-fi-almania.de, 1 al-hekka.com.ua, 1 al-mashora.com, 1 al-monitor.com, 1 @@ -9659,7 +9286,7 @@ alabamadebtrelief.org, 1 alabamafurs.com, 1 alabamanet.tk, 1 -alabamaonlinedivorce.com, 1 +alabamaonlinedivorce.com, 0 alabamasheriffs.com, 1 alabamasoilandwater.gov, 1 alabamatitlesearch.com, 1 @@ -9740,6 +9367,7 @@ alarmnewengland.com, 1 alarmport-security.net, 1 alarmport.cz, 1 +alarmreceiver.net, 1 alarna.de, 1 alaroche.be, 1 alas-negras.tk, 1 @@ -9808,6 +9436,7 @@ albendazole.ml, 1 albergolafiorita.com, 1 alberguecovadonga.es, 1 +alberosano.it, 1 albert-yu.com, 1 albertathome.org, 1 albertcuyp-markt.amsterdam, 1 @@ -9830,6 +9459,7 @@ albertpedersen.com, 1 alberts-blatt.de, 0 albertspahiu.tk, 1 +alberttalkstech.online, 1 alberttonrubbleremovals.co.za, 1 alberttwpmi.gov, 1 albertvillemn.gov, 1 @@ -9872,6 +9502,7 @@ alcatraz-webdesign.tk, 1 alcatrazeast.com, 1 alcatraztourtickets.com, 1 +alcazaar.com, 1 alchakov.tk, 1 alchemist-heaven.tk, 1 alchemisten.tk, 1 @@ -9965,6 +9596,7 @@ alelectricista.es, 1 alelin.ml, 1 alemagia.pl, 1 +aleman-auto.com, 1 alemangranada.tk, 1 alen.nl, 1 alena.ga, 1 @@ -10015,6 +9647,7 @@ aleszejdl.cz, 1 alethea.ai, 0 aletm.it, 0 +aleutrealestate.com, 0 alevel.tech, 0 alevi-forum.tk, 1 alevi.tk, 1 @@ -10072,6 +9705,7 @@ alexandrevicente.net, 1 alexandriamainst.market, 1 alexandrianh.gov, 1 +alexandrin.com, 1 alexandrite.cf, 1 alexandros.io, 0 alexandryimmobilier.fr, 1 @@ -10114,7 +9748,6 @@ alexjacinto.com, 1 alexjsully.me, 1 alexkoala.com, 1 -alexkuleshov.com, 0 alexlambertz.de, 1 alexlombardo.tk, 1 alexlouden.com, 1 @@ -10154,6 +9787,7 @@ alexveil.com, 1 alexvetter.de, 0 alexweber.tk, 1 +alexwiremesh.com, 1 alexyang.me, 1 alexzeta.tk, 1 aleymedya.ga, 1 @@ -10180,7 +9814,6 @@ alfafile.net, 1 alfagl.com, 1 alfahir.hu, 1 -alfaiptv.shop, 1 alfalasteenyia.cf, 1 alfambra.tk, 1 alfapack-shop.com, 1 @@ -10257,13 +9890,16 @@ alhsfb.com, 0 alhuqul-kh.com, 1 ali-shariati.tk, 1 +ali360.com, 1 alia-helianthi.tk, 1 aliaakademi.com.tr, 1 +aliads.com, 1 aliakpoyraz.com, 1 alialkurdy.tk, 1 aliamakeup.com, 1 aliancadesentupidora.com.br, 1 alianet.org, 1 +aliansinews.id, 1 aliantsoft.pl, 1 aliasbox.org, 1 aliasbox.ovh, 1 @@ -10288,6 +9924,7 @@ alicekinkycat.net, 1 alicestudio.it, 1 alicetone.net, 1 +alicevardel.fr, 1 alicia-carvalho.com, 1 alicialab.org, 1 alida.com, 1 @@ -10301,6 +9938,7 @@ alieninternet.be, 1 alieninternet.eu, 1 alieninvasion.fun, 1 +alienpls.org, 1 alienresidence.tk, 1 alienslab.net, 1 alienstat.com, 1 @@ -10329,14 +9967,15 @@ alila.dog, 1 alilepro.cf, 1 alilialili.ga, 1 +alilog.com, 1 alimahmood.com, 1 alimanaka-rabesata.tk, 1 alimarketfoodtech.es, 1 +alimate.com, 1 aliment-covid19.com, 1 alimentosmcf.com, 1 alimentsduquebecaumenu.com, 1 alimenty.tk, 1 -alimerkaonline.es, 1 alimeta.it, 1 alimtyaz.estate, 1 alimwilliams.tk, 1 @@ -10354,6 +9993,7 @@ alio.lt, 1 aliorange.com, 1 aliosmanyuksel.com.tr, 1 +alipub.com, 1 aliqorbani.ir, 1 alireza2love.tk, 1 alirezahesari.com, 1 @@ -10361,6 +10001,7 @@ alis-test.tk, 1 alisblog.ml, 1 alisceon.com, 1 +alisearch.com, 1 alishanova.tk, 1 alishapiro.com, 1 alisoft.gq, 1 @@ -10415,6 +10056,7 @@ alkoferma.gq, 1 alkogol.ga, 1 alkoholiker-forum.de, 1 +alkomedfrank.com, 1 alkon.gg, 1 alkopedia.tk, 1 alkor.tk, 1 @@ -10515,6 +10157,7 @@ allcinema.net, 1 allcleanservices.ca, 1 allcloud.com, 1 +allcomic.com, 1 allcooking.tk, 1 allcookingclub.com, 1 allcourts.tk, 1 @@ -10543,6 +10186,7 @@ allegra180.ga, 1 allegra180mg.ga, 1 allegrapark.ga, 1 +allegreto.com, 1 allegrettoresort.com, 1 allegrettoresortandvineyard.com, 1 allegrettoresortandvineyardbyayres.com, 1 @@ -10569,7 +10213,6 @@ allensstudio.com, 1 allensun.org, 1 allentertainment.de, 1 -allentherapeuticmassage.com, 1 allenturley.com, 1 allenwillis.ga, 1 allerbestefreunde.de, 1 @@ -10583,7 +10226,6 @@ allerstorfer.at, 1 allerzeiten.com, 1 allerzieleninhetvondelpark.nl, 1 -alles-bekloppte.de, 1 alles-kan.be, 1 alles-nur-ge.cloud, 1 alles.cx, 1 @@ -10622,7 +10264,6 @@ allgemeinarzt-wenta-bralla.de, 1 allgemeine-zeitung.de, 1 allgermanmotorworks.com, 1 -allglobal.net, 1 allgo-games.com, 1 allgoodkeys.com, 1 allgraduates.com.au, 1 @@ -10632,6 +10273,7 @@ allhallows.tk, 1 allhard.org, 1 allhits.ml, 1 +allhonest.com, 1 allhsa.com, 1 alli-diet-pill.cf, 1 alli-pills.cf, 1 @@ -10676,6 +10318,7 @@ allitcrm.sytes.net, 1 allius.de, 1 alljamin.com, 1 +alljobspro.com, 1 alljokesaside.tk, 1 allkindsofrecipes.com, 1 alllaboutchickens.tk, 1 @@ -10715,7 +10358,6 @@ allpantypics.com, 1 allpaydirect.com, 1 allpedia.tk, 1 -allpinouts.org, 1 allpipetechnologies.com.au, 1 allpointsblog.com, 1 allporn.pics, 1 @@ -10759,7 +10401,7 @@ allstarink.com.au, 1 allstarquilts.com, 1 allstatedealerservices.com, 1 -allsun.online, 1 +allsun.online, 0 allsurpl.us, 1 allsurplus.com, 1 allsync.com, 1 @@ -10783,6 +10425,7 @@ alltimespost.com, 1 alltourism.tk, 1 alltownfresh.com, 1 +alltracon.com, 1 alltrade.ga, 1 alltravelstips.com, 1 alltrippers.com, 1 @@ -10800,7 +10443,6 @@ allvips.ru, 1 allwaterjet.com, 1 allways.tk, 1 -allweatherheatingandairconditioning.com, 0 allwebsites.tk, 1 allwebtuts.com, 1 allwiki.tk, 1 @@ -10813,6 +10455,7 @@ allyachts.gq, 1 allyfile.com, 1 allyoucanstyle.de, 1 +allysonsouza.com.br, 1 allyspot.com, 1 allyweds.com, 1 almaarkansas.gov, 1 @@ -10824,6 +10467,7 @@ almacivica.org, 1 almadaria.com, 1 almagalla.com, 1 +almaghrebsport.com, 1 almajaniyate.ga, 1 almalinux.org, 1 almanachotels.com, 1 @@ -10834,6 +10478,8 @@ almanilan.com, 0 almanshood.com, 1 almanyacv.com, 0 +almanyada-denklik.de, 1 +almanyada-denklik.info.tr, 1 almarail.tk, 1 almargen.ga, 1 almargen.tk, 1 @@ -10880,7 +10526,6 @@ almurtaqa.com, 1 almusbahperfume.com, 1 almut-zielonka.de, 1 -almutawapharmacies.com.kw, 1 almworks.com, 1 almx.net, 1 alnaharnews.net, 1 @@ -10969,10 +10614,10 @@ alpha-kamera.de, 1 alpha-shop.gr, 1 alpha.ch, 1 +alphaagency360.com, 1 alphaassurances.com, 1 alphabet-z.xyz, 1 alphabetsigns.com, 1 -alphabetworksheetsfree.com, 1 alphabit.gr, 1 alphablueocean.com, 1 alphabouncycastles.co.uk, 1 @@ -11016,7 +10661,6 @@ alphatv.cf, 1 alphatv.ga, 1 alphavit.ru, 1 -alphawavemetals.com, 1 alphaworks.it, 1 alphazure.co.uk, 1 alphazure.com, 1 @@ -11027,10 +10671,12 @@ alphotelmilano.it, 1 alpina-farben.de, 1 alpinar.tk, 1 +alpinatours.nl, 1 alpine-holiday.de, 1 alpinebank.com, 1 alpinedentalhealth.com, 1 alpinehighlandrealty.com, 1 +alpinenursinghome.com, 1 alpineplanet.com, 1 alpinepubliclibrary.org, 1 alpinestarmassage.com, 1 @@ -11046,17 +10692,20 @@ alr-photography.com, 1 alrahman.ch, 1 alrahman.de, 1 +alrashid-law.com, 1 alre-outillage.fr, 1 alredho.com, 1 alrehmantech.tk, 1 alrioart.com, 1 alrobotics.net, 1 alroniks.com, 0 +alrowadexchange.com, 1 alruknalswissre.com, 1 alsaagency.tk, 1 alsabil.tk, 1 alsace-informatique.shop, 1 alsetat.com, 1 +alsgourmetsausages.com, 1 alshabab.tk, 1 alshamil.tk, 1 alsharkest.net, 1 @@ -11068,7 +10717,6 @@ alsteadnh.gov, 1 alstertouch.com, 1 alstertouch.de, 1 -alsutica.org, 1 alt-pannekow.de, 1 alt-three.com, 0 alt-til-windows.dk, 1 @@ -11121,8 +10769,10 @@ alte-wassermuehle-friesoythe.de, 1 altea.it, 1 altec.pl, 1 +altecgmbh.de, 1 altenagala.nl, 1 altenahr.de, 1 +alteralife.eu, 1 alteraro.com, 1 alteraro.org, 1 alterbaum.net, 1 @@ -11138,7 +10788,6 @@ alterlinks.fr, 1 alterlinks.it, 1 alterlinks.nl, 1 -altermama.ru, 1 altermidya.net, 1 altern-in-wuerde.com, 1 alternador.com.br, 1 @@ -11172,7 +10821,7 @@ altes-sportamt.de, 1 altesses.eu, 1 alteva.services, 1 -althacare.com, 1 +althacare.com, 0 altharis.net, 1 altheaarg.com.ar, 1 althi.nl, 1 @@ -11254,7 +10903,6 @@ alukard.ml, 1 alukard.pro, 1 alulasails.com, 1 -alumetallaloma.com, 1 aluminium-giesserei.de, 1 aluminumfencestlouis.com, 1 aluminumpallets.net, 1 @@ -11354,6 +11002,7 @@ amaderforum.tk, 1 amadeusproject.cf, 1 amadin.tk, 1 +amadmission.in, 1 amadoraslindas.com, 1 amadorcounty.gov, 1 amaeruinc.com, 1 @@ -11372,7 +11021,6 @@ amalfipositanoboatrental.com, 1 amalgaamvrij.tk, 1 amalgaamziekte.tk, 1 -amalgambiotech.com, 1 amalgamma.ml, 1 amalou-photografie.de, 1 amambebe.com, 1 @@ -11402,10 +11050,12 @@ amarinbabyandkids.com, 1 amarresdeamorconelbrujoguillermo.com, 1 amarresperuanos.com, 1 +amarsolution.com, 1 amartaramitramandal.tk, 1 amartours.pt, 1 amaruddinmufid.com, 1 amaruz.tk, 1 +amarylis.com, 1 amasea.yachts, 1 amasing.tk, 1 amateri.com, 1 @@ -11454,13 +11104,13 @@ amazon.se, 1 amazonaws-china.com, 1 amazonbookreview.com, 1 +amazoncreatica.online, 1 amazonseoservices.com, 1 amazonteckathon.com, 1 amazstaff.com, 1 amaztravail.com, 1 amazwerk.com, 1 amb.cat, 1 -amb.com.br, 1 amb.tf, 1 ambankspot.com, 1 ambar.org, 1 @@ -11468,6 +11118,7 @@ ambasady.cz, 1 ambassify.com, 1 ambassify.eu, 1 +amber-backend-app-826d62a5abda.herokuapp.com, 1 amberalert.gov, 1 amberba.tk, 1 ambercaravalho.com, 1 @@ -11493,7 +11144,6 @@ ambisonia.com, 1 ambitionbox.com, 1 ambivalence.tk, 1 -ambleinn.co.nz, 1 amblin.com, 1 ambor.com, 1 ambor.org, 1 @@ -11515,6 +11165,7 @@ ambulanzeprivate.milano.it, 1 ambulari.cz, 1 ambulatori.it, 1 +amburgo.com, 1 amcanalense.tk, 1 amcangroup.com, 1 amcasia.com, 1 @@ -11551,6 +11202,7 @@ ameeventos.pt, 0 amefrec.co.jp, 1 ameho.me, 0 +ameinteriores.pt, 0 ameisenbaer.tk, 1 amelanchiers.tk, 1 amelia-wedding.pl, 1 @@ -11611,6 +11263,7 @@ americanpointer.co, 1 americanpop.be, 1 americanpridefund.com, 1 +americanreels.com, 1 americanreservations.us, 1 americans.cam, 1 americanstrategic.com, 0 @@ -11684,11 +11337,13 @@ amiciperlatesta.it, 1 amico.ca, 1 amico.dk, 1 +amicon.com, 1 amicosauro.tk, 1 amicus-webdesign.de, 1 amicusjunior.ro, 1 amicusrx.com, 1 amie.so, 1 +amiez.com, 1 amifoundation.net, 1 amigaremix.com, 1 amigatraktor.tk, 1 @@ -11715,6 +11370,7 @@ aminko.ga, 1 aminoro.de, 1 aminos.tk, 1 +aminta.de, 1 aminullrouted.com, 1 amion.com.ua, 1 amionamiondrugsdotcom.com, 1 @@ -11727,6 +11383,7 @@ amirautos.com, 0 amirhanova-a.ru, 1 amirkaraj.tk, 1 +amirmarketanzali.ir, 1 amis-du-cinema.com, 1 amis-sh.fr, 1 amisdelemm.fr, 1 @@ -11761,7 +11418,7 @@ amministratoredicondominio.roma.it, 1 amministratoristabilitorino.tk, 1 amministrazioni.roma.it, 1 -ammoland.com, 1 +ammoland.com, 0 ammsystems.pl, 1 ammy.xyz, 1 amnathrig.com, 1 @@ -11797,6 +11454,7 @@ amoraquatropatas.org, 1 amordoce.com, 1 amorecivilizedage.net, 1 +amorekids.es, 1 amoremportugal.pt, 1 amoresexo.pt, 1 amorgos-aegialis.com, 1 @@ -11838,6 +11496,7 @@ ampersandsmallbusiness.com, 1 ampetronic.com, 1 ampflower.gay, 1 +ampgroep.nl, 1 amphetamines.org, 1 amphibo.ly, 1 amphora.jp, 1 @@ -11855,6 +11514,7 @@ amplifiedit.com, 1 amplifier-technics.tk, 1 amplifire.com, 1 +amplify.gov.au, 1 ampparit.com, 1 ampproject.com, 1 ampproject.org, 1 @@ -11865,7 +11525,7 @@ amr.de, 1 amrctraining.co.uk, 1 amrealtypr.com, 1 -amref.org, 1 +amri.nl, 1 amrita.club, 1 amritps.com, 1 amroelkhatib.fi, 1 @@ -11908,7 +11568,7 @@ amundi-ee.com, 1 amundi-tc.com, 1 amundsenadventure.com, 1 -amundsensports.com, 1 +amundsensports.com, 0 amunoz.org, 1 amuq.net, 1 amur-news.net, 1 @@ -11916,7 +11576,7 @@ amur.tk, 1 amusa.cl, 1 amush.vip, 1 -amva.it, 1 +amuzante.com, 1 amvip9.com, 1 amvisor.com, 1 amvisualgraphics.com, 1 @@ -11927,6 +11587,7 @@ amy-nichols.ga, 1 amyapets.tk, 1 amyfoundhermann.com, 1 +amyknickerbocker.com, 1 amymabel.com, 1 amymargolislcsw.com, 1 amymartiraphotography.com, 1 @@ -11950,6 +11611,7 @@ an-zin.com, 1 an0ns.ru, 1 an0ns.tk, 1 +an7hrax.se, 1 anaal-nathrakh.tk, 1 anaaldea.tk, 1 anaalmeisjes.tk, 1 @@ -11996,6 +11658,7 @@ analfistulatreatment.sg, 1 analgesia.ga, 1 analgesia.net, 1 +analiespantry.com, 1 analinsting.tk, 1 analisi-grammaticale.biz, 1 analisi-logica.it, 1 @@ -12031,7 +11694,6 @@ ananasposter.ru, 1 anandmaratha.com, 1 anangeix.tk, 1 -anankecosmetics.com, 1 anantshri.info, 1 ananyagupta.tk, 1 anaprieto.com, 1 @@ -12044,6 +11706,7 @@ anarchista.top, 1 anarchistfederation.net, 1 anarchistischefoderation.de, 1 +anarchistmedia.co.uk, 1 anarchistos.tk, 1 anarchotv.tk, 1 anarchy.eu.org, 1 @@ -12124,9 +11787,9 @@ anclarma.fr, 1 ancolies-andre.com, 0 anconatoday.it, 1 -ancuong.com, 1 and-stuff.nl, 1 and-tax.jp, 1 +andain.com, 1 andalin.com, 1 andalosse.tk, 1 andalucia.com, 1 @@ -12142,7 +11805,6 @@ anderskp.dk, 0 andersoncountytn.gov, 1 andersonenergy.com.au, 1 -andersonfdesigner.com.br, 1 andersonkelly.com, 1 andersonlegal.co, 1 andersonmanufacturing.com, 1 @@ -12154,6 +11816,7 @@ anderstoneel.tk, 1 anderstornkvist.se, 1 andes.gr, 1 +andesiel.com, 1 andesnevadotours.com, 1 andesnewyork.gov, 1 andeticaret.com, 1 @@ -12239,7 +11902,6 @@ andreoliveira.io, 1 andreotti-furniture.com, 1 andrepicard.de, 1 -andrerinas.de, 1 andresbandb.tk, 1 andrescuartas.tk, 1 andresgarciapersonal.com, 1 @@ -12252,8 +11914,9 @@ andressaflores.com.br, 1 andresvillanueva.mx, 1 andresxmd.eu, 1 -andreundnina.de, 1 +andreundnina.de, 0 andrew-lazarev.com, 1 +andrew.eu.org, 1 andrew.fi, 1 andrewazzopardi.org, 1 andrewbennett.ltd, 1 @@ -12367,6 +12030,7 @@ andyconcreting.com.au, 1 andycraftz.eu, 1 andycrockett.io, 1 +andydominiquerak.com, 1 andyduong.work, 0 andyhost.no, 1 andyjohnsonart.com, 1 @@ -12400,6 +12064,10 @@ anekdotiki.tk, 1 anelik.tk, 1 anelki.net, 1 +anerkennung-in-deutschland-antragservice.de, 1 +anerkennung-in-deutschlandantragsservice.de, 1 +anerkennungindeutschlandantragservice.de, 1 +anerkennungindeutschlandantragsservice.de, 1 aneslix.com, 0 anesmebeli.com, 1 anessex.wedding, 1 @@ -12414,8 +12082,8 @@ anexperimentedblog.tk, 1 anextraordinaryday.net, 1 anfadern.com, 1 -anfalas.ddnss.de, 1 anfarabic.com, 1 +anfei.com, 1 anfieldbc.co.uk, 1 anfilada.info, 1 anfloors.ru, 1 @@ -12424,6 +12092,7 @@ angablade.com, 1 angarstroy.com, 1 ange-de-bonheur444.com, 1 +angeben.com, 1 angel-body.com, 1 angel-jrk.com, 1 angel-wing.jp, 1 @@ -12442,6 +12111,7 @@ angelesdelabismo.com, 1 angelesydemonios.es, 1 angelfood.org, 1 +angelhaken.com, 1 angelhammer.tk, 1 angelic47.com, 1 angelicapanganibansite.tk, 1 @@ -12455,8 +12125,6 @@ angelitomagno.es, 1 angeljmadrid.com, 1 angelkeepers.net, 1 -angelmassageva.com, 1 -angelnumber.faith, 1 angelo4ek.tk, 1 angeloangioi.tk, 1 angeloroelen.tk, 1 @@ -12480,6 +12148,7 @@ angepsychedelices.tk, 1 angeredmoon.tk, 1 angermanalvorna.tk, 1 +angesehen.com, 1 angestoepselt.de, 1 angie-webdesign.ch, 0 angiejones.com, 1 @@ -12506,6 +12175,7 @@ angloeastern.com, 1 anglogoldashanti.com, 1 anglopoltransport.pl, 1 +angolo.com, 1 angolo.ga, 1 angora.id, 1 angorarabbitsaspets.com, 1 @@ -12527,6 +12197,7 @@ angusbarn.com, 1 anh-dv.com, 1 anhaffen.lu, 0 +anhangabau.com, 1 anhdvboot.com, 1 anhdvshop.com, 1 anhembi.br, 1 @@ -12536,6 +12207,7 @@ aniabuduje.pl, 1 aniaimichal.eu, 1 anian.ch, 0 +aniartacademies.org, 1 aniasafe.it, 1 aniblizzard.tk, 1 anicloud.com.br, 1 @@ -12579,7 +12251,6 @@ animalrehab.sg, 1 animals-world.tk, 1 animalsex.video, 1 -animalsfield.com, 1 animalshelter.tk, 1 animalsphoto.tk, 1 animalstropic.com, 1 @@ -12695,7 +12366,6 @@ aniwatch.me, 1 aniwhen.com, 1 aniya.moe, 1 -anizpay.com, 1 anjajoerger.life, 1 anjansundaram.com, 1 anjara.eu, 1 @@ -12704,6 +12374,7 @@ anjoola.com, 1 anjtransportsolutions.com.au, 1 anjunexpress.com.br, 1 +ankam.com, 1 ankane.org, 1 ankanetworks.net, 1 ankaraarabakiralama.com.tr, 1 @@ -12804,6 +12475,7 @@ annekebemer.nl, 1 annekleinert.de, 1 anneli.biz, 1 +annelida.com, 1 annelies-monsere.tk, 1 anneliesvanhoof.tk, 1 annelisetouya.com, 1 @@ -12851,7 +12523,6 @@ annyaurora.net, 1 annygraces.com, 1 annymail.com, 1 -anodas.lt, 1 anohana.org, 1 anokacountybuys.gov, 1 anokawineandspirits.gov, 1 @@ -12869,7 +12540,6 @@ anonase.com, 1 anoncrypto.org, 1 anoneko.com, 1 -anongoth.pl, 0 anonhq.com, 1 anonicloud.ch, 1 anoniem-domein.nl, 1 @@ -12915,7 +12585,7 @@ anpaju.gq, 1 anpigabon.ga, 1 anquankongjian.com, 1 -anquanssl.com, 0 +anquanssl.com, 1 anrworldwide.com, 1 ans-ge.ch, 0 ans-solutions.com, 1 @@ -13008,6 +12678,7 @@ anthisis.tv, 1 anthisnes.org, 1 anthony-bardon.eu, 1 +anthony.ro, 1 anthonychampagne.me, 1 anthonydegrande.tk, 1 anthonyellis.co.uk, 1 @@ -13137,6 +12808,7 @@ antivirusnet.tk, 1 antivirusnik.tk, 1 antiwarsongs.org, 1 +antizanzare.it, 1 antize.tk, 1 antnetwork.tk, 1 antocom.com, 1 @@ -13168,7 +12840,6 @@ antoniomarques.eu, 0 antoniorodriguesadv.com.br, 1 antonios.ch, 1 -antoniosisto.it, 1 antonioso.ng, 1 antonioucabinets.com.au, 1 antonis.cy, 1 @@ -13183,19 +12854,24 @@ antoshka-net.tk, 1 antota.lt, 1 antragsgruen.de, 1 +antragsservice-anerkennung-indeutschland.de, 1 +antragsserviceanerkennungindeutschland.de, 1 antraxx.ee, 1 antrimcountymi.gov, 1 antrimnh.gov, 1 antrodiulisse.eu, 0 +antropico.com, 1 antroposofica.com.br, 1 ants-and-me.ml, 1 ants-carte-grise.fr, 1 antsa.cc, 1 antsa.duckdns.org, 1 +antsiferov.eu, 1 antstoolbox.com, 1 antti.codes, 1 antts.uk, 1 antts.xyz, 1 +antunes.com, 1 anturis.com, 1 antwerpist.com, 1 antwire.net, 1 @@ -13211,7 +12887,6 @@ anulowano.pl, 1 anuntulmeu.tk, 1 anunturitv.ro, 1 -anurawebdevelopment.nl, 1 anvilmetal.tk, 1 anvilo.com, 1 anvilsales.tk, 1 @@ -13238,8 +12913,8 @@ any-id.online, 1 any-id.store, 1 any-link-page.de, 1 +any6.com, 1 anya-carter.com, 1 -anya.moe, 1 anyad.at, 1 anyboat.com.au, 1 anybodylistening.net, 1 @@ -13271,10 +12946,10 @@ anyrisk.ru, 1 anyrose.ga, 1 anysale.ga, 1 -anyservicemanuals.com, 1 anyshapemusic.com, 1 anyshow.ga, 1 anystack.xyz, 1 +anythingforsports.com, 1 anytimefitness.co.in, 1 anytimefitness.co.uk, 1 anytimefitness.nl, 1 @@ -13302,6 +12977,7 @@ aoadatacommunity.us, 1 aoaprograms.net, 1 aobogo.com, 1 +aocai.com, 1 aod-tech.com, 1 aodisco.co.uk, 1 aoe9.com, 1 @@ -13311,6 +12987,7 @@ aofusa.net, 1 aogas.co.za, 0 aogph.org, 1 +aohao.com, 1 aoicprobationil.gov, 1 aoil.gr, 1 aojf.fr, 1 @@ -13320,6 +12997,7 @@ aolcollege.com, 1 aomar-mohammedi.tk, 1 aomeikey.org, 0 +aomi.com, 1 aomz.org, 1 aonedatasolution.com, 1 aonhewitt.com.cy, 1 @@ -13334,23 +13012,27 @@ aorhan.com, 1 aori.com, 1 aoronyx.com, 1 +aorui.com, 1 aosc.kz, 1 aosclan.tk, 1 aoshiya.com, 1 +aosika.com, 1 aospa.co, 1 aostacarnavals.it, 1 aosus.org, 1 aotearoa.maori.nz, 1 aotearoafreepress.com, 1 -aotearoaleaks.org, 1 +aotearoaleaks.org, 0 aotech.tw, 1 aotopo.com, 1 +aotuo.com, 1 aova.loan, 1 aovup.com, 1 aoxinstudy.com, 1 aoyadaily2024.com, 1 aoyagi-farm.jp, 1 aoyama-azabu-dc.com, 1 +aoyamacc.co.jp, 1 aozorashika.info, 1 ap-auto.pl, 1 ap-bg.eu, 1 @@ -13384,7 +13066,6 @@ apartments.co.nz, 1 apartrentrotterdam.nl, 1 apartyakamoz.com, 1 -apassodarte.com, 1 apatransport.com, 1 apbassettsolicitors.co.uk, 1 apbforum.tk, 1 @@ -13417,6 +13098,7 @@ apelsin.ml, 1 apem.com, 1 aperainst.com, 1 +aperature.com, 1 apercloud.es, 1 aperioadvice.ga, 1 aperiomoney.ga, 1 @@ -13469,6 +13151,7 @@ api.org.tr, 1 api.recurly.com, 1 api.saxo, 1 +api.spa, 1 api.tr, 1 api2cart.com, 1 api42.ch, 1 @@ -13508,7 +13191,6 @@ apiris.fr, 1 apis.google.com, 1 apit-kovrov.ru, 1 -apitodemestre.com.br, 1 apitpc.com.br, 1 apiu.me, 1 apix-drive.com, 1 @@ -13526,9 +13208,7 @@ apkmaze.com, 1 apkmint.co, 1 apkmody.io, 1 -apkmoj.com, 1 apknut.com, 1 -apkod.com, 1 apkpokemongo.ga, 1 apkpokemongo.gq, 1 apkpokemongo.tk, 1 @@ -13620,6 +13300,7 @@ apostasdesportivas.tv, 1 apostasecasinos.pt, 1 apostillelondon.com, 1 +apostrophe.pl, 1 apotex.com, 1 apothecarydouglasville.com, 1 apotheek-ict.nl, 1 @@ -13678,6 +13359,7 @@ appelboom.com, 1 appelboomdefilm.nl, 1 appelerintrt.tk, 1 +appelhof.com, 1 appemployees.tk, 1 appengine.google.com, 1 appetia.io, 1 @@ -13714,12 +13396,13 @@ apple.wf, 1 apple77.net, 1 applebank.com, 1 -applebee1558.com, 1 applebees.com, 1 applecare.cz, 1 applecommunity.net, 1 appledroid.ru, 1 +appleedu.com, 1 appleexterminating.com, 1 +applefeel.com, 1 applefix.it, 1 appleglasscompany.com, 1 applegun.com, 1 @@ -13741,6 +13424,7 @@ applet.cyou, 1 appletonmn.gov, 1 appletonwi.gov, 1 +appletoy.com, 1 appletree.is, 1 appletreemedicalgroup.com, 1 applevalleyca.gov, 1 @@ -13791,9 +13475,9 @@ appraisalroomest.ga, 1 apprank.in, 1 appreal-vr.com, 1 -appreciativeaf.com, 1 apprendre-le-russe-avec-ania.fr, 1 apprenticedocs.com.au, 1 +apprenticeship-toolbox.eu, 1 apprenticeship.gov, 1 apprenticeships.gov, 1 apprentimillionnaire.com, 1 @@ -13874,6 +13558,7 @@ apriorit.com, 1 aprizalputra.my.id, 1 aprofunda.art.br, 1 +apropoaalst.be, 1 apropont.hu, 1 apropotv.ro, 0 apropotv.tk, 1 @@ -13889,7 +13574,6 @@ apsissolutions.com, 1 apsistemas.info, 1 apsl.sk, 0 -apsnewcastle.com, 0 apspayroll.com, 1 apsprofessions.gov.au, 0 apsreform.gov.au, 0 @@ -13951,7 +13635,6 @@ aqua-oxygene.fr, 0 aqua-print.com.ua, 1 aqua-richtig.de, 1 -aqua.pk, 1 aquababy.at, 1 aquabiodesign.tk, 1 aquablue.tk, 1 @@ -13965,7 +13648,6 @@ aquadecor.cf, 1 aquadrom.cz, 1 aquae-jewels.com, 1 -aquafc.com, 1 aquafeed.com, 1 aquafilm.cf, 1 aquafirm.com, 1 @@ -14023,7 +13705,6 @@ aquilo-it.com, 1 aquilo-it.de, 1 aquimisa.com, 1 -aquinyoga.com, 1 aquiparoxetina.gq, 1 aquitysolutions.com, 1 aquivardenafilo.gq, 1 @@ -14046,8 +13727,10 @@ arabam.com, 1 arabapps.org, 1 arabbook.ga, 1 +arabc.chat, 1 arabearthcommunity.ml, 1 arabedia.tk, 1 +arabeyes.com, 1 arabfcn.net, 1 arabi-news.ml, 1 arabi-online.net, 1 @@ -14083,6 +13766,7 @@ aradpulse.tk, 1 arafatx.com, 1 aragotownshipmn.gov, 1 +arais.com, 1 araizahoteles.com, 1 arakanis.tk, 1 arakomputer.com, 1 @@ -14093,12 +13777,12 @@ aramido.de, 1 aramloebmd.com, 1 aramyayinevi.com, 1 +aranc.it, 1 aranchhomes.com, 1 arandadeduero.es, 1 arandinacf.tk, 1 arandomsite.tk, 1 aranel.me, 1 -aranyasgarden.com, 1 aranycsillag.net, 1 aranykornyp.hu, 1 aranzazu-abogados.com, 1 @@ -14133,7 +13817,6 @@ arbeitslosenverwaltung.de, 1 arbejdsdag.dk, 1 arbeta.re, 1 -arbiterz.com, 1 arbitrarion.com, 1 arbitrary.ch, 1 arbitrations.tk, 1 @@ -14152,7 +13835,9 @@ arbortechtreeservice.com, 1 arborwind.com, 1 arbounie.nl, 1 +arbousier.com, 1 arbs09.de, 1 +arbschg.com, 1 arbu.eu, 0 arc-relight.com, 1 arc.int, 1 @@ -14175,6 +13860,7 @@ arcanefrost.de, 1 arcanehardware.com, 1 arcanetides.com, 1 +arcanoid.com, 1 arcarwegrow.pl, 1 arcbouncycastles.co.uk, 1 arcchildren.org, 1 @@ -14255,6 +13941,7 @@ arcolasecurities.com, 1 arcolatexas.gov, 1 arconnet.com, 1 +arcos.com.ua, 1 arcosa.com, 1 arcosdelallana.tk, 1 arcosdequejana.com, 1 @@ -14267,6 +13954,7 @@ arcskoru.com, 1 arcthelad.com, 1 arctic-charge.tk, 1 +arctic-store.com, 1 arctic.ca, 1 arcticfox.email, 0 arcticfoxes.net, 1 @@ -14316,6 +14004,7 @@ areatrend.com, 1 areavoipers.ga, 1 areavoipest.ga, 1 +areawidepainting.com, 1 areege.tk, 1 arefidgetspinnersgay.com, 1 arefly.com, 1 @@ -14375,6 +14064,7 @@ argax.it, 1 argb.de, 1 arge-bilisim.com, 1 +argedijital.com, 1 argekultur.at, 1 argentinachat.tk, 1 argentinatrabaja.org, 1 @@ -14394,6 +14084,7 @@ argos.co.uk, 1 argosasist.co.uk, 1 argosrisk.com, 1 +argotplan.com, 1 argovpay.com, 1 argovpn.com, 1 argumentative-essay.gq, 1 @@ -14414,11 +14105,9 @@ aria-best.ru, 1 aria-best.su, 1 aria-sante.org, 1 -aria.rs, 1 aria2.cf, 1 ariaartgallery.com, 1 ariacreations.net, 1 -ariadermspa.com, 1 ariadnext.com, 1 ariag.tk, 1 ariamag.com, 0 @@ -14500,6 +14189,7 @@ aritworld.tk, 1 arivo.com.br, 1 arize.com, 1 +arizeruk.com, 1 arizona-fake.tk, 1 arizonaautomobileclub.com, 1 arizonabirdingguides.com, 1 @@ -14520,6 +14210,7 @@ arkadelphia.gov, 1 arkadiahill.tk, 1 arkadian.tk, 1 +arkadien.com, 1 arkadium.com.br, 1 arkadiyt.com, 1 arkagis.com, 1 @@ -14546,7 +14237,6 @@ arknights.work, 0 arknodejs.com, 1 arkomaok.gov, 1 -arkrowd.eu.com, 1 arks.cards, 1 arksan.com.tr, 1 arkutinofamilyresort.com, 1 @@ -14615,7 +14305,6 @@ arminc.tk, 1 arminjon.net, 1 arminpech.de, 1 -arminsure.com, 1 armleads.com, 0 armo.re, 1 armo.sk, 1 @@ -14628,7 +14317,6 @@ armourroofinc.com, 1 armsco.fr, 1 armsteadproject.org, 0 -armstrong.com.mx, 1 armstrongremovals.com.au, 0 armstrongsengineering.com, 1 armtopnews.tk, 1 @@ -14762,6 +14450,7 @@ arroba.digital, 1 arrotatore.roma.it, 1 arrow-api.nl, 1 +arrowad.com, 1 arrowduty.ml, 1 arrowfastener.com, 1 arrowgrove.com, 0 @@ -14865,6 +14554,7 @@ artedmachado.tk, 1 artedona.com, 1 arteescuela.com, 1 +artefeita.com.br, 1 arteinstudio.it, 1 artel.od.ua, 1 artelignum.tk, 1 @@ -14879,7 +14569,6 @@ artemiz.tk, 1 artemoon.ml, 1 artemweb.tk, 1 -artepic.sk, 1 artepinas.tk, 1 arteproducciones.tk, 1 arteq.ga, 1 @@ -14898,7 +14587,6 @@ artesur.es, 1 artetbalade.tk, 1 artetculture.tk, 1 -arteventinews.it, 1 artevos.com, 1 artevos.de, 1 artex.com.br, 1 @@ -14926,7 +14614,6 @@ arti-islam.tk, 1 artibirteknikbilisim.com, 1 articaexports.com, 1 -articlebuzz.info, 1 articlebyte.ga, 1 articlefr.cf, 1 articlepub.ga, 1 @@ -14959,6 +14646,7 @@ artigoagency.com, 1 artikel5ev.de, 1 artikel9.com, 1 +artiltd.co.uk, 1 artinfo.tk, 1 artioml.net, 1 artionet.ch, 1 @@ -14969,6 +14657,7 @@ artisan.tk, 1 artisanat2france.fr, 1 artisanhd.com, 1 +artisanity.io, 1 artisanportrait.com, 1 artisansoftaste.com, 1 artishevski.com, 1 @@ -14991,6 +14680,7 @@ artlab.tk, 1 artlantis.nl, 1 artleading.ru, 1 +artlifehome.nl, 1 artlifeisgood.com, 0 artlinestix.com.au, 1 artlogo.biz, 1 @@ -15003,7 +14693,6 @@ artmaterials.com.ua, 1 artmaxi.eu, 1 artmo.com, 1 -artmoney.com, 0 artnazar.org.ua, 1 arto.group, 1 artofbong.com, 1 @@ -15018,6 +14707,7 @@ artofzoo.com, 1 artolaros.nl, 1 artomalu.tk, 1 +artomili.com, 1 artouch.com, 1 artozoul.fr, 1 artplaneta-leto.by, 1 @@ -15041,6 +14731,7 @@ artsinbushwick.org, 1 artslife.com, 1 artsmagazine.com, 1 +artsmeet.com, 1 artsongcolorado.org, 1 artspac.es, 0 artspark.tk, 1 @@ -15092,10 +14783,11 @@ arvadafireco.gov, 1 arvadatreeservicellc.com, 1 arveex.eu, 1 +arviamedspa.com, 1 arviksa.co.uk, 1 arvindhariharan.me, 1 -arvinovoyage.com, 1 arvostettu.fi, 1 +arvutiladu.ee, 1 arvyncerezo.com, 1 arw.me, 1 arwensiberian.tk, 1 @@ -15117,6 +14809,7 @@ arz-florian.tk, 1 arz-online.ml, 1 arzdigital.com, 1 +arzeshyabi-dar-alman.info, 1 arzid.com, 1 arzinfo.pw, 1 arzmercury.tk, 1 @@ -15149,7 +14842,6 @@ as6369.net, 1 as8423.net, 1 as8888.com, 1 -asa-securityservices.com, 1 asabacortoscaseros.tk, 1 asadatec.de, 1 asaduddinowaisi.tk, 1 @@ -15169,7 +14861,6 @@ asancharge.tk, 1 asandu.eu, 1 asankomara.tk, 1 -asanprop.com, 1 asansol.tk, 1 asantosdev.com, 1 asanuma-clinic.jp, 1 @@ -15188,6 +14879,7 @@ asastra.ovh, 1 asatahvieh.com, 1 asato-jewelry.com, 1 +asb-cam.com, 1 asb.edu.my, 0 asbaces.com, 1 asbazar.com, 1 @@ -15198,7 +14890,7 @@ asbestosmesothelioma.top, 1 asbestosthedarkarts.com, 1 asbf-rambouillet.fr, 1 -asbhive.edu.my, 1 +asbhive.edu.my, 0 asbito.de, 1 asburyparkreporter.com, 1 asbweb.org, 1 @@ -15244,6 +14936,7 @@ aseannow.com, 1 asecla.com, 1 asecus.ch, 1 +aseelanimalhealth.com, 1 asegem.es, 1 aseglobal.com, 0 aseishika.com, 1 @@ -15302,7 +14995,6 @@ ashesheriff.gov, 1 ashevillemenshealth.com, 1 ashfak.tk, 1 -ashfordcastle.com, 1 ashgroveclinic.com.au, 1 ashgw.me, 1 ashiba-kagu.com, 1 @@ -15345,11 +15037,14 @@ asia-fhjt.com, 1 asia-fuhui.com, 1 asia4five.com, 1 +asiacan.com, 1 +asiaceo.com, 1 asiacommerce.id, 1 asiadirect.co.th, 1 asiafaninfo.net, 1 asiafood-curator.com, 1 asiagate.ga, 1 +asiagps.com, 1 asiahabit.com, 1 asiahilux.com, 1 asiakartu.tk, 1 @@ -15363,15 +15058,16 @@ asianbeautywholesale.com, 1 asianbusinesscards.com, 1 asiancammers.com, 1 +asiancolor.com, 1 asiandubfoundation.tk, 1 asianet.tk, 1 asianetbroadband.in, 1 -asianfuckables.com, 1 asiangroceronline.com.au, 1 asianinside.tk, 1 asianlifestyledesign.com, 1 asianmain.com, 1 asianmoney.biz, 1 +asianray.com, 1 asianshop.com.pe, 1 asiansnus.com, 1 asiansongs.tk, 1 @@ -15387,8 +15083,11 @@ asiaticas.cf, 1 asiaview.ml, 1 asiaview.tk, 1 +asiaviews.com, 1 asiaville.in, 1 +asiayuan.com, 1 asiba.com.au, 1 +asico.ae, 1 asicodevelopments.ae, 1 asicxchange.com, 1 asier.tk, 1 @@ -15399,6 +15098,7 @@ asikoo.xyz, 1 asikpasagazetesi.tk, 1 asilo.roma.it, 1 +asilomar.com, 1 asinat.by, 1 asinetasima.com, 1 asinglepebble.com, 1 @@ -15415,8 +15115,10 @@ askapkmod.com, 1 askaret.cz, 1 askart.com, 1 +askartza.com, 1 askatechnicalquestion.com, 1 askatechnicalquestion.eu, 1 +askatechnicalquestion.nl, 1 askatrans.tk, 1 askbiblescholars.com, 1 askbill.org.uk, 1 @@ -15428,6 +15130,7 @@ askeygeek.com, 1 askfront.com, 0 askgamblers.com, 1 +askimsin.com, 1 askindia.tk, 1 askjan.org, 1 askkaren.gov, 1 @@ -15455,7 +15158,6 @@ aslansigorta.net, 1 aslanzone.shop, 1 aslia.no, 1 -asliozgun.com, 1 aslme.org, 1 aslsp.org, 1 asm.io, 1 @@ -15562,13 +15264,14 @@ assdecoeur.org, 1 assecuro.com.ua, 1 assedo.tk, 1 -asselin.fr, 1 +asseenfromthesidecar.org, 0 assemblage.gq, 1 assemblee-copropriete.fr, 1 assemblee-nationale.ga, 1 assemblyai.com, 0 assemblytoolbox.com, 1 assemblywithoutthewalls.org, 1 +assendelft.com, 1 assens.dk, 0 assentfitness.com, 1 assentis.ch, 1 @@ -15613,12 +15316,12 @@ assistenzaferrodastiro.org, 1 assistenzafrigorifero.org, 1 assistenzamicroonde.org, 1 -assistenzapconline.com, 1 assistere-a-casa.it, 1 assistere-a-domicilio.it, 1 assistere-in-famiglia.it, 1 assistivebathing.co.uk, 1 assistmedica.com, 1 +assistouest.fr, 1 assistouest.net, 1 assistouest.shop, 1 assmb.ly, 1 @@ -15630,9 +15333,8 @@ associazioneaisc.org, 1 associazionerimborsi.it, 1 associazioneterra.it, 1 -assoft.co, 1 assomydesk.fr, 1 -assoservicesweb.org, 0 +assoservicesweb.org, 1 asspoop.com, 1 assta.ga, 1 assumptionla.gov, 1 @@ -15654,6 +15356,7 @@ astanakz.tk, 1 astaninki.com, 1 astano.ch, 1 +astano.com, 1 astano.tk, 1 astanor.com, 1 astaoffshore.com.au, 1 @@ -15787,6 +15490,7 @@ astucewebmaster.com, 1 astuna.de, 1 astur.camp, 1 +astur.school, 1 astur.travel, 1 asturhackers.es, 1 astutetm.com, 1 @@ -15806,7 +15510,6 @@ asunsports.org, 1 asuntospropios.com, 1 asura.in.th, 1 -asuransiperjalanan.co.id, 1 asurbernardo.com, 1 asurgiant.ca, 1 asustor.com, 1 @@ -15814,6 +15517,7 @@ asvsa.ch, 0 aswe.win, 1 asweetsmile.com, 1 +aswish.com, 1 asws.nl, 1 asyadexpress.com, 1 asyaport.com, 1 @@ -15825,6 +15529,7 @@ asylumguild.tk, 1 asymmetric.pro, 1 asynchrono.cf, 1 +asyncura.com, 1 asyotec.es, 1 asysco.com, 1 asystent-dzierzawy.pl, 1 @@ -15906,12 +15611,11 @@ atelierkuni.jp, 1 atelierlk.art, 1 ateliernaruby.cz, 1 +atelierquersin.fr, 1 atelierssud.swiss, 1 atelierverbeelding.nl, 1 atelijer.hr, 1 -atenasconservadora.com.br, 1 atencionbimbo.com, 0 -atendadoencontro.com, 1 ateneumontbui.tk, 1 ateneupalafrugell.tk, 1 atenolol25mg.ga, 1 @@ -15998,6 +15702,7 @@ atlacademy.org, 1 atlan.digital, 1 atlan.nl, 1 +atlanta-airport-parking.com, 1 atlantacustomfab.com, 1 atlantahealthcare.tk, 1 atlantajewishconnector.com, 1 @@ -16033,7 +15738,6 @@ atlas-sat.tk, 1 atlas-staging.ml, 1 atlas.computer, 0 -atlas.md, 1 atlas.promo, 1 atlasams.com, 1 atlasbridge.com, 1 @@ -16058,6 +15762,7 @@ atlasone.us, 1 atlasrealestates.com, 1 atlasreclame.nl, 1 +atlassen.com, 1 atlassian.net, 1 atlassignsandplaques.com, 1 atlastax.ga, 1 @@ -16114,6 +15819,7 @@ atomic.radio, 1 atomicanet.tk, 1 atomicbounce.co.uk, 1 +atomicecho.com, 1 atomicheart.tk, 1 atomichomehealth.com, 0 atomickitteninternational.tk, 1 @@ -16121,6 +15827,8 @@ atomik.biz, 1 atomisystems.com, 1 atomlabs.ca, 1 +atomready.eu, 1 +atomrss.eu, 1 aton-ensemble.tk, 1 atonibai.com, 1 atope.art, 1 @@ -16146,6 +15854,8 @@ atriaresort.ro, 1 atrias.net, 1 atriballi.com.br, 1 +atribo.com, 1 +atribo.io, 1 atrinik.org, 1 atris-qa.media, 1 atris.media, 1 @@ -16187,7 +15897,6 @@ attinderdhillon.com, 1 attireaccessories.com, 1 attiremr.tk, 1 -attismascotas.co, 1 attitudes-bureaux.fr, 1 attivazioneveloce.it, 1 attivonetworks.com, 1 @@ -16251,6 +15960,7 @@ aubergegilly.ch, 0 aubi-plus.de, 1 aubio.org, 1 +aubry.org, 1 auburn-housekeeper.com, 1 auburnma.gov, 1 auburnmi.gov, 1 @@ -16258,6 +15968,7 @@ auc.ch, 1 aucarresainteloi.com, 1 aucc.org.nz, 1 +aucem.com, 1 auchan.fr, 1 auchan.pt, 1 aucielrose.com, 1 @@ -16267,7 +15978,6 @@ aucklandadventurejet.co.nz, 0 aucklandcastles.co.uk, 1 aucneteurope.com, 1 -aucoindubloc.com, 1 aucoindufruit.fr, 1 auction.com, 1 auctionbv.tk, 1 @@ -16285,6 +15995,7 @@ audio.servemp3.com, 1 audiobit.es, 1 audioblackmagic.com, 1 +audiobone.com, 1 audiobooksnow.com, 1 audiobookstudio.com, 1 audioboom.com, 1 @@ -16296,6 +16007,7 @@ audiocinemateca.com, 1 audiocoding.com, 1 audioconspiracy.tk, 1 +audiofanzine.com, 1 audiofotos.eu, 1 audiofrases.com, 1 audiohub.com, 1 @@ -16314,7 +16026,6 @@ audioonly.stream, 1 audiophiledirectory.com, 1 audioplugin.deals, 1 -audiorental.net, 1 audios.tk, 1 audioscenic.co.uk, 1 audioscenic.com, 1 @@ -16349,6 +16060,7 @@ aufeerjob.cz, 1 aufmerksamkeitsstudie.com, 1 aufprise.de, 1 +aufschieben.com, 1 aufstehen.de, 1 auftragsfertigung.at, 1 aufwachzeit.at, 1 @@ -16356,6 +16068,7 @@ aufwecken.dynu.net, 1 augehost.com, 1 augendre.info, 1 +augenklappe.com, 1 augenlaser-chemnitz.de, 1 augenlaser-dresden.de, 1 augenlasercenter-dresden.de, 1 @@ -16367,6 +16080,7 @@ augesen.tk, 1 aughrs.com, 1 augix.net, 1 +augmedia.com, 1 augmedix.com, 0 augmentable.de, 0 augmentin.ga, 1 @@ -16420,10 +16134,9 @@ aupapa.com, 1 aupaysdesanes.com, 1 auplidespages.fr, 1 +auqi.com, 1 aura.moe, 1 aura7chakr.com, 1 -aurabasketball.com, 1 -aurabasketball.fr, 1 aurac.org.nz, 1 aurahiemis.tk, 1 aurainfosec.com, 0 @@ -16464,18 +16177,24 @@ aurora911.net, 1 auroracloud.com.au, 1 auroraenergy.com.au, 1 +auroraer.com, 1 auroramarionvillepd-mo.gov, 1 auroramj.com, 1 auroranianoxx.net, 1 -auroraofficefurniture.com.au, 1 auroravtc.com, 1 +auroregaucher.fr, 1 aurory.io, 1 auroz.video, 1 aurtho.com, 1 aurum.com.br, 1 aurumkoins.tk, 1 ausat.net, 1 +ausbilden-wir-machen-mit.de, 1 +ausbilderplattform.com, 1 +ausbilderplattform.de, 1 +ausbilderportal.com, 1 ausbildung-rbg.de, 1 +ausbildungplus.de, 1 ausbrightfacilities.com.au, 1 auscanalliancecorp.com, 1 auscube.tk, 1 @@ -16487,19 +16206,26 @@ auseal.au, 1 ausec.ch, 0 auservicedeschiens.com, 1 +ausfin.com, 1 +ausgesprochen.com, 1 ausgrants.au, 1 ausgrants.com, 1 ausgrants.com.au, 1 ausics.net, 1 ausielogistics.com.au, 1 +ausim.com, 1 auskast.com, 1 auskate.tk, 1 auskunftsbegehren.at, 1 +auslandberatung-ausbildung.de, 1 +auslandberatungausbildung.de, 1 auslandsberatung-ausbildung.de, 1 +auslandsberatungausbildung.de, 1 ausmwoid.de, 1 ausncp.gov.au, 1 auspicacious.org, 1 auspokies.net, 1 +aussagen.com, 1 ausschreibungen-suedtirol.it, 1 ausset.me, 1 aussiebum.com, 1 @@ -16519,7 +16245,7 @@ austcm.com.au, 1 austenplumbing.com, 1 austercita.tk, 1 -austickcarremoval.com.au, 1 +austickcarremoval.com.au, 0 austin-dumpsters.com, 0 austin-pearce.com, 1 austin-security-cameras.com, 1 @@ -16532,17 +16258,20 @@ austinoverheaddoorcompany.com, 0 austinsutphin.com, 1 austinuniversityhouse.com, 1 +australiabusinessblog.com, 0 australiadaily.ga, 1 australiaday.com.au, 1 australian.tk, 1 australianairbrushedtattoos.com, 1 australianairbrushedtattoos.com.au, 1 +australianallnaturalskincare.com.au, 1 australianattractions.com.au, 1 australiancattle.dog, 1 australiancurriculum.edu.au, 1 australiangeographictravel.com, 1 australiangold.it, 1 australiangold.net, 1 +australiangold.si, 1 australianhimalayanfoundation.org.au, 0 australianimmigrationadvisors.com.au, 1 australianjewishnews.com, 1 @@ -16582,7 +16311,6 @@ authenticate.computer, 1 authentication.directory, 1 authenticbbw.com, 1 -authenticfat.com, 1 authenticfoodquest.com, 1 authentick.online, 1 authentick.systems, 1 @@ -16592,6 +16320,7 @@ authinity.com, 0 authland.com, 1 author-it.com, 1 +author.cn, 1 author24.info, 1 authorbriannamacmahon.com, 1 authorise.computer, 1 @@ -16600,6 +16329,7 @@ authorize.computer, 1 authorize.network, 1 authorjjcruzbooks.com, 1 +authorwise.com, 1 authress.io, 1 authsrv.nl.eu.org, 1 autism-explained.com, 1 @@ -16614,7 +16344,6 @@ auto-borse.tk, 1 auto-delchev.com, 1 auto-ecole-du-tursan.fr, 1 -auto-ecole-remparts.fr, 1 auto-help.tk, 1 auto-i-dat.ch, 1 auto-market.tk, 1 @@ -16633,11 +16362,14 @@ auto10dacte.com, 1 auto2019.net, 1 auto365haiphong.com, 1 +autoaddz.com, 1 autoambulanza.it, 1 autoambulanzaprivata.roma.it, 1 autoamericas.show, 1 autoamor.com.br, 1 autoangels.ga, 1 +autoankaufen.com, 1 +autoanzeige.com, 1 autoarena.fr, 1 autoauctionsarizona.com, 1 autoauctionsohio.com, 1 @@ -16648,6 +16380,7 @@ autobazarmontekarlo.cz, 1 autobedrijfgarant.nl, 1 autobelle.it, 1 +autobelt.com, 1 autobitsmotorstore.com, 1 autobiz.tk, 1 autoblog-de.com, 1 @@ -16663,18 +16396,20 @@ autocardesign.org, 1 autocarejersey.com, 1 autocaresdiego.com, 1 +autocarrot.eu, 1 +autocarrot.nl, 1 autocartruck.com, 1 autocarwash.net, 1 autocashmachine.tk, 1 autocenters.ca, 1 autocheck.co.nz, 1 -autochin.ir, 1 autocirkel.tk, 1 autocmall.com, 1 autocoder.chat, 1 autoconcept.ga, 1 autoconcept.tk, 1 autocorner.com, 1 +autocost.com, 1 autocross.tk, 1 autocrossfoto.tk, 1 autocrossonline.tk, 1 @@ -16682,7 +16417,10 @@ autocrossteam-monein.tk, 1 autocrossteam.tk, 1 autoctona.org, 1 +autodach.com, 1 +autodalas.com, 1 autodeal.com.ph, 1 +autodekor.com, 1 autodemolizioni.roma.it, 1 autodidactic.ai, 1 autodidacticstudios.com, 1 @@ -16709,7 +16447,9 @@ autogard.cz, 1 autogear.ga, 1 autogeizer.ru, 1 +autoglascenter.com, 1 autoglasskobra.bg, 1 +autografer.com, 1 autograph.io, 1 autohaus-brueggemann.de, 1 autohaus.ink, 1 @@ -16723,6 +16463,7 @@ autohut.ca, 1 autohuttruckcenter.ca, 1 autoi.ch, 1 +autoidc.com, 1 autoindustriya.com, 1 autoinfa.tk, 1 autoinkoop.tk, 1 @@ -16744,6 +16485,7 @@ autoline.link, 1 autologix.io, 1 automaatic.com, 1 +automacro.com, 1 automagischeberegening.nl, 1 automastercastlerock.com, 1 automatecodes.com, 1 @@ -16755,6 +16497,7 @@ automaxcovington.com, 1 automecanicadosgalegos.pt, 1 automecanicagalegos.pt, 1 +automeeting.com, 1 automekano.com, 0 automekbromma.se, 1 automiata.de, 1 @@ -16768,7 +16511,6 @@ automobileescrowest.ga, 1 automobiles-sportives.fr, 1 automobiliteit.nl, 1 -automotive-iq.com, 1 automotiveabundant.ga, 1 automotiveadaptive.ga, 1 automotiveagenda.ga, 1 @@ -16920,6 +16662,7 @@ automotiveyankee.ga, 1 automoto-tom.net, 1 automuovifix.fi, 1 +automuse.com, 1 autonewsreview.com, 1 autonoleggio.milano.it, 1 autonome-netze.de, 1 @@ -16927,6 +16670,7 @@ autonomie-numerique.fr, 1 autonovinky.cz, 1 autoofficina.it, 1 +autopacking.com, 1 autopadconnect.com, 1 autopapo.com.br, 1 autopark-ost-fichtner.de, 1 @@ -16939,18 +16683,20 @@ autopartsu.com, 1 autopaulito.pt, 0 autopecasjoaquinense.com.br, 1 +autopet.com, 1 autopilotapp.com, 1 autopinturasonline.com, 1 autopistadelitata.cl, 1 autopneusdacovilha.pt, 1 autopocket.co, 1 +autopod.com, 1 +autoporn.com, 1 autoportal.tk, 1 autopril.com, 1 autoprogconsortium.ga, 1 autorabit.com, 1 autorai.nl, 1 autorama.cf, 1 -autorecoveryandtowing.com, 1 autorefuellings.com, 1 autorefuellings.ru, 1 autoreinigung-noack.de, 1 @@ -17043,6 +16789,7 @@ autres-talents.fr, 1 auts.fi, 0 autumnhungary.tk, 1 +autumnmanor.com, 1 autya.ga, 1 auverdrift.ovh, 1 auvernet.org, 1 @@ -17077,7 +16824,6 @@ avaclub.ga, 1 avacourcelles.com, 1 avaemr-development-environment.ca, 1 -avaeon.com, 1 avagroup.ga, 1 avaibooksports.com, 1 avail-sw.io, 1 @@ -17182,10 +16928,12 @@ avenir-now.ch, 1 avenir-now.com, 1 avenir-now.de, 1 +avensure.com, 0 avensurereviews.com, 1 aventabarbados.com, 1 aventajamaica.com, 1 aventalimited.com, 1 +aventurateaviajar.com, 1 avenue-dental.jp, 1 avenue.us, 1 avepoint.com, 1 @@ -17253,8 +17001,8 @@ avidmode.com, 1 avidtv.ie, 1 avie.de, 1 -aviewers.com, 1 avilatinoamerica.com, 1 +avilauto.com, 1 avilauto.com.es, 1 avilauto.net, 1 aviles.com.sv, 1 @@ -17289,7 +17037,7 @@ aviweisfogelinfo.org, 1 avland.me, 1 avlasov.tk, 1 -avlhostel.com, 1 +avlover.com, 1 avm-multimedia.com, 1 avm99963.com, 1 avmemo.com, 1 @@ -17364,12 +17112,12 @@ avtojurist.ml, 1 avtojurist.tk, 1 avtokar12.ru, 1 -avtolos.ru, 1 avtom.by, 1 avtomaniya.ml, 1 avtomaniya.tk, 1 avtomarket.ru, 1 avtoobzor.tk, 1 +avtoskorost.com, 1 avtostolica.tk, 1 avtoucheba.tk, 1 avtours.gr, 1 @@ -17435,7 +17183,6 @@ awersomecreatorfromrussia.tk, 1 awesome-coconut-software.fr, 1 awesomebible.de, 1 -awesomegamesstudio.com, 1 awesomeindie.com, 1 awesomelifedeals.today, 1 awesomeperfumes.com, 1 @@ -17470,8 +17217,8 @@ awtogid.com, 1 awxg.com, 1 awxg.eu.org, 1 +awxg.net, 0 ax.mk, 1 -ax25.org, 1 ax4health.nl, 1 axa-mandiri.co.id, 1 axa.ch, 1 @@ -17492,6 +17239,7 @@ axeligence.com, 1 axelname.ru, 1 axelr.me, 1 +axeltheune.de, 1 axelvoss.eu, 0 axendia.com, 1 axenhus.com, 1 @@ -17509,11 +17257,9 @@ axiam-pc.co.uk, 1 axiams.co.uk, 1 axidocepabid.tk, 1 -axin888.vip, 1 axiniteguitars.ca, 1 axiniteguitars.com, 1 axioinvest.com, 1 -axiom-networks.org, 1 axiom4.net, 1 axiome.cpa, 1 axiomecomptables.ca, 1 @@ -17532,7 +17278,6 @@ axisdesignarchitects.co.uk, 1 axisdesignarchitects.com, 1 axisinteriors.net, 1 -axislinx.com, 1 axisortho.com.sg, 1 axispointarchitects.com, 1 axist.com.co, 1 @@ -17575,6 +17320,7 @@ axxess-marine.com, 1 axxial.tk, 1 axyl.cloud, 1 +axzq.com, 1 ay-daily.com, 1 ay-net.jp, 1 ay-tour.ru, 1 @@ -17623,6 +17369,7 @@ aymericlagier.com, 1 aymhome.top, 0 ayoa.com, 1 +ayomi.com, 1 ayon-games.tk, 1 ayothemes.com, 1 ayresalpine.com, 1 @@ -17710,7 +17457,6 @@ ayuntamientobocachica.gob.do, 1 ayur-veda.tk, 1 ayurveda-france.com, 0 -ayurvedawiki.xyz, 1 ayuwidodari.my.id, 1 ayvalikgezgini.com, 1 ayvensbank.nl, 1 @@ -17738,6 +17484,7 @@ azaleos.net, 1 azalhavayolu.com.tr, 1 azallon.com.br, 1 +azami.com, 1 azapp-vvv-program-api-dev.azurewebsites.net, 1 azaria.blog, 1 azarkepic.com, 1 @@ -17796,6 +17543,7 @@ azl.ink, 1 azlink.tk, 1 azmt.de, 1 +azmun.com, 1 aznaetelivy.ru, 1 azoft.com, 1 azon.gr, 1 @@ -17812,6 +17560,7 @@ azrangers.gov, 1 azraxiel.de, 1 azrazalea.net, 1 +azreal.com, 1 azredistricting.gov, 1 azrevolutionizingckd.com, 1 azrhymes.com, 1 @@ -17828,6 +17577,7 @@ aztecagents.ai, 1 aztecahome.com, 1 azteenmagazine.com, 1 +aztekium.com, 1 aztestsmartviewwebapp.azurewebsites.net, 1 azton.tk, 1 aztraslochi.it, 1 @@ -17835,6 +17585,10 @@ aztummytuck.com, 1 azu-l.com, 0 azu-l.jp, 0 +azubis-ins-ausland.de, 1 +azubis-ins-ausland.eu, 1 +azubisinsausland.de, 1 +azubisinsausland.eu, 1 azubiweb.com, 1 azudream.tk, 1 azuki.cloud, 1 @@ -17878,7 +17632,6 @@ b-institute.ml, 1 b-landia.net, 1 b-lenos.com, 1 -b-natural.nl, 1 b-root-force.de, 1 b-services.net, 0 b-swiss.com, 1 @@ -17900,7 +17653,6 @@ b11p.com, 1 b12info.com, 1 b131000.com, 0 -b17turkiye.com, 1 b1c1l1.com, 1 b1drivers.com, 1 b1ggi.ovh, 1 @@ -17926,6 +17678,7 @@ b2music.asia, 1 b2og.com, 1 b3.nu, 1 +b3b4.com, 1 b3bra.win, 1 b3pacific.com, 1 b3t4.org, 1 @@ -17937,7 +17690,6 @@ b4lint.hu, 1 b4r7.de, 1 b4z.eu, 1 -b5189.com, 0 b5197.co, 1 b5dev.com, 1 b5i.net, 1 @@ -17985,7 +17737,6 @@ b72.net, 1 b767.net, 1 b8-e.de, 1 -b82365.com, 1 b86255.com, 1 b88vip1.com, 1 b88vip10.com, 1 @@ -18130,6 +17881,7 @@ babyboomer.ro, 1 babybuddah.ga, 1 babybunnypictures.tk, 1 +babycaring.com, 1 babycat.tk, 1 babycenter.com, 1 babycezi.ro, 1 @@ -18144,7 +17896,7 @@ babyinthehouse.com.br, 1 babykappy.com, 1 babylonclub.cf, 1 -babymall.hk, 0 +babymall.hk, 1 babymasaze.cz, 1 babymozg.ga, 1 babynamen.nl, 1 @@ -18211,11 +17963,13 @@ back-stage.tk, 1 back-streets.tk, 1 back-yard.tk, 1 +back0.com, 1 back2health.pl, 1 backabc.de, 1 backd00red.org, 1 backedbycanadians.ca, 1 backenmachtgluecklich.de, 0 +backfront.com, 1 background-checks.asia, 1 background-checks.biz, 1 background-checks.mobi, 1 @@ -18265,7 +18019,6 @@ backup-mx.email, 1 backupassist.de, 1 backupauthentication.com, 1 -backwardaf.com, 1 backwardsalphabet.tk, 1 backwpup.com, 1 backy2.com, 1 @@ -18285,6 +18038,7 @@ bacq.pro, 1 bacri.eu, 1 bacsmegye.hu, 1 +bacteri.com, 1 bacteriakit.com, 1 bactrim-antibiotic.gq, 1 bactrim-antibiotic.ml, 1 @@ -18321,6 +18075,7 @@ badcyber.com, 1 baddrones.llc, 1 badeand.net, 1 +badekappen.com, 1 baden-airpark.de, 1 badenbody.nl, 1 bader-jungk.de, 1 @@ -18399,6 +18154,7 @@ baer.space, 1 baerkarrer.ch, 1 baesystems-she.com, 1 +baeten.com, 0 baevserver.ddns.net, 1 bafito.com, 1 bafoeg-rechner.de, 1 @@ -18411,6 +18167,7 @@ baggy.me.uk, 1 bagheera.me.uk, 1 baghtelecom.net, 1 +baginfo.com, 1 bagiobella.com, 1 bagirahome.bg, 1 bagleytownshipmi.gov, 1 @@ -18429,11 +18186,13 @@ bagssale.ga, 1 bagu.biz, 1 bagu.fr, 1 +bagui.com, 1 bagumum-kotakediri.com, 1 bagusat.com, 1 bagwrap.com, 1 bahadirh.ml, 1 bahamar.com, 1 +bahami.com, 1 baharmusic24.tk, 1 bahcehavuz.com, 1 bahena.be, 0 @@ -18450,11 +18209,13 @@ bahrainonline.tk, 1 bahrep.com, 1 bahri.sa, 1 -bahtogel.com, 1 bai-bao.fr, 1 +baiask.com, 1 +baic-versicherung.de, 1 baichi.cf, 1 baichi.ml, 1 baif.hr, 1 +baifin.com, 1 baifubao.com, 1 baija.it, 1 baikal-news.net, 1 @@ -18467,25 +18228,28 @@ baildonbouncycastles.co.uk, 1 baildonhottubs.co.uk, 1 baileebee.com, 1 -baileyh.xyz, 1 baileyladders.com.au, 1 baileysafetyconsultants.com, 1 baileysharborwi.gov, 1 baileystrailsystem.org, 1 +bailiang.com, 1 bailleux.be, 1 bailodromo.tk, 1 bailong.kr.ua, 1 bailonga.com, 1 +baimail.com, 1 bain-savon.co.uk, 1 baindayman.com, 1 baindetoile.fr, 1 bainnordiquebois.fr, 1 +baipay.com, 1 baircentral.com, 1 bairuo.top, 0 bairwell.com, 1 baise.cf, 1 baise.ml, 1 baise3x.com, 1 +baishitie.com, 1 bait55.ru, 0 baitable.ml, 1 baitapsgk.com, 1 @@ -18533,6 +18297,7 @@ bakercountyor.gov, 1 bakercountysheriffor.gov, 1 bakerlawfirm.ca, 1 +bakersafari.co, 1 bakersfieldhomeoffer.com, 1 bakerviewdentalcentre.com, 1 bakerymazowsze.co.uk, 1 @@ -18540,8 +18305,8 @@ bakeup.be, 1 bakibal.com, 1 bakingbydonna.com, 1 -bakira.eu, 1 bakivaxti.az, 1 +bakj.com, 1 bakkerij-janschrieks.nl, 1 bakkerinjebuurt.be, 1 bakkerpanden.nl, 1 @@ -18574,8 +18339,9 @@ balaganlimited.cf, 1 balaganoff.tk, 1 balagne-corsica.com, 1 -balaisnomad.com, 0 +balaisnomad.com, 1 balakovo-news.tk, 1 +balala.com, 1 balancascia.com.br, 1 balance.courses, 1 balance.education, 1 @@ -18602,6 +18368,7 @@ balbus.tk, 1 balca.ga, 1 balcaonet.com.br, 1 +balconnet.com, 1 balconsverdun.com, 0 balcony.cf, 1 baldinger.tk, 1 @@ -18683,6 +18450,7 @@ balonsiparis.com, 1 balopal.tk, 1 balsamaiso.es, 1 +balsara.com, 1 balski.com, 1 balslev.io, 1 balt.net, 1 @@ -18705,12 +18473,14 @@ bamasakht.com, 0 bambamthetanman.com, 0 bamberger-maelzerei.de, 1 +bambergerdatenschutz.de, 1 bamboehof.nl, 1 bamboo-team.online, 1 bambooagile.eu, 1 bambooforest.nl, 1 bamboohr.co.uk, 1 bamboohr.com, 1 +bambooplywood.com, 1 bamboorose.com, 1 bamboostage.com, 1 bambora.com, 1 @@ -18739,6 +18509,7 @@ bananatreenews.today, 1 bananatrunkingprotocol.com, 1 bananavapes.com, 1 +bananavi.com, 1 bananenbr0t.de, 1 banania.fr, 1 bananice.moe, 1 @@ -18753,14 +18524,12 @@ banchungcu.com, 1 bancoagricola.com, 1 bancoatlantida.com.ni, 1 -bancobai.ao, 0 bancobpm.it, 1 bancodeloja.fin.ec, 1 bancoeconomico.ao, 1 bancontinental.com.py, 1 bancosdominicanos.net, 1 bancoserfinanza.com, 1 -bancosol.com.bo, 1 banda-car-service.com, 1 bandaancha.eu, 1 bandademusicacarrion.tk, 1 @@ -18769,7 +18538,6 @@ bandally.net, 1 bandamirandadeebro.tk, 1 bandarifamily.com, 1 -bandarkala076.com, 1 bandaronline.ml, 1 bandarqonline.ga, 1 bandarqonline.ml, 1 @@ -18778,6 +18546,7 @@ bandbattle.tk, 1 bandbelievo.tk, 1 bandbwestport.com, 1 +bandeaux.com, 1 bandeira1.com.br, 1 bandeiraeassociados.com.br, 1 bandeiraimoveisitu.com.br, 1 @@ -18792,6 +18561,7 @@ bandiere-mondo.it, 1 bandiga.it, 1 bandirmaevdenevenakliyat.tk, 1 +bandjoun.com, 1 bandmentor.com, 1 bandmine.com, 1 bandnames.tk, 1 @@ -18808,6 +18578,7 @@ bandymasarna.tk, 1 baneh-academic.com, 1 banehunter.com, 0 +banensite.com, 1 banerka.tk, 1 banes-lab.com, 1 banes.ch, 1 @@ -18870,13 +18641,13 @@ banketbesteld.nl, 1 bankffin.kz, 0 bankfreeoffers.com, 1 +bankheadscandies.com, 1 bankheadvegetables.com, 1 bankhelp.gov, 1 bankid.com, 1 bankimsk.cf, 1 -bankinfosecurity.asia, 1 -bankinfosecurity.com, 1 banking-services.tk, 1 +bankingadvisors.com, 1 bankingheralders.ga, 1 bankinter.pt, 1 bankiros.ru, 1 @@ -18887,16 +18658,28 @@ bankmoney.cf, 1 banknet.gov, 1 banknews.ga, 1 -banknh.com, 0 banknn.ru, 1 +banknotesdelarue.com, 1 banknottakip.com, 1 bankofabbeville.com, 1 +bankofanhui.com, 1 +bankofbohai.com, 1 +bankofguangxi.com, 1 +bankofguilin.com, 1 +bankofgulf.com, 1 +bankofhainan.com, 1 +bankofhankou.com, 1 +bankofharbin.com, 1 +bankofhubei.com, 1 +bankoflanzhou.com, 1 bankofrealty.review, 1 bankofthesierra.com, 1 +bankofyunnan.com, 1 bankpolicies.com, 1 bankrbk.kz, 1 bankruptcy.ky, 1 bankruptcyattorneys.org, 1 +banksampoerna.com, 1 banksite.ga, 1 banksmalaysia.com, 1 banksocial.io, 1 @@ -18951,6 +18734,8 @@ bao-in.net, 1 baobabgroup.com, 1 baobaoquming.net, 0 +baobaoxiong.com, 1 +baobiao.com, 1 baocheng.tech, 1 baofuzhuan.com, 1 baogao.store, 1 @@ -18958,7 +18743,11 @@ baogiathicongnoithat.com, 1 baokhangfood.com, 1 baokhanhhoa.vn, 1 +baolu.com, 1 +baoqiang.com, 1 baoquangninh.vn, 1 +baoshijie.com, 1 +baoshun.com, 1 baoxiache.com, 1 baoxue5.com, 0 bapeel.tk, 1 @@ -18986,6 +18775,7 @@ baravalle.com, 1 baraxolka.ga, 1 baraxolka.ml, 1 +barbara-bertagnolli.co.uk, 1 barbara-fuchs-gruene-fuerth.de, 1 barbarabryce.com, 1 barbaraedanielsantos.ga, 1 @@ -18997,7 +18787,6 @@ barbarians.com, 0 barbaros.info, 1 barbate.fr, 1 -barbatulsuperior.ro, 1 barbericonic.com, 1 barberscorner.tk, 1 barbershop-harmony.org, 0 @@ -19039,6 +18828,7 @@ bardfarm.org, 1 bardian.net, 1 bardian.org, 1 +bardoferry.com, 1 bardtech.com, 1 barduschinamusic.org, 1 barefoodinrome.it, 1 @@ -19062,6 +18852,7 @@ bargroup.ga, 1 barhan-sarykum.ru, 1 bariatricassociates.com, 1 +barichara.com, 1 barihandin.tk, 1 barikell.be, 1 barinasknot.tk, 1 @@ -19116,6 +18907,7 @@ baron14.be, 1 baronbunny.cn, 1 baronet.cf, 1 +barongoldsteindesign.com, 1 baronsphotography.com, 1 baronspices.com, 1 baroquemath.net, 1 @@ -19132,12 +18924,12 @@ barracuda.blog, 1 barracuda.com.tr, 0 barracudaswimmingclub.tk, 1 -barrahome.org, 1 barrancos.tk, 1 barrankest.ga, 1 barranquillero.tk, 1 barraqueirotransportes.pt, 1 barrasaccess.com, 1 +barratennis.com.br, 1 barrebody.com.au, 1 barreiroappraisals.com, 1 barrelfish.org, 1 @@ -19196,6 +18988,7 @@ bas.sh, 1 bas.surf, 1 bas.work, 1 +basano.com, 1 basauristudios.com, 1 basaveshwaraborewells.tk, 1 basculasconfiables.com, 1 @@ -19216,6 +19009,7 @@ basebyte.nl, 1 basecamp.cf, 1 basecampstudios.com, 1 +basechina.com, 1 baseconvert.com, 1 basecore.co, 1 based.gr, 1 @@ -19250,6 +19044,7 @@ bashc.at, 1 bashhack.cf, 1 bashier.net, 1 +bashkimi.com, 1 bashkiri.cf, 1 bashkiria.cf, 1 bashkiria.ga, 1 @@ -19295,7 +19090,6 @@ basketball-malavan.tk, 1 basketballforever.com, 1 basketballnewz.tk, 1 -basketcase.shop, 1 basketforex.com, 1 basketglucholazy.pl, 1 basketsandmore.bg, 1 @@ -19319,6 +19113,7 @@ basse-chaine.info, 1 bassethound.tk, 1 bassguy.tk, 1 +basshill.com, 1 bassislandline.com.au, 1 basskickers.tk, 1 bassment.org, 1 @@ -19328,6 +19123,7 @@ bassrhymeposse.tk, 1 bassrider.eu, 1 bassstraitmaritimecentre.com.au, 1 +bassus.com, 1 bassys.com.co, 1 bastakka.eu, 0 bastanet.tk, 1 @@ -19346,6 +19142,7 @@ bastolino.de, 1 bastotrekking.pt, 1 bastter.com, 1 +bastun.com, 1 basuramarina.com, 1 baswetter.photography, 1 basyrova.ml, 1 @@ -19428,6 +19225,7 @@ bats.ch, 1 bats.gov, 1 batstrading.com, 1 +batswana.com, 1 batten-family.uk, 1 batten.eu.org, 1 batterie-au-top.com, 0 @@ -19464,6 +19262,8 @@ bau-holler.de, 1 bau.ua, 1 baubau.bg, 1 +baubeach.com, 1 +bauchon.com, 1 bauchredner-zauberer.de, 1 bauchtanz.tk, 1 bauer-plus.de, 1 @@ -19507,6 +19307,7 @@ baumkletterschule.de, 1 baumkuchen-aus-dresden.de, 0 baummer.com.br, 1 +bauplanmanager.com, 1 bausep.de, 1 bausparkassen.tk, 1 baustils.com, 1 @@ -19541,7 +19342,6 @@ bayarea.gq, 1 bayarea.ml, 1 bayarea.tk, 1 -bayareaexteriorsmd.com, 0 bayareagynecology.com, 1 bayareamustangs.tk, 1 bayareaplasticsurgery.com, 1 @@ -19578,6 +19378,7 @@ bayreuth-wilhelmine.de, 1 bayridgesupplies.net, 1 bayrisch-fuer-anfaenger.de, 1 +bayrischzell.com, 1 bayscollisionrepairs.co.nz, 1 bayshore.ca, 1 baysidementalhealth.com, 1 @@ -19648,6 +19449,7 @@ bbclyra.tk, 1 bbcsuk.co.uk, 1 bbence.me, 1 +bbfandom.com, 1 bbfxtraders.com, 1 bbg.org, 1 bbgeschenke.ch, 0 @@ -19681,12 +19483,12 @@ bbrassart.fr, 1 bbrigittae.hu, 1 bbrmonza.it, 1 -bbrp.org, 1 bbs-buchholz.com, 1 bbs-buchholz.eu, 1 bbschat.tk, 1 bbsec.xyz, 1 bbsis.org, 1 +bbtk.com, 1 bbunits.de, 1 bbusa.tk, 1 bbw-wrestling.com, 1 @@ -19808,7 +19610,6 @@ bdtc.com.bd, 1 bdtd.nl, 1 bdtechnews.tk, 1 -bdtickets.com, 1 bdxmedia.cloud, 1 be-craft.de, 1 be-free.gq, 1 @@ -19855,6 +19656,7 @@ beaconcart.com, 1 beacondb.net, 1 beaconfed.org, 1 +beacongaragedoors.com, 1 beaconhealthoptions.com, 1 beaconinvesting.com, 1 beaconinvestingetfs.com, 1 @@ -19917,10 +19719,10 @@ bearrun.com, 1 bearslakeinn.com, 1 bearzoutdoor.com, 1 +beas.dk, 0 beasel.biz, 1 beast-books.com, 1 beast.rent, 1 -beastiejob.com, 1 beastlog.tk, 1 beastnet.works, 1 beastnet.xyz, 1 @@ -19997,15 +19799,18 @@ beautybox.ro, 1 beautyboxes.net, 1 beautyby.tv, 1 +beautycabin.com, 1 beautycarepack.com.ng, 1 beautycoiffures.com, 1 beautycom.club, 1 beautycon.com, 1 beautycon.ir, 1 beautyeyewear.ga, 1 +beautyforce.bg, 1 beautyforceacademy.bg, 1 beautyiconnyc.com, 1 beautyindistress.tk, 1 +beautyinn.com, 1 beautyisfine.tk, 1 beautylodge.ro, 1 beautyoverture.com, 1 @@ -20022,7 +19827,6 @@ beavercityut.gov, 1 beaverdamautos.com, 1 beaverheadcountymt.gov, 1 -beavermade.ca, 1 beavertails.com, 1 beavertales.ca, 1 beavillabea.it, 1 @@ -20058,8 +19862,8 @@ bebra.cc, 1 bebra.cl, 1 bebra.co, 1 +bebra.ec, 1 bebra.hn, 1 -bebra.id, 1 bebra.im, 1 bebra.io, 1 bebra.loan, 1 @@ -20073,6 +19877,8 @@ because.co.il, 1 becausecapitalism.org, 1 becausewematterlv.org, 1 +becauseyou.com, 1 +becca-argenbright.com, 1 beccaanne.photography, 1 beccajoshwedding.com, 1 bech32.net, 1 @@ -20088,14 +19894,16 @@ beckylicious.tk, 1 beclan.tk, 1 becleverwithyourcash.com, 1 -becli.com, 1 +becli.com, 0 beclick.co.il, 1 becoairandheat.com, 1 -becojo.me, 1 becollective.com, 1 become-lucky.com, 1 +become.education, 1 +become.me, 1 becomewebdeveloper.tk, 1 beconnect.cf, 1 +beconstructive.com, 1 becquerelgroup.com, 1 becs-bloomsbury.com, 1 becs.ch, 0 @@ -20122,7 +19930,7 @@ bedienungsanleitung-deutsch.de, 1 bedienungsanleitung24.de, 1 bedinfo.com, 1 -bedireg.com, 1 +bedingungen.com, 1 bedlingtonterrier.com.br, 1 bedofcorpses.tk, 1 bedouille.com, 1 @@ -20132,11 +19940,14 @@ bedrijfsfeest.nl, 1 bedrijfsfeesten.tk, 1 bedrijfsfotoreportages.nl, 1 +bedrijfskunde.com, 1 +bedrijfswagen.com, 1 bedrijfswasmachine.nl, 1 bedrockcommunity.ml, 1 bedrockdata.com, 1 bedrocklinux.org, 1 bedrockstreaming.com, 1 +bedruckung.com, 1 bedrukt.nl, 1 bedste-datingsites.dk, 1 bedstecasinobonusser.dk, 1 @@ -20158,7 +19969,6 @@ beecare.ch, 1 beechwoodindustrial.com, 1 beechwoodmetalworks.com, 1 -beecleanmarine.com, 1 beedsolyjas.tk, 1 beeebraa.download, 1 beefclan.tk, 1 @@ -20178,6 +19988,7 @@ beeksnetwork.nl, 1 beeldbankgent.be, 1 beeliarspirit.org, 1 +beelight.com, 1 beelikeus.pl, 1 beeline.am, 1 beelit.com, 0 @@ -20202,6 +20013,7 @@ beeremovaljohannesburg.co.za, 1 beeremovalpretoria.co.za, 1 beeremovalspretoria.co.za, 1 +beerflower.com, 1 beergifts.tk, 1 beerglasses.tk, 1 beerhouse.tk, 1 @@ -20211,6 +20023,8 @@ beernews.ga, 1 beerradar.no, 1 beerradar.party, 1 +beerre.com, 1 +beers.my, 1 beersandco.ch, 1 beersconf.com, 1 beersheba.co.il, 1 @@ -20247,10 +20061,12 @@ befoodsafe.gov, 1 beforeafter.gq, 1 beforethedawn.tk, 1 +beforethelaw.com, 1 beforeyoueatoc.com, 1 befreewifi.info, 1 befunddolmetscher.de, 1 bega-dc.gov, 1 +begagnade.com, 1 begemoth.tk, 1 begethost.cf, 1 begin-motorcycling.co.uk, 1 @@ -20270,6 +20086,7 @@ behcr.com, 1 behealthandrehab.com, 1 behealthoncologia.com, 1 +behealthpr.com, 1 behealthyeveryday.eu, 1 behealthyoga.com, 1 behemoth.cf, 1 @@ -20284,15 +20101,19 @@ behleem.tk, 1 behoerden-online-dienste.de, 1 behold.gq, 1 +beholding.com, 1 behomewithlove.com.br, 1 behoreal.cz, 1 behotelmalta.com, 1 behpooshshop.com, 1 +behrami.com, 1 behrer.se, 1 beiersdorf-svz.ch, 1 beihelsinki.de, 1 beijing.bj, 1 +beijingit.com, 1 beijinglug.club, 1 +beijiquan.com, 1 beimchristoph.de, 1 beinad.com, 1 beinchrist.ca, 1 @@ -20307,6 +20128,7 @@ beiramar.tk, 1 beirasumos.pt, 1 beirel.ru, 1 +beistelltisch.com, 1 beitmidrashrambam.com, 1 beizsoft.co.uk, 1 bejago.com, 1 @@ -20341,7 +20163,6 @@ belarto.pl, 1 belarus-mtz.gq, 1 belarus.tk, 1 -belarusmemorials.com, 1 belarustoday.tk, 1 belarustravel.tk, 1 belastingdienst-in-beeld.nl, 0 @@ -20354,12 +20175,11 @@ beleaf.cz, 1 belebey.city, 1 beleefheemstede.nl, 1 -belegit.org, 1 +belegstelle-glashuette.de, 1 beleidtransitiemodel.nl, 1 beleiu.com, 1 beleiu.de, 1 beleiu.ro, 1 -belevingsboerderijdekoolberg.nl, 1 belezadateresa.com.br, 1 belezashopping.com.br, 1 belezna.hu, 1 @@ -20431,7 +20251,6 @@ bellafit.ch, 1 bellagloaesthetics.com, 1 bellagrandeentrances.com, 1 -bellalexandertitleapp.com, 1 bellamama.biz, 1 bellamodeling.com, 1 bellamodinha.com.br, 1 @@ -20439,7 +20258,6 @@ bellamy.md, 1 bellanews.tk, 1 bellaslokal.de, 1 -bellasnapolicaffe.com, 1 bellatight.com, 1 bellcarrington.com, 1 belle-bete.ca, 1 @@ -20560,7 +20378,6 @@ bendd.me, 1 bende.com.au, 0 bendechrai.com, 0 -benden.us, 1 bender.ga, 1 benderssportsandspirits.com, 0 bendingtheending.com, 1 @@ -20618,6 +20435,7 @@ bengaltourism.ml, 1 bengalurugifts.com, 1 bengaratei.com, 1 +bengcao.com, 1 bengisureklam.com, 1 bengkelkeramik.tk, 1 bengou.tk, 1 @@ -20635,6 +20453,8 @@ benify.com, 1 benihbaik.com, 1 benimseom.com, 0 +benimsetin.com, 1 +benimsetin.org, 1 beninca.link, 1 beninrevele.bj, 1 benizon.shop, 1 @@ -20666,6 +20486,7 @@ benmarron.co.uk, 1 benmatthews.com.au, 1 benmedia.nl, 1 +bennachie.com, 1 bennet.org, 0 bennettrainey.com, 1 bennettsbouncycastlehire.co.uk, 1 @@ -20698,6 +20519,7 @@ bensokol.com, 1 bensonhotel.com, 1 bensonvermont.gov, 1 +bensoy.com, 1 benstevinson.com, 1 bensvpn.ac, 1 bensvpn.net, 1 @@ -20705,12 +20527,12 @@ bensvriend.tk, 1 bent-nails.com, 1 bentallgreenoak.com, 0 -bentaylorforcroydonsouth.online, 1 bentcreekfarm.us, 1 bentebogholder.dk, 1 bentek.fr, 1 bentertain.de, 0 benthanhtourist.com, 1 +bentina.com, 1 bentley.blog, 1 bentley.link, 1 bentleyks.gov, 1 @@ -20746,7 +20568,6 @@ bep.gov, 1 bephoenix.org.uk, 0 bepick.blog, 1 -bepiratedo.gay, 1 bepositive.ml, 1 bepxl.art, 1 bepzi.com, 1 @@ -20768,6 +20589,7 @@ berdu.id, 1 berdyansk-news.ru, 1 bereaplumber.co.za, 1 +berechnen.com, 1 bereelcorporation.com, 1 bereginy.com.ua, 1 bereginya-lada.ru, 1 @@ -20789,6 +20611,7 @@ bergencountynj.gov, 1 bergenfieldnj.gov, 1 bergerandgreen.com, 1 +berget.ai, 1 berget.cloud, 1 bergevoet-fa.nl, 0 bergfex.at, 1 @@ -20804,9 +20627,6 @@ bergsjomannen.tk, 1 bergstrasse.eu, 1 bergvallsmassage.se, 1 -bergwandercamp.de, 1 -bergwandercamp.eu, 1 -bergwandercamp.info, 1 berhampore-gateway.tk, 1 berichtsheft-vorlage.de, 1 berighthere.com, 1 @@ -20950,15 +20770,16 @@ berthouvan.com.br, 1 bertlight.com, 1 bertold.org, 1 +bertolinoengineering.it, 1 bertr.am, 1 bertrandkeller.info, 0 bertsmithvwparts.com, 1 bertusengelbrecht.com, 1 berufenavi.de, 1 +berufszertifikate-und-diplome.net, 1 berwickpa.gov, 1 berz.one, 1 berzkalne.co.uk, 1 -besanowsky.de, 1 besant.de, 1 besarfe.com, 0 besb66.club, 1 @@ -20976,12 +20797,16 @@ besidemetal.tk, 1 besikta.se, 1 besiktasmtsk.com, 1 +besir.com, 1 +beskar.pro, 1 +beskiden.com, 1 besnard.me, 1 besnik.de, 0 besnik.tk, 1 besola.de, 1 besole.ch, 1 besolov.tk, 1 +besonderheit.com, 1 besox.be, 1 bespaarbazaar.nl, 1 bespaarenergie.click, 1 @@ -20989,7 +20814,7 @@ bespoiled.nl, 1 bespokespeaker.uk, 1 bespredel.tk, 1 -bess.edu.vn, 1 +bess.company, 1 bessels.tk, 1 bessems.com, 1 bessems.eu, 1 @@ -21017,7 +20842,6 @@ best-mum.fr, 1 best-nursing-colleges.com, 1 best-of-bounce.co.uk, 1 -best-pdf.com, 1 best-photobooth.ro, 1 best-practice.com.au, 1 best-seminar.gq, 1 @@ -21076,6 +20900,7 @@ bestcreditcards.news, 1 bestcreditcards.tv, 1 bestcriminallawyerinsingapore.com, 1 +bestcrmsoftware.com, 1 bestdatingsite.ml, 1 bestdatingsite.tk, 1 bestdeal-umzug.de, 1 @@ -21089,6 +20914,7 @@ besteckliste.com, 1 bestedeal.nl, 1 besteenergieleverancier.com, 1 +bestehen.com, 1 bestehostingproviders.nl, 1 bestelhetmaar.nl, 1 bestellipticalmachinereview.info, 1 @@ -21099,7 +20925,6 @@ bestessayhelp.com, 1 bestethereumcasinos.io, 1 besteuitvaartverzekering.com, 1 -bestfacts.ru, 1 bestfcu.org, 1 bestfewo.de, 1 bestfidgettoysforadhd.com, 1 @@ -21294,9 +21119,9 @@ besto.cf, 1 besto.ga, 1 besto.tk, 1 +bestofbackyard.com, 1 bestofbooks.gq, 1 bestofdate.com, 1 -bestoffunny.info, 1 bestofjazz.org, 1 bestofnuevovallarta.com, 1 bestofrooftop.com, 1 @@ -21359,8 +21184,7 @@ besv.com, 1 beszerzokozpont.hu, 1 bet-platform.com, 1 -bet06vip.com, 1 -bet08vip.com, 1 +bet08vip.com, 0 bet166111.com, 1 bet166333.com, 1 bet166444.com, 1 @@ -21431,7 +21255,6 @@ bet365x6.com, 1 bet365x9.com, 1 bet3zz.com, 1 -bet43app.com, 1 bet44410.com, 1 bet444403.com, 0 bet444424.com, 0 @@ -21439,6 +21262,7 @@ bet444426.com, 0 bet444429.com, 0 bet444430.com, 1 +bet4cash.com, 1 bet5119.com, 1 bet5234.com, 1 bet5757.com, 1 @@ -21495,6 +21319,7 @@ betadwarf.com, 1 betagro.com, 1 betahyp.de, 1 +betalgroup.com, 1 betandslots.com, 1 betandyou.com, 1 betandyou.mobi, 1 @@ -21522,6 +21347,7 @@ beteroud.nl, 1 betexperts.tk, 1 betfair.com.co, 1 +betfjord.se, 1 betformular.com, 1 bethanymo.com, 1 bethanytownshipmi.gov, 1 @@ -21590,6 +21416,7 @@ bettaline.com.au, 1 bettashoerepairs.com.au, 1 bettendorf.gov, 1 +better.ad, 1 better.com, 0 better.fyi, 1 betterbaseball.com, 1 @@ -21629,6 +21456,7 @@ bettertech.pt, 1 bettertechsoftware.com, 1 bettertime.jetzt, 1 +bettertogetherphysiciancoaching.com, 1 betterviewrentals.com, 1 betterworlded.org, 1 betterworldproducts.org, 1 @@ -21646,6 +21474,7 @@ betulashop.ch, 1 betus.tk, 1 betvisa.com, 1 +betweenbuns.com.br, 1 betweenthehills.be, 1 betweenthesheets.tk, 1 betwinner-india.com, 1 @@ -21682,6 +21511,7 @@ beurettes-en-chaleur.tk, 1 beursbever.be, 1 beurswandwereld.nl, 1 +beurteilt.com, 1 beus.ink, 1 beusefulbook.ru, 1 beuteugeu.com, 1 @@ -21714,7 +21544,6 @@ bevnut.com, 1 bevrijdingsmuseum.nl, 1 bewaredevapi.azurewebsites.net, 1 -beweegklas.nl, 1 bewegigsruum.ch, 1 bewegtes-lagern.at, 1 bewegtes-lagern.ch, 1 @@ -21769,6 +21598,8 @@ beyondpricing.com, 0 beyondqa.ai, 1 beyonds.fr, 1 +beyondsoft.com, 1 +beyondtailor.com, 1 beyondthe3d.com, 1 beyondthecode.io, 1 beyondthecreek.com, 1 @@ -21798,7 +21629,7 @@ bezposrednio.net.pl, 1 bezpredel.tk, 1 bf-foto.eu, 1 -bf2statistics.eu, 0 +bf2statistics.eu, 1 bfam.tv, 1 bfbet365.com, 1 bfbs.com, 1 @@ -21807,6 +21638,7 @@ bfelob.gov, 1 bfem.gov, 1 bfh.science, 1 +bfh24.ru, 1 bfharrison.com, 1 bfi.is, 1 bfkcloud.ddns.net, 1 @@ -21854,7 +21686,6 @@ bgmedia.tk, 1 bgmn.me, 1 bgmontaggi.com, 1 -bgp.co, 1 bgr34.cz, 1 bgrasmo.com, 1 bgs-game.com, 1 @@ -21889,6 +21720,7 @@ bhogavati.tk, 1 bhosted.nl, 1 bhpropco.com, 1 +bhrc.wa.gov.au, 1 bhserralheria.com.br, 1 bhsooq.com, 1 bhsportugal.org, 1 @@ -21913,7 +21745,7 @@ bia.gov, 1 bia3consultores.es, 1 biaform.be, 1 -biagioroggia.com, 0 +biagioroggia.com, 1 biagiowineandspirits.com, 1 biahposter.com, 1 biancadark.tk, 1 @@ -21937,6 +21769,7 @@ biasmath.es, 1 biaxin.cf, 1 biaxin.ml, 1 +bibanks.com, 1 bibb.de, 1 bibbvoice.com, 1 biber-bike.de, 1 @@ -21948,7 +21781,7 @@ bibit.id, 1 bibitbunga.com, 1 bibitec.de, 1 -bible-help.ru, 1 +bible-help.ru, 0 bible-maroc.com, 1 bible4u.net, 1 biblebrainhealth.com, 1 @@ -22010,7 +21843,6 @@ bichonfrise.com.br, 1 bichonmaltes.com.br, 1 bicignet.ga, 1 -bicisanjuan.com, 1 bicranial.io, 0 bicromoestudio.com, 1 bicstone.me, 1 @@ -22086,8 +21918,8 @@ bieville-beuville.fr, 0 biewen.me, 0 bifatura.com.tr, 1 +biffo.com, 1 biflosgknm.tk, 1 -biforthepeople.com, 1 biforthepeople.de, 1 bifrostwallet.com, 1 biftin.net, 1 @@ -22138,6 +21970,7 @@ bigbouncebouncycastles.co.uk, 1 bigbouncetheory.co.uk, 1 bigbounceuk.com, 1 +bigbrake.com, 1 bigbrassblog.com, 1 bigbroeyes.com, 1 bigbunce.ru, 0 @@ -22161,6 +21994,7 @@ bigeaglesacademy.gq, 1 bigeasyfences.com, 1 bigeasygrille.com, 0 +bigelkconstruction.com, 1 bigfreebet.com, 1 bigfreebielist.tk, 1 biggernews.gq, 1 @@ -22177,6 +22011,7 @@ bighugbotanicals.com, 1 bigid.com, 1 bigio.com.br, 1 +bigland.com, 1 biglapa.ru, 0 bigleads.com, 1 biglistofporn.com, 1 @@ -22185,6 +22020,7 @@ bigmike.ch, 1 bigmoney.nu, 1 bigmonsters.tk, 1 +bigmoth.gotdns.ch, 1 bigmuff.duckdns.org, 1 bignaturals.com, 1 bigone.com, 1 @@ -22235,6 +22071,7 @@ bigskylifestylerealestate.com, 0 bigskymontanalandforsale.com, 1 bigsmallhosting.com, 1 +bigsolar.com, 1 bigspark.it, 1 bigstonecounty.gov, 1 bigstr.com, 1 @@ -22337,7 +22174,7 @@ bilimal.kz, 1 bilimdonlar.com, 1 bilingualunit.tk, 1 -bilisimdanismani.com, 1 +bilirrubina.com, 1 biliti.pl, 1 bility.fr, 1 biljettmonster.se, 1 @@ -22433,16 +22270,6 @@ bimago.se, 1 bimbingan.tk, 1 bimedis.com, 1 -bimhomes.vn, 1 -bimibroccoli.co.uk, 1 -bimibroccoli.com, 1 -bimibroccoli.dk, 1 -bimibroccoli.it, 1 -bimibroccoli.nl, 1 -bimibroccoli.se, 1 -bimibrocoli.es, 1 -bimibrocoli.fr, 1 -bimibrokkoli.de, 1 bimmerlabs.com, 1 bimoge.tk, 1 bimstream.cloud, 1 @@ -22492,8 +22319,10 @@ bingcheung.com, 1 bingchunmoli.com, 1 bingebooks.com, 1 +binggun.com, 1 binghamcountyid.gov, 1 binghamid.gov, 1 +bingning.com, 1 bingo-wear.com, 1 bingo9.net, 1 bingoclub.ga, 1 @@ -22507,6 +22336,7 @@ bingothemesers.ga, 1 bingothemesest.ga, 1 bingx.pro, 1 +bingyou.com, 1 binhdang.me, 0 binhex.net, 1 binhminhpc.com, 1 @@ -22563,7 +22393,6 @@ biocentricinc.com, 1 biochart.ga, 1 biocheminee.com, 1 -bioclaudia.it, 1 biocomputingunit.es, 1 bioconnect.com, 0 biocorpsys.com, 1 @@ -22587,6 +22416,7 @@ biofattorietoscane.it, 1 biofeedback-luzern.ch, 1 biofeedbackcalifornia.org, 1 +biofire.gr, 1 biofizpribor.ru, 1 bioflamma.com, 1 bioforce.tk, 1 @@ -22609,6 +22439,7 @@ biohazardland.tk, 1 biohazardonline.tk, 1 biohazardous.tk, 1 +biohkw.de, 1 bioinfo-diag.fr, 1 bioinformaticsweb.tk, 1 biointelligence-explosion.com, 1 @@ -22671,6 +22502,7 @@ biopro-st.com, 1 biopsychiatry.com, 1 bioqual.com, 1 +biored.com.tr, 1 bioreference.com, 1 bioresonanz-ibiza.com, 1 biosafe.ch, 0 @@ -22908,7 +22740,6 @@ bitcoinheaders.org, 1 bitcoinindy.com, 1 bitcoinissafe.com, 1 -bitcoinjpn.com, 1 bitcoinkaufen.news, 1 bitcoinku.sh, 1 bitcoinkurs.news, 1 @@ -22984,7 +22815,6 @@ bitlo.io, 1 bitlo.org, 1 bitloco.net, 1 -bitly.sa, 1 bitmag.ml, 1 bitmaincare.com.ua, 1 bitmaincare.ru, 1 @@ -23036,7 +22866,6 @@ bitsync.nl, 1 bitten.pw, 1 bittentechsolutions.in, 1 -bitterley.org.uk, 1 bittersweetcandybowl.com, 1 bittervault.xyz, 1 bitti.africa, 1 @@ -23045,6 +22874,7 @@ bitton.com.au, 1 bittounsi.com, 1 bittrend.ga, 1 +bittrust.com, 1 bittylicious.com, 1 bitumenburundi.com, 1 bitumendrc.com, 1 @@ -23126,6 +22956,7 @@ bizteam.ga, 1 biztera.com, 1 biztok.eu, 1 +biztositok.com, 1 biztouch.work, 1 biztrend.ru, 1 bizuteria-laoni.tk, 1 @@ -23146,11 +22977,13 @@ bjarno.xyz, 1 bjbybbs.com, 1 bjc.hu, 1 +bjcw.com, 1 bjecard.buzz, 1 bjerregaard.me, 1 bjfconsulting.fr, 1 bjfuli.com, 1 bjjmississauga.com, 1 +bjksportscentre.com, 1 bjl688.cc, 1 bjm-gembas.be, 1 bjmaliwan.com, 1 @@ -23167,11 +23000,13 @@ bjs.com.au, 1 bjs.gov, 1 bjsbouncycastles.com, 1 +bjshare.com, 1 bjsms.de, 1 bjtf.com.au, 1 bjtxl.cn, 1 bjugard.io, 1 bjut.photos, 1 +bjxx.com, 1 bk-art.ru, 1 bk-info.lt, 1 bk-installatietechniek.nl, 1 @@ -23353,7 +23188,6 @@ black-mail.nl, 1 black-market.ga, 1 black-pool.net, 1 -black-rider-studio.eu, 1 black-rosella.tk, 1 black-side.tk, 1 black.com, 1 @@ -23435,7 +23269,6 @@ blackmagicshaman.com, 1 blackmaleme.com, 1 blackmark.me, 1 -blackmarlinship.com, 1 blackmaskpro.gq, 1 blackmetalencyclopedia.tk, 1 blackmetalist.tk, 1 @@ -23468,7 +23301,6 @@ blackshark.cf, 1 blacksheepsw.com, 1 blackslots.club, 1 -blacksmither.com, 1 blacksniffer.tk, 1 blackspark.tk, 1 blackspider.tk, 1 @@ -23513,7 +23345,6 @@ blaetter.de, 1 blaeu.com, 1 blagger.tk, 1 -blaggo.com, 1 blago-sostoyanie.ga, 1 blago-sostoyanie.gq, 1 blago-sostoyanie.ml, 1 @@ -23546,6 +23377,7 @@ blanchardvillewi.gov, 1 blanche-maison.be, 1 blanchescornwall.co.uk, 1 +blanchot.xyz, 1 blancmeteore.com, 1 blandineetfab.fr, 1 blandisd.us, 1 @@ -23576,6 +23408,7 @@ blastoise186.co.uk, 1 blasunafotocadadia.com, 1 blathinwheatens.tk, 1 +blatino.com, 1 blatnic.eu, 1 blatnice.cf, 1 blatnice.fun, 1 @@ -23607,7 +23440,6 @@ blazefire.tk, 1 blazelock.com, 1 blazeweb.ml, 1 -blazing-amber.nl, 1 blazing.cz, 1 blazingsaddles.ga, 1 blazingsuns.tk, 1 @@ -23656,7 +23488,6 @@ blideobames.com, 1 blids.nl, 1 blieque.co.uk, 1 -bliesener.com, 1 blijfbij.com, 1 blijfbij.eu, 1 bliker.ga, 1 @@ -23734,6 +23565,7 @@ blk-intern.ch, 1 blk-kriens.ch, 1 blkbx.eu, 1 +blkj.com, 1 bllb.ru, 0 bllmnn.de, 1 bllmnn.eu, 1 @@ -23744,6 +23576,7 @@ blnc.gov, 1 blo-melchiorshausen.de, 1 bloat.cat, 1 +blobby.com, 1 blobemoji.com, 1 blobfish.club, 1 blobfolio.com, 1 @@ -23759,12 +23592,10 @@ blockchain.info, 1 blockchain.poker, 1 blockchainbulteni.com.tr, 1 -blockchainmagazine.com, 1 blockchainreporter.net, 1 blockchaintech.ga, 1 blockcheck.network, 1 blockcreams.com, 1 -blocked.fun, 1 blocked.icu, 1 blockedservers.com, 1 blockedyourcar.com, 1 @@ -23844,6 +23675,7 @@ bloggingkits.org, 1 bloggingqna.com, 1 bloggingtips.com, 1 +bloggingtriggers.com, 1 bloggingwithchildren.com, 1 bloggs.xyz, 1 blogguitar.tk, 1 @@ -23877,7 +23709,6 @@ blogvadim.ga, 1 blogworm.eu, 1 blokada.org, 1 -blokino.org, 0 blokmap.be, 1 blokuhaka.fr, 1 blomberg.co.uk, 1 @@ -23894,10 +23725,10 @@ bloodandhonourcentral.tk, 1 bloodhaven.tk, 1 bloodhunt.eu, 1 +bloodmeter.com, 1 bloodmine.ga, 1 bloodmissionsest.ga, 1 bloodpop.tk, 1 -bloodsports.org, 1 bloodteam.tk, 1 bloody-hosting.tk, 1 bloody.pw, 1 @@ -24000,7 +23831,9 @@ bluegorilla.es, 1 bluegrasshospitality.com, 1 bluegrassprizes.com, 1 +bluehaven.ai, 1 bluehavenkinsale.com, 1 +bluehentai.tv, 1 blueheronbio.com, 1 bluehillme.gov, 1 bluehr.ph, 1 @@ -24080,6 +23913,7 @@ bluetape.tk, 1 bluetenfraeulein.de, 1 bluetexservice.com, 1 +bluetime.com, 1 bluetoothlasersers.ga, 1 bluetoothspecialist.ga, 1 bluetrout.nl, 0 @@ -24103,7 +23937,6 @@ bluicraft.tk, 1 bluinsights.aws, 1 blumagine.de, 1 -blumando.de, 1 blumar.com, 1 blumen-pusch.de, 1 blumenbasteln.ml, 1 @@ -24129,6 +23962,7 @@ blutopia.cc, 1 blutspende.de, 1 blutspendedienst.com, 1 +bluvacanze.it, 1 bluware.com, 1 bluxus.com, 1 bluzone.io, 1 @@ -24347,6 +24181,7 @@ bodenusa.com, 1 bodesi.com, 1 bodhi.fedoraproject.org, 1 +bodhionline.com, 1 bodies.es, 1 bodil.bg, 1 bodin.cz, 1 @@ -24376,6 +24211,7 @@ bodymod.tk, 1 bodymusclejournal.com, 1 bodyofevidence.ca, 1 +bodypad.com, 1 bodypainting.waw.pl, 1 bodyshaping.ml, 1 bodyshopnews.net, 1 @@ -24390,7 +24226,6 @@ boelsen.net, 1 boem.gov, 1 boemeldonck.nl, 1 -boenderoutdoor.nl, 1 boengefissaofnoh.nl, 1 boensite.tk, 1 boenyc.gov, 1 @@ -24467,6 +24302,7 @@ bolaodarico.com.br, 1 bolbilisim.com, 1 bolcaparca.com.tr, 1 +bold-fabrics.com, 1 boldare.com, 1 boldbeau.pt, 1 bolderly.com, 1 @@ -24590,7 +24426,6 @@ bonaselect.lv, 1 bonbonka.best, 1 bonbonmania.com, 1 -bonbonshop.ro, 1 bonchaboncha.com.tw, 1 bondagefetishstore.com, 1 bondandlewis.co.uk, 1 @@ -24602,7 +24437,6 @@ bondhudigital.com, 1 bondingwithbaby.ca, 1 bondlayer.com, 1 -bondlink.com, 1 bondmaster.tk, 1 bondo.eu, 1 bondpro.gov, 1 @@ -24618,6 +24452,7 @@ bonfi.net, 1 bonfire.co.uk, 1 bonfire.moe, 1 +bonfire.se, 1 bonfol.ch, 1 bong--brothers.tk, 1 bongbong-irl.com, 1 @@ -24634,12 +24469,13 @@ bonial.fr, 1 bonic.tk, 1 bonifatius-friedrich.de, 1 +bonificaamianto.lazio.it, 1 bonify.de, 1 bonita.com.br, 1 bonitadesax.com, 1 bonitamacas.tk, 1 bonitaslecturas.ml, 1 -bonitasoft.com, 1 +bonitasoft.com, 0 bonitech.co.uk, 1 bonito.pl, 1 bonjour-ratp.fr, 1 @@ -24705,17 +24541,20 @@ book-online.tk, 1 book-sites.cf, 1 bookameeting.se, 1 +bookb.com, 1 bookbazar.co.in, 1 bookcheapairline.com, 1 bookchums.com, 1 bookcreator.com, 1 bookeatio.info, 1 bookeventz.com, 1 +bookfirm.com, 1 bookgeek.ga, 1 booking.com, 1 bookinghealth.com, 1 bookingkoala.com, 1 bookinglane.com, 1 +bookingplacecostarica.com, 1 bookingready.com, 1 bookingslog.com, 1 bookingsrit.tk, 1 @@ -24752,16 +24591,15 @@ booksandcoffee.ml, 1 bookshopofindia.com, 1 booksinthefridge.at, 1 +booksky.com, 1 bookslibrarybooks.gq, 1 booksoncamping.com, 1 bookstores.gq, 1 bookstrap.ga, 1 booksy.com, 1 bookvuz.tk, 1 -bookwear.com, 1 bookworld.gr, 1 bookwormstory.social, 1 -bookwritercorner.com, 1 bookyourdata.com, 0 bool.be, 1 boom2.network, 1 @@ -24780,6 +24618,7 @@ boomsocial.com, 1 boomsoftware.nl, 1 boomsourcing.com, 1 +boomstyle.com, 1 boomtownevents.com, 1 boomtowntrail.com, 1 boomvm.pw, 1 @@ -24793,7 +24632,6 @@ boonecsdia.gov, 1 booneiowa.gov, 1 boonemo.gov, 1 -boonshoft.com, 0 booox.biz, 1 booox.cc, 1 booox.net, 1 @@ -24837,6 +24675,7 @@ boraarat.com, 1 boraboraphotos.com, 1 boracay.tk, 1 +boraclub.com, 1 borafalardeguito.com, 1 borahan.net, 1 boranco.tk, 1 @@ -24891,6 +24730,7 @@ boringsmith.com, 1 borisenko-alexander.com, 1 borisenko.by, 1 +borisfx.com, 1 borislam.tk, 1 borisof.tk, 1 borja.io, 1 @@ -24948,10 +24788,12 @@ boscrowan.co.uk, 1 bosdubica.tk, 1 bosekarmelitky.cz, 1 +bosengineering.be, 1 bosfood.de, 1 boskant.tk, 1 bosmanka.com, 1 bosnia-online.tk, 1 +bosniaks.com, 1 bosonogka.tk, 1 bospiraat.tk, 1 bospor.tk, 1 @@ -24966,7 +24808,9 @@ bosseo.id, 1 bossin-stuttgart.de, 1 bosslady.one, 1 +bossmarketing.ca, 1 bossurl.tk, 1 +bostan.com, 1 boston-medical-supply.com, 1 boston-molly.tk, 1 bostonadvisors.com, 0 @@ -25011,6 +24855,8 @@ botoks.tk, 1 botox.bz, 1 botpago.cl, 1 +botsa.com, 1 +botschaft.digital, 1 botschaften-an-das-volk-gottes.de, 0 botsindiscord.me, 1 botstack.host, 1 @@ -25185,6 +25031,7 @@ bouwklikweb.nl, 1 bouwma.nl, 1 bouwplaatscheckin.nl, 1 +bouwstenen.com, 1 bouzouada.com, 1 bouzouks.net, 1 bovender.de, 1 @@ -25213,7 +25060,6 @@ box-it-up.nl, 1 box.bz, 1 box.co.uk, 1 -box2.cz, 1 boxalouer78.fr, 1 boxbuttecountyne.gov, 1 boxclub-marburg.de, 1 @@ -25224,7 +25070,6 @@ boxdroplacrosse.com, 1 boxeldercountyut.gov, 1 boxeomexicano.tk, 1 -boxer-shorts.net, 1 boxerdogsaspets.com, 1 boxexpresslogistic.com, 1 boxfly.com, 1 @@ -25309,7 +25154,8 @@ bpvgoncalves.com, 1 bpvr.ddns.net, 1 bpvr.nl, 1 -bqcp.net, 1 +bpx.exchange, 1 +bpx.global, 1 bqool.com, 1 bqp.io, 0 bqtoolbox.com, 1 @@ -25324,11 +25170,13 @@ br7.ru, 1 br8.pl, 1 bra-horapparat.se, 1 +bra360.com, 1 braathe.no, 1 brabant.nl, 1 brabantia.com, 1 brabantse-delta.nl, 1 brabantserfgoed.nl, 1 +brabotax.nl, 1 braccialini.tk, 1 brace-automotive.com, 1 bracebridgechiro.com, 1 @@ -25372,7 +25220,6 @@ brailsford.xyz, 1 brain-club.info, 1 brain-e.co, 1 -brain-force.ch, 1 brain-storm.ml, 1 brain.gov, 1 brainatwork.it, 0 @@ -25381,19 +25228,20 @@ brainboard.de, 1 brainboxai.com, 1 brainburger101.tk, 1 +brainbus.com, 1 brainchasm.com, 1 braincorebismarck.com, 1 braincorp.com, 1 braineet.com, 0 brainefive.com, 1 brainfeed.nl, 1 +brainfirm.com, 1 brainguru.co.in, 1 brainguru.in, 1 brainhealth.gov, 1 brainit.at, 1 brainjuice.tk, 1 brainmade.tk, 1 -brainmanager.io, 1 brainobeat.com, 1 brainotony.com, 1 brainporteindhoven.com, 1 @@ -25462,13 +25310,16 @@ brandefense.io, 1 brandenburgertheater.de, 1 brandeps.com, 1 +brandermind.ai, 1 brandfactory.ml, 1 brandfolder.com, 1 +brandfoto.com, 1 brandhost.tk, 1 brandhout-b-tree.be, 1 brandingclick.com, 1 brandingcoapps.com, 1 brandinspiration.fr, 1 +brandjapan.com, 1 brandketers.com, 1 brandmovers.co, 1 brandnous.ca, 1 @@ -25586,7 +25437,6 @@ bravenboer.tk, 1 bravewiki.tk, 1 bravica.tk, 1 -bravo.bi, 1 bravoasociados.com, 1 bravodeal.com, 1 bravodescuento.es, 1 @@ -25633,7 +25483,6 @@ brcshipsupply.com, 1 brcz.tech, 1 breachlock.com, 1 -breachmedia.ca, 0 bread.fish, 1 breadandlife.org, 0 breadheads.net, 1 @@ -25686,6 +25535,7 @@ breen.com.br, 1 breentwp.gov, 1 breethe.com, 1 +breezly.fr, 1 breezyapp.hu, 1 breezypointmn.gov, 1 breffa.pl, 1 @@ -25709,9 +25559,11 @@ brekstore.biz.id, 1 brelin.tk, 1 brellich.eu, 1 +breloque.com, 1 bremen-restaurants.de, 1 bremerfriedensforum.de, 1 breml.com, 1 +bremsscheiben.com, 1 brendabecker.com, 1 brendanbatliner.com, 1 brendancroker.tk, 1 @@ -25725,6 +25577,7 @@ brentfieldschools.cf, 1 brentnewbury.com, 1 brenton.uk, 1 +brentonico.com, 1 brentsoslibraries.org.uk, 1 brentsvillehall.com, 1 brentwoodpa.gov, 1 @@ -25803,6 +25656,7 @@ brianlachapelle.tk, 1 brianlanders.us, 1 brianleejackson.com, 1 +brianm.com, 1 brianmoorefoto.com, 1 brianmwaters.net, 1 brianna.tk, 1 @@ -25820,7 +25674,6 @@ brianwesaala.com, 0 brianwilson.tk, 1 briarcliffmanor.gov, 1 -briarpatchfrenchiesandpugs.com, 1 briarproject.org, 1 bribesdereel.net, 1 brickadia.com, 1 @@ -25832,8 +25685,10 @@ bricks-clicks.com, 1 bricks4kidzelearn.com, 1 bricksandmotor.co.uk, 1 +brickup.de, 1 brickweb.co.uk, 1 brickwerks.io, 1 +bricmon.com, 1 bricmon.tk, 1 bricogarmadrid.es, 1 bricolajeux.ch, 0 @@ -25866,8 +25721,6 @@ bridgeitsolutions.com.au, 1 bridgemanualest.ga, 1 bridgement.com, 1 -bridgeout.com, 1 -bridgepayday.ph, 1 bridgeportlaboratory.tk, 1 bridgeportne.gov, 1 bridgeportwv.gov, 1 @@ -25884,7 +25737,7 @@ bridgetroll.org, 1 bridgewaterma.gov, 1 bridholm.se, 1 -bridozia.com, 1 +brief.law, 1 briefassistant.com, 1 briefbiz-news.tk, 1 briefingsdirect.com, 1 @@ -26033,6 +25886,7 @@ britishpropoliss.my.id, 1 britishsfaward.org, 1 britishsnoring.co.uk, 1 +britishvillage.com.br, 1 britney-galaxy.com, 1 britneyclause.com, 1 britneymanias.tk, 1 @@ -26055,6 +25909,7 @@ brk-t.org, 1 brk.dk, 1 brk.st, 1 +brkt.cc, 1 brkt.church, 1 brktkiliseleri.com, 1 brktkiliseleri.org, 1 @@ -26095,6 +25950,8 @@ broadwayvets.co.uk, 1 broansunited.tk, 1 broca.dk, 1 +brocanteur-debarras-paris.fr, 1 +brocc-myanmar.com, 1 brock.guide, 1 brockenhurstguide.com, 1 brockenhurstonline.com, 1 @@ -26137,10 +25994,9 @@ brokentoaster.tk, 1 broker-forex.it, 1 broker.id, 1 -broker.vn, 1 +broker4u.com, 1 brokerdecredite.ro, 1 brokerlink.ca, 1 -brokernew.com, 0 brokernews.com.au, 1 brokernotes.co, 1 brokerpro.com, 1 @@ -26197,8 +26053,9 @@ broomecountyny.gov, 1 broomorchard.com, 1 brosay-legko.ml, 1 -brossard.ca, 1 +brossard.ca, 0 brossmanit.com, 1 +brotaufstriche.com, 1 brother.com.hk, 1 brothers.tw, 1 brothersinbeetles.tk, 1 @@ -26280,6 +26137,7 @@ brueggers.com, 1 brueggi.tk, 1 brueser-gmbh.de, 1 +brugia.com, 1 brugpensioen.tk, 1 bruh.ltd, 1 bruidstaarten.tk, 1 @@ -26298,6 +26156,7 @@ bruneaufamily.digital, 1 brunella.tk, 1 brunetderochebrune.com, 0 +brunhild.com, 1 brunhilde.ml, 1 brunner.ninja, 1 brunnerworks.com, 0 @@ -26319,7 +26178,6 @@ brunroom.tk, 1 brunswick.com, 0 brunswickcove.com, 1 -brunswickfyr.ca, 1 brunswickme.gov, 1 brunswickncsheriff.gov, 1 brunswickohio.gov, 1 @@ -26421,6 +26279,7 @@ bserved.de, 0 bseuc.eu, 1 bsf-knowledgecity.com, 1 +bsfamily.tr, 1 bsg.ro, 1 bsgamanet.ro, 1 bsgcredit.com, 1 @@ -26429,6 +26288,7 @@ bsidesf.com, 1 bsidessf.com, 1 bskhq.tk, 1 +bskmt.com, 1 bsktweetup.info, 1 bslim-e-boutique.com, 1 bslinguistics.co.uk, 1 @@ -26530,8 +26390,6 @@ btssl.com, 1 btstewsoloads.com, 1 btsybt.com, 0 -btt-39.com, 1 -btt-59.com, 1 btt.community, 1 btt882.com, 0 btta13.com, 1 @@ -26540,9 +26398,11 @@ btth.pl, 1 bttorj45.com, 1 bttr-software.de, 1 +bttrade.com, 1 bturboo.com, 1 btwexperience.it, 1 btwgiftcard.it, 1 +btwj.com, 1 btwnmgmt.com, 1 btwsa.tk, 1 btwschool.it, 1 @@ -26565,6 +26425,7 @@ bubbleclipsnetwork.com, 1 bubblegumblog.com, 1 bubblelist.tk, 1 +bubblemedia.com, 1 bubblesco.tk, 1 bubblespetspa.com, 0 bubblin.io, 1 @@ -26591,7 +26452,6 @@ buchanantwpmi.gov, 1 buchangroupinc.com, 1 bucharestbachelorparty.com, 1 -buchbinderei-schaumann.de, 1 buchdata.it, 0 buchenheinrich.de, 1 buchhaltung-muehelos.de, 1 @@ -26652,6 +26512,7 @@ budeanu.com, 1 budejce.cz, 1 budejovickakarta.cz, 1 +budelivery.com, 1 buderus-family.be, 1 budget-box.com, 1 budget-cuts.tk, 1 @@ -26665,6 +26526,7 @@ budgetlob.gov, 1 budgetlovers.nl, 1 budgetrf.tk, 1 +budgetscan.nl, 1 budgewoihp.com.au, 1 budgow.com, 1 budiarto.id, 1 @@ -26681,9 +26543,8 @@ budsforbuddies.com, 1 budsmelim.ee, 1 budtraffic.net, 1 -budulanradu.ro, 1 +budulanradu.ro, 0 buednerei-202.de, 1 -buehler.rocks, 0 buehlerzell.de, 1 bueltge.de, 1 buena.me, 1 @@ -26781,7 +26642,7 @@ buildingdesign.tk, 1 buildinginspectionmandurah.ga, 1 buildingmaterials.tk, 1 -buildingpoint.pt, 1 +buildingpoint.pt, 0 buildingpointne.com, 1 buildingprojectsswanseama.gov, 1 buildingresiliency.org, 1 @@ -26813,7 +26674,6 @@ builtory.my, 1 builttosell.com, 1 builtvisible.com, 1 -builtwith.com, 1 buirey.com, 1 buirey.fr, 1 buissonchardin.fr, 1 @@ -26844,6 +26704,7 @@ bulbagram.ml, 1 bulbcompare.com, 1 bulbeenergia.com.br, 1 +bulbidea.com, 1 bulbonidos.tk, 1 bulbuly.tk, 1 buldogueingles.com.br, 1 @@ -26991,6 +26852,7 @@ burbaguena.tk, 1 burbankdental.com, 1 burberry-outlet.cf, 1 +burberrysunglasses.us, 0 burcevo.info, 1 burchfabrics.com, 0 burdo.nl, 1 @@ -27008,6 +26870,7 @@ burenservice.nl, 1 burenvoorburen.gent, 1 burevestnik.tk, 1 +burewala.com, 1 burewala.tk, 1 burewalanews.tk, 1 burg-burghausen.de, 1 @@ -27327,7 +27190,6 @@ businessnavigators.org, 1 businessnet.cf, 1 businessnetworks.tk, 1 -businessnews.fun, 1 businessnewsera.tk, 1 businessnight.ga, 1 businessoftheday.ga, 1 @@ -27400,6 +27262,7 @@ businessvisual.ga, 1 businesswaterfront.ga, 1 businesswebadmin.com, 1 +businesswise.nl, 1 businesswish.ga, 1 businessworth.ga, 1 businessx.in, 1 @@ -27439,11 +27302,18 @@ bustypassion.com, 1 bustypics.com, 1 bustyrack.com, 1 +busuan.com, 1 busuttil.org.uk, 1 buswell-familie.de, 1 +buswell.ai, 1 buswell.blog, 1 +buswell.cloud, 1 buswell.email, 1 buswell.family, 1 +buswell.haus, 1 +buswell.io, 1 +buswell.memorial, 1 +buswell.tech, 1 buswiki.ml, 1 busybee.nl, 1 busylamp.com, 1 @@ -27473,6 +27343,7 @@ buttedesmortssd1wi.gov, 1 butter.horse, 1 butter.ml, 1 +butterflytigress.com, 1 butterhost.ga, 1 buttermilk.cf, 1 butternutbox.com, 1 @@ -27485,6 +27356,7 @@ buttonsmashers.tk, 1 butts-are.cool, 1 butttexters.ga, 1 +butyric.com, 1 butz.cloud, 1 butzies.ddnss.org, 1 buuba.bid, 1 @@ -27498,7 +27370,6 @@ buvik.gov.in, 1 buviva.com, 1 buvocastings.nl, 1 -buxoro.uz, 1 buxru.tk, 1 buxum-communication.ch, 0 buy-aleve.gq, 1 @@ -27573,6 +27444,7 @@ buyessays.net, 1 buyessayscheap.com, 1 buyfluoxetineonline.gq, 1 +buyganodermacoffeeonline.com, 1 buygoldreview.com, 1 buyharpoon.com, 1 buyhydrochlorothiazide.ml, 1 @@ -27636,6 +27508,7 @@ buyzithromaxonline.ml, 1 buyzofranonline.tk, 1 buyzoloft.cf, 1 +buzhi.de, 0 buzinessmarket.ml, 1 buzt.cn, 0 buzt.com.br, 1 @@ -27648,6 +27521,7 @@ buzzenginegroup.com, 1 buzzfeast.com, 1 buzzhub.tk, 1 +buzzkill.rocks, 1 buzzman.ga, 1 buzzoi.com, 1 buzzpost.tk, 1 @@ -27690,7 +27564,6 @@ bwa.wroc.pl, 1 bwanglab.com, 1 bwashing.tk, 1 -bwasoimoveis.net, 1 bwcscorecard.org, 1 bwdstrategic.com, 0 bwell.bg, 1 @@ -27747,6 +27620,7 @@ bybrutus.com, 1 bybym.ml, 1 bycafeonline.com, 1 +bycatch.com, 1 bycialis.com, 1 bycorefi.com, 1 bydik.com, 1 @@ -27824,7 +27698,6 @@ bytepen.com, 1 bytepoint-software.nl, 1 bytepoint.nl, 1 -bytepoint.software, 1 bytes.fyi, 1 bytesec.net, 1 bytesflow.com, 1 @@ -27987,12 +27860,12 @@ cabaladada.org, 0 cabale.fr, 1 cabalistic.tk, 1 +caball.com, 1 caballeroalba.cf, 1 caballerosdeltablero.tk, 1 cabanactf.com, 1 cabaretadanowskyfan.tk, 1 cabasse-bourse.com, 1 -cabazon-tu.com, 1 cabbage.software, 1 cabbagetree.io, 1 cabcard.services, 1 @@ -28003,7 +27876,6 @@ cabezadelcaballo.tk, 1 cabina-photobooth.ro, 1 cabincrewcareercenter.com, 1 -cabincrewcentral.com, 1 cabineritten.nl, 1 cabinet-bedin.com, 0 cabinet-life.fr, 0 @@ -28014,13 +27886,13 @@ cabinetoumaima.tk, 1 cabinetselect.com, 1 cable-bg.com, 1 +cable360.de, 1 cableatierra.tk, 1 cablebustersllc.com, 1 cablehighspeed.net, 1 cableiran.com, 1 cablemadrid.tk, 1 cablemod.com, 1 -cables-pro.com, 0 cablesandkits.com, 1 cabletiesunlimited.com, 1 cablogrammes.fr, 1 @@ -28030,11 +27902,13 @@ caboose.app, 1 cabosaferide.com, 1 cabosilleiro.com, 1 +cabotagem.com, 1 cabotshores.com, 1 caboverde.tk, 1 cabphysio.ch, 0 cabr.al, 1 cabrachicagritona.tk, 1 +cabrils.com, 1 cabuilderservices.com, 1 cabvertising.it, 1 cac-ua.com, 1 @@ -28047,6 +27921,7 @@ cacaolalina.com, 1 cacareerzone.org, 1 cacaumidade.com.br, 1 +caccc.com, 1 cachacasantaterezinha.com.br, 1 cachaceros.tk, 1 cache-checker.com, 1 @@ -28102,6 +27977,7 @@ cadiar.tk, 1 cadici.ga, 1 cadifit.ga, 1 +cadillacfairview.com, 1 cadiskitchen.ca, 1 cadmail.nl, 1 cadman.pw, 1 @@ -28109,6 +27985,7 @@ cadmechanic.com, 1 cadoganhall.com, 1 cadonau.net, 1 +cadoneghe.com, 1 cadonet.tk, 1 cadovod.tk, 1 cadre.com, 1 @@ -28121,6 +27998,7 @@ cadwalk.de, 1 cady-jennifer.tk, 1 cadynce.com, 0 +caelandrayer.ca, 1 caerdav.com, 1 caesar.today, 1 caesarkabalan.com, 0 @@ -28141,8 +28019,11 @@ cafead.de, 1 cafeah.com, 1 cafeamazon.tk, 1 +cafeamore.com.br, 1 +cafeapple.com, 1 cafebab.com, 1 cafebalkanaz.com, 1 +cafebeauty.com, 1 cafebeirut.tk, 1 cafecentraal.tk, 1 cafecentral.tk, 1 @@ -28170,6 +28051,7 @@ cafenoorderzon.tk, 1 cafeobscura.nl, 1 cafesangtao.com, 1 +cafetaste.com, 1 cafeterya.tk, 1 cafethevibes.com, 1 cafethrive.co.uk, 1 @@ -28187,11 +28069,11 @@ cafled.org, 1 caflou.com, 1 caflou.cz, 1 -cafpatronato.it, 1 caftan.tk, 1 cag.legal, 1 cag.sh, 1 cagalogluhamami.com.tr, 1 +cagao.com, 1 cagbuzau.ro, 1 cageworld.tk, 1 cagi.org, 1 @@ -28200,7 +28082,7 @@ cagranollers.tk, 1 cagrierdogdu.com, 1 cagrimerkezinumarasi.com, 1 -cahabadigital.com, 1 +cahabadigital.com, 0 cahfee.com, 1 cahier-reutilisable.fr, 1 cahill.com, 1 @@ -28210,22 +28092,31 @@ cai-ti.com.tw, 1 cai.im, 1 cai.sg, 1 +caian.com, 1 caiben.org, 1 caibi.io, 1 caic.com.sg, 1 +caidao.com, 1 +caifan.com, 1 +caihuan.com, 1 caijunyi.net, 0 +caikuai.com, 1 caileb.com, 1 cailoli.com, 1 +caimin.com, 1 cainesjannif.com, 1 cainhoyathletic.com, 1 cainiao.moe, 1 caio.moe, 1 caipai.fm, 1 +caiqu.com, 1 caiqueparrot.com, 1 +cairan.com, 1 cairnterrier.com.br, 1 cairohost.ml, 1 cairokebab.com, 1 cairoshell.com, 1 +cairui.com, 1 cais.de, 1 caise.tk, 1 caissefrancaisedefinancementlocal.fr, 0 @@ -28233,6 +28124,8 @@ caivps.com, 1 caiwenjian.xyz, 1 caixideal-serralharia.pt, 0 +caiyi.com, 1 +caiyou.com, 1 caizx.com, 0 caj-eichstaett.de, 1 caja-pdf.es, 0 @@ -28249,6 +28142,7 @@ cake-n-go.com, 1 cake.com, 1 cakearific.com, 1 +cakebreadsnowgroup.com, 1 cakedeliver.com, 1 cakedeveloperers.ga, 1 cakedeveloperest.ga, 1 @@ -28267,7 +28161,6 @@ cakir.info.tr, 1 cakko.ml, 1 caknowledge.com, 1 -cakrawiratama.com, 1 cal-cal.com, 1 cal-pacpainting.com, 1 cal.goip.de, 1 @@ -28326,6 +28219,7 @@ caldaro.de, 1 caldaro.org, 1 caldc.org, 1 +calderacyber.com, 1 calderagallery.com, 1 calderasgranada.cf, 1 caldervets.co.uk, 1 @@ -28337,7 +28231,6 @@ caleatoxic.org, 1 caledoniaoh.gov, 1 caledonie.tech, 1 -calefon.uy, 1 calefones-electricos.com, 1 calendar.cf, 0 calendar.google.com, 1 @@ -28415,7 +28308,6 @@ callear.org, 1 callerstrom.se, 1 calleveryday.com, 1 -callfeatherfall.com, 1 callflex.com.br, 1 callfordataspeakers.com, 1 callforkunst.de, 0 @@ -28452,6 +28344,7 @@ calms.com, 1 calomel.org, 1 calonmahasiswa.com, 0 +calorioapp.com, 1 calotte-academy.com, 1 calpaterson.com, 1 calposa.ml, 1 @@ -28487,6 +28380,7 @@ camarzanadetera.tk, 1 camashop.de, 1 camastowncar.com, 1 +camazoon.com, 0 cambados.tk, 1 cambait.tk, 1 cambb.xxx, 1 @@ -28505,9 +28399,7 @@ cambridgesecuritygroup.org, 1 cambridgevaulting.com, 1 cambuslangharriers.org, 1 -camcelebs.com, 1 camconn.cc, 0 -camcookies.com, 1 camdenhistory.com, 1 camdennj.gov, 1 camdenny.gov, 1 @@ -28526,6 +28418,7 @@ cameo.ee, 1 cameos.bo, 1 camera-podvod.tk, 1 +cameraforensics.com, 1 camerahire.com.au, 1 camerajabber.com, 1 cameralabs.org, 0 @@ -28543,7 +28436,6 @@ cameroncountytx.gov, 1 cameronherold.com, 1 cameronphotographyok.com, 1 -cameronscoffee.com, 1 cameronstar.tk, 1 cameronwince.com, 1 cameronwv.gov, 1 @@ -28554,7 +28446,6 @@ camfire.team, 1 camgirl-info.net, 1 camgirl.ga, 1 -camgirldata.com, 1 camgo.org, 1 camhavuz.com, 1 camilamoreno.tk, 1 @@ -28621,7 +28512,6 @@ campingbuffs.com, 1 campingcarlovers.com, 1 campingdebergboer.tk, 1 -campingdekoolberg.nl, 1 campingdewatermolen.nl, 1 campingfontanelle.it, 1 campinggadgetest.ga, 1 @@ -28662,7 +28552,6 @@ camrecord.ml, 1 camreviews.org, 1 camrosewebservices.com, 1 -camsangels.com, 1 camsexia.com, 1 camsexia.net, 1 camsexia.org, 1 @@ -28674,9 +28563,11 @@ camsupplier.ml, 1 camsupplierers.ga, 1 camtor.ml, 1 +camtu.com, 1 camunaslab.org, 1 camunda.com, 0 camunda.org, 1 +camuri.com, 1 camview.nz, 1 camworld.com, 1 camzroofing.ca, 0 @@ -28701,6 +28592,7 @@ canadapets.club, 1 canadapost-postescanada.ca, 1 canadapropertyexpert.ca, 1 +canadasteroiddepot.is, 1 canadianarcticproducers.com, 1 canadianatheists.ca, 1 canadianatheists.com, 1 @@ -28757,7 +28649,7 @@ canberraoutletcentre.com.au, 1 canberrarunners.org.au, 1 cancan.ml, 1 -cancellationflights.com, 1 +cancelli.roma.it, 1 cancer-info.org, 1 cancer.gov, 1 canceraid.coach, 1 @@ -28789,7 +28681,7 @@ candlepro.cf, 1 candlevn.com, 1 cando.eu, 1 -candogiveguide.org, 0 +candogiveguide.org, 1 candohamrah.com, 1 candorhealthed.org, 1 candy-pop.tk, 1 @@ -28816,7 +28708,6 @@ candytip.ru, 1 candywings.com, 1 candyxs.org, 1 -canecorsodogguide.com, 1 canek.es, 1 canelaimobiliaria.com.br, 1 canellayachts.com, 1 @@ -28838,6 +28729,7 @@ canidelite-toulouse.fr, 1 canihavesome.coffee, 0 canile.it, 1 +canine.tools, 1 caninecadre.net, 1 caninejournal.com, 1 caninsulin.com, 1 @@ -28879,6 +28771,7 @@ cannonsforsale.com, 1 canntinas.com, 0 canntropy.com, 1 +canny.io, 1 cannyfoxx.me, 1 canobag.es, 1 canoeboot.org, 1 @@ -28955,14 +28848,17 @@ caodecristachines.com.br, 0 caodesantohumberto.com.br, 1 caos.ch, 0 +caoshanhu.com, 1 +caoshe.com, 1 caostura.com, 1 +caoyao.com, 1 caoyise.top, 1 +caozuo.com, 1 cap-study.com, 1 cap21-lrc.fr, 1 cap50.be, 0 cap73.fr, 1 cap75.com, 1 -capacityproject.org, 1 capari.co, 1 caparicasurflessons.com, 1 caparua.com, 1 @@ -29005,6 +28901,7 @@ capitains.tk, 1 capital-electronics.ml, 1 capitalcap.com, 1 +capitalcitycatfish.com, 1 capitalcollections.org.uk, 1 capitaldistrictneurofeedback.com, 1 capitaleconomics.com, 1 @@ -29038,6 +28935,7 @@ capitaltg.com, 0 capitaltruepartner.hk, 1 capitaltruepartnertechnology.cn, 1 +capitalwin.com, 1 capitan.ml, 1 capitanbeilinson.tk, 1 capitapeskanova.tk, 1 @@ -29055,7 +28953,6 @@ capmaison.com, 1 capmarquees.com, 1 capmoney.org, 1 -caponestudiolegale.it, 1 caponte.io, 1 caponvalleybank.com, 1 caporalmktdigital.com.br, 1 @@ -29079,6 +28976,7 @@ capsogusto.com, 1 capssouthafrica.co.za, 1 capstonehcm.com, 1 +capsugel.com, 1 capsuladigital.tk, 1 capsulafinanciera.com, 1 capsule.org, 0 @@ -29098,8 +28996,8 @@ captainsinn.com, 1 captainsonic.com, 1 captainsunshine.tk, 1 -captalize.com, 1 captavio.com, 1 +captcha.tools, 1 captchafox.com, 1 captify.ca, 1 captivationscience.com, 1 @@ -29142,6 +29040,8 @@ caralegal.de, 1 caralegal.eu, 1 caraliadeluxe.net, 1 +caralina.com, 1 +caramelldansen.com, 1 caramellespinell.tk, 1 caratennison.net, 1 carauctionnetwork.com, 1 @@ -29151,11 +29051,11 @@ carauctionsillinois.com, 1 carauctionsnewyork.com, 1 caraudiostore.tk, 1 +caraudioworx.nl, 1 caravaca.tk, 1 caravansciences.tk, 1 caravelairclub.tk, 1 caraz.tk, 1 -caraz.vn, 1 carballeira.tk, 1 carbaza.ru, 1 carberra.io, 1 @@ -29177,7 +29077,6 @@ carbondaleil.gov, 1 carbondix.com, 1 carboneventsupport.lu, 1 -carbonholic.org, 1 carbonkiller.org, 1 carbonlib.com, 0 carbonmapper.org, 1 @@ -29291,18 +29190,17 @@ careerandjobsearch.tk, 1 careercapital.co.za, 1 careerdiary.co.uk, 1 +careerfoundry.com, 0 careergigo.com, 1 careerminds.com, 1 careernet.in, 1 careeroptionscoach.com, 1 careerpower.co.in, 1 -careersinfosecurity.com, 1 careersingulf.com, 1 careersinpsychology.org, 1 careerslevel.com, 1 careerstart.co.jp, 1 careertransformed.com, 1 -careervillage.org, 1 carefreeschooling.ca, 1 carefu.link, 1 carefy.ph, 1 @@ -29327,12 +29225,15 @@ caret.be, 1 caretaker.com, 1 caretogether.coop, 1 +caretoyou.com, 1 +carevan.org, 1 carevic.eu, 1 carey.cl, 1 careyohio.gov, 1 careyolsen.com, 1 carezza.net, 1 carfaircomposites.com, 1 +carfamily.com, 1 carfax.ca, 1 carfaxcanadaappgateway.azurewebsites.net, 1 carfinancehelp.com, 1 @@ -29360,6 +29261,7 @@ cariki.gq, 1 carikiv.gq, 1 carillon.tk, 1 +carinacodes.com, 1 carinaklijn.nl, 1 carine.ml, 1 caringkitsforkids.org.uk, 1 @@ -29393,7 +29295,6 @@ carlinmack.com, 1 carlislebrass.com, 1 carlislecounty.gov, 1 -carlite.at, 1 carlitoxxpro.com, 1 carlmcasale.com, 0 carlmjohnson.net, 0 @@ -29514,7 +29415,6 @@ carolinebazin.fr, 1 carolineeball.com, 1 carolinegirvan.com, 1 -carolinehoule.com, 1 carolineovercash.com, 1 carolinepleuvret.fr, 1 carolmolinari.tk, 1 @@ -29542,6 +29442,7 @@ carplus.net, 1 carportscanberra.com, 1 carportus.com, 1 +carpostal.com, 1 carprice.auction, 1 carprice.ru, 1 carproof.com, 1 @@ -29594,10 +29495,10 @@ carsandstars.com.au, 1 carsdbshop.ru, 1 carseatchecks.ca, 1 -carservicekuwait.com, 1 carshippingcarriers.com, 1 carshop.bg, 1 carsinsuranceis.com, 1 +carsmate.com, 1 carsoft.tk, 1 carson-matthews.co.uk, 1 carsonca.gov, 1 @@ -29631,6 +29532,7 @@ carteles.tk, 1 cartelloni.roma.it, 1 carteltec.com, 1 +cartenova.co, 1 cartercountymo.gov, 1 carterdan.net, 1 carterjonas.co.uk, 1 @@ -29647,7 +29549,6 @@ carthage-il.com, 1 carthagecement.com.tn, 1 carthagesavings.com, 1 -carthedral.com, 1 cartierplan.ga, 0 cartographiepremiereligne.ca, 1 cartomancieperso.tk, 1 @@ -29718,7 +29619,6 @@ casacampolima.com, 1 casacapalbio.com, 1 casachameleonhotels.com, 1 -casachronicles.com, 1 casacoleccionistagaldar.tk, 1 casacolosseo.com, 1 casacoscolo.tk, 1 @@ -29727,6 +29627,7 @@ casadedios.tk, 1 casadegomes.com, 1 casadelasvinas.com, 1 +casadelsole.ro, 0 casadentalsas.com, 1 casadetiteres.tk, 1 casadoarbitro.com.br, 1 @@ -29795,13 +29696,15 @@ caseificio.roma.it, 1 caselemnbarat.ro, 1 casemaka.com, 1 -casemoose.com, 1 caseof.fr, 1 casepariurionline.ro, 1 caseplus-daem.de, 1 +caseright.com, 1 +caseright.io, 1 casertanews.it, 1 cases.lu, 1 cases.media, 1 +casesandclues.co.uk, 1 casetech.com, 1 casetta.net, 1 caseware-idea.fr, 1 @@ -29813,6 +29716,7 @@ caseware.in, 1 caseware.net.au, 1 caseware.nl, 1 +casewareanalytics.ca, 1 casewareanalytics.com, 1 casewareanalytics.info, 1 casewarecloud.com, 1 @@ -29822,14 +29726,12 @@ casewareonline.net.au, 1 casewaresmsfaudit.com.au, 1 caseycapitalpartners.com, 1 -caseykeith.me, 0 casgp.com, 0 cash-bot.tk, 1 cash-generator.tk, 1 cash.app, 1 cash.me, 1 cash.nyc, 1 -cash1loans.com, 1 cashamerican.tk, 1 cashati.com, 1 cashbackcow.us, 1 @@ -29873,6 +29775,7 @@ casino-cash-flow.su, 1 casino-cashflow.ru, 1 casino-hero.de, 0 +casino-poker-tour.com, 1 casino-r.com, 1 casino-spelletjes.com, 1 casino-trio.com, 1 @@ -29997,8 +29900,9 @@ casinocity.web.za, 1 casinocity.ws, 1 casinocitytimes.com, 1 -casinocosmopol.se, 0 casinocrit.com, 1 +casinodebeaulieu.com, 1 +casinodecavalaire.com, 1 casinofinder.ca, 1 casinofollower.com, 1 casinoleader.com, 1 @@ -30025,6 +29929,7 @@ casinospesialisten.net, 1 casinospilnu.dk, 1 casinotokelau.tk, 1 +casinotop1.com, 1 casinotop10.net, 1 casinotopplistan.com, 1 casinotopplisten.com, 1 @@ -30033,7 +29938,6 @@ casinozondercruks.nl, 1 casinozonderregistratie.net, 1 casitawn.cf, 1 -casjay.cloud, 0 casjenprome.cz, 1 caskntandoor.co.uk, 1 casko-insurance.tk, 1 @@ -30105,7 +30009,6 @@ castlecapers.com.au, 1 castledurrow.com, 1 castlehack.ga, 1 -castlehotelandspa.com, 1 castlekingdomstockport.co.uk, 1 castlekingkent.co.uk, 1 castlemania.tk, 1 @@ -30126,6 +30029,7 @@ castrovirreyna.tk, 1 casualclubdating.ml, 1 casualiswebs.com, 1 +casuallab.com, 1 casuallyblue.xyz, 1 casualtime.ga, 1 casusgrillcaribbean.com, 1 @@ -30149,6 +30053,7 @@ catalogingpro.com, 1 catalogobiblioteca.com, 1 catalogobiblioteca.net, 1 +catalogosdemujer.com, 1 catalogosvirtualesonline.com, 1 catalogueau.com, 0 catalojic.tk, 1 @@ -30193,6 +30098,7 @@ catclouds.net, 1 catcontent.cloud, 1 catcoxx.com, 1 +catcut.com, 1 catech.au, 1 catechese-ressources.com, 1 catedraderechonotarial.es, 1 @@ -30265,6 +30171,7 @@ catland.club, 1 catlettsburgky.gov, 1 catlicking.com, 1 +catlive.com, 1 catlovingcare.com, 1 catlowe.com, 1 catmash.tk, 0 @@ -30298,6 +30205,7 @@ catterydelmoria.tk, 1 catterydumagasin.tk, 1 cattiau.com, 1 +cattlemansadvocate.com, 1 cattleplay.gq, 1 catto.win, 1 cattsgym.co.uk, 1 @@ -30314,7 +30222,6 @@ caughtredhanded.co.nz, 1 caulacbonuochoa.tk, 1 caulfieldeastapartments.com.au, 1 -caulkingexperts.com, 1 caulong-ao.net, 1 caumont-normandie.fr, 0 cauquenes.tk, 1 @@ -30349,6 +30256,7 @@ cazfire.gov, 1 cazizi.com, 1 cazoo.co.uk, 0 +cazoo.com, 0 cb1388.com, 1 cb1588.com, 1 cba.ca, 1 @@ -30448,6 +30356,7 @@ ccatpracticetest.com, 1 ccatpracticetests.com, 1 ccattestprep.com, 1 +ccautomobil.de, 1 ccb.gov, 1 ccbaltics.com, 1 ccbank.bg, 1 @@ -30482,7 +30391,6 @@ cceputnam360.com, 1 ccestaque.tk, 1 ccfs-sorbonne.fr, 1 -ccgpro.com, 1 ccgx.de, 1 cchat.de, 1 cchp.com.au, 1 @@ -30573,7 +30481,6 @@ cdg30.fr, 1 cdga.org, 1 cdgitalia.org, 1 -cdhb.health.nz, 1 cdhome.ga, 1 cdhqt.com, 1 cdibtpjob.com, 1 @@ -30616,6 +30523,7 @@ cdrp09.com, 1 cds-infra.de, 1 cds-inquirer.tk, 1 +cdsc.one, 1 cdscsuc.gq, 1 cdseditora.com.br, 1 cdsf.tk, 1 @@ -30655,7 +30563,6 @@ cecimo.eu, 1 cecipu.gob.cl, 1 ceco.cf, 1 -cecop-rh.com, 1 ced-services.nl, 1 ceda-fi.tk, 1 cedac.org, 1 @@ -30685,8 +30592,10 @@ cefi.work, 1 cefonline.com, 1 cefpress.com, 1 +cefta.int, 1 cegfw.com, 1 cehjournal.org, 1 +ceiba.com.co, 1 ceicer.eu, 1 ceidf-vie-cooperative.fr, 1 ceiexam.sg, 1 @@ -30750,6 +30659,8 @@ celineitalia.tk, 1 celinesrecipes.com, 1 cellboost.cf, 1 +cellculturecompany.ai, 1 +cellculturecompany.biz, 1 cellebrite.com, 1 cellecci.com, 1 cellgames.com, 1 @@ -30760,7 +30671,6 @@ cellopasorobles.com, 1 cellrg.org, 1 cellsheet.me, 1 -cellsites.nz, 1 cellsys.pl, 1 celltek-server.de, 1 celltraders.ga, 1 @@ -30790,7 +30700,7 @@ cement-co2-protocol.org, 1 cementplas.es, 0 cementscience.com, 1 -cemes.re, 1 +cemes.re, 0 cemetary.tk, 1 ceml.ch, 1 cemporcentocliente.com.br, 1 @@ -30812,6 +30722,7 @@ censurfridns.nu, 1 census.name, 1 centariuss.ga, 1 +centella.me, 1 centella.tw, 1 centenariodeuncampeon.tk, 1 centenera.tk, 1 @@ -30918,6 +30829,7 @@ centros.ml, 1 centros.tk, 1 centrosocialferrel.pt, 1 +centrovenetoservizi.it, 1 centrum-bz.it, 1 centrum-edukacji.tk, 1 centrum.church, 1 @@ -30940,6 +30852,7 @@ centurion-consulting.tech, 1 centurion-it.site, 1 centurion-meet.site, 1 +centurion.net.au, 1 centurion.ovh, 1 centurioninfosec.com, 0 centurionlaboratories.com.ua, 1 @@ -30980,7 +30893,6 @@ cerbos.cloud, 1 cerbottana.duckdns.org, 1 cercanos.co, 1 -cerchio.com, 1 cercidiana.pt, 0 cercle-duclos.fr, 1 cercle-helvetia.ch, 0 @@ -31022,13 +30934,13 @@ cert.je, 0 cert.or.id, 1 cert.se, 1 +certa.ai, 1 certa.in, 1 certain.com, 0 certainbiz-news.tk, 1 certaintelligence.com, 1 certaireland.ie, 1 certaqa.com, 1 -certasenergy.co.uk, 0 certcenter.com, 0 certfa.com, 1 certi.photo, 1 @@ -31100,7 +31012,7 @@ ceskasit.cz, 1 ceslasvegasnews.com, 1 cesobaly.cz, 1 -cesonia.io, 1 +cesonia.io, 0 cespedes.fr, 1 cestasdepresente.com.br, 1 cestasedelicias.com.br, 1 @@ -31140,7 +31052,6 @@ ceylondigital.co.uk, 1 cezannehr.com, 1 cezdent.com, 1 -cf-connect.nl, 1 cf-ide.de, 1 cf-tm.net, 1 cf.nl.eu.org, 1 @@ -31190,12 +31101,13 @@ cfsrportal.org, 1 cfst.eu.org, 1 cftc.gov, 1 -cftcarouge.com, 0 cfurl.cf, 1 cfvbfbtlotto.com, 1 cfxdesign.com, 1 cg-design.tk, 1 cg-n.fr, 1 +cg-srv.com, 1 +cg-srv.net, 1 cg.al, 1 cg.search.yahoo.com, 0 cgal.org, 1 @@ -31341,12 +31253,10 @@ chaminadeonline.org, 1 chamonixcamera.cn, 1 champagne-guilleminot.fr, 1 -champagneandcoconuts.com, 1 champaigncountyclerkil.gov, 1 champaigncountyil.gov, 1 champdogs.co.uk, 1 champdogs.com, 1 -champion-yandare.ru, 1 championcastles.ie, 1 championnat-romand-cuisiniers-amateurs.ch, 1 champions.co, 1 @@ -31357,7 +31267,6 @@ championweb.com.au, 0 championweb.nz, 0 championweb.sg, 0 -champsglobal.org, 1 champslearning.co.uk, 1 chamsocial.com, 1 chamudi.lk, 1 @@ -31376,7 +31285,6 @@ chandramani.tk, 1 change-coaching-gmbh.ch, 1 change10000lives.com.ph, 1 -changeactivation.com, 1 changeanalytics.us, 1 changechecker.org, 1 changecopyright.ru, 1 @@ -31402,6 +31310,7 @@ channelpro.es, 1 channelprogram.com, 1 channingmotorsport.tk, 1 +chanska.com, 1 chantage.tk, 1 chantellbeauty.co.uk, 1 chantierjob.com, 1 @@ -31459,6 +31368,7 @@ chargeincluded.eu, 1 chargifi.com, 1 chargify.com, 1 +chariot.works, 1 chariots.tk, 1 charisma.ai, 1 charismadesign.ie, 1 @@ -31487,7 +31397,6 @@ charlesreedcagle.com, 0 charlesreid1.com, 1 charlesrogers.co.uk, 1 -charlesserviceco.com.au, 1 charlessturge.com, 1 charlestonfacialplastic.com, 1 charlestonpersonalinjurylawyer.com, 1 @@ -31552,7 +31461,6 @@ charteredsurveyorinlondon.co.uk, 1 charteroak.org, 1 charterreserve.com, 1 -charterup.com, 1 charthop.com, 1 chartkick.com, 1 chartlands.org, 1 @@ -31567,7 +31475,7 @@ chase4toy.com, 1 chaseandzoey.de, 1 chasebenefits.com, 1 -chasecorp.com, 1 +chasecorp.com, 0 chasecountyne.gov, 1 chasetrails.co.uk, 1 chaskafire.gov, 1 @@ -31577,10 +31485,12 @@ chasse-au-tresor.eu, 1 chasse-maree.com, 1 chasseurdetruites.com, 1 +chasti.com, 1 chastitybelts.tk, 1 chat-buddy.com, 1 chat-cam.tk, 1 chat-edu.org.uk, 1 +chat-insel.de, 1 chat-porc.eu, 1 chat.cz, 1 chat2.cf, 1 @@ -31655,6 +31565,7 @@ chattahoocheefl.gov, 1 chattanooga.gov, 1 chattergallery.com, 1 +chatteron.io, 1 chatticketsers.ga, 1 chattogether.tk, 1 chattycam.com, 1 @@ -31672,7 +31583,6 @@ chatzimanolis.gr, 1 chaudierecogeneration.com, 1 chauffage-budget.fr, 1 -chauffeurandbeyond.com, 1 chaumiere.ddns.net, 0 chaurocks.com, 1 chaussenot.net, 1 @@ -31859,7 +31769,6 @@ chefpablito.tk, 1 chefshooba.com, 1 chefsuccess.com, 1 -cheftasy.com, 1 chefwarekits.com, 1 cheguevaraclub.tk, 1 chehalemgroup.com, 1 @@ -31928,6 +31837,7 @@ chennien.com, 1 chennuo.xyz, 1 chenpei.org, 1 +chenqiang.com, 1 chentianyi.cn, 1 chenui.design, 1 chenx221.ml, 1 @@ -31972,6 +31882,7 @@ cherryjimbo.sucks, 1 cherrynova.live, 1 cherryonit.com, 0 +cherrypixel.com, 1 cherubicsoft.com, 1 cheryforum.net, 1 cheryls.com, 1 @@ -31983,7 +31894,6 @@ chesapeakewv.gov, 1 cheshirex.com, 0 chesolar.cz, 1 -chess-mentor.com, 1 chesslovin.com, 1 chesspoint.ch, 1 chesstempo.com, 1 @@ -31992,7 +31902,6 @@ chester-law.com, 1 chesterbennington.tk, 1 chestercountysc.gov, 1 -chesterfieldmayfair.com, 1 chesterultimatefrisbee.tk, 1 chestnut.cf, 1 chetin-orlov.ga, 1 @@ -32163,7 +32072,6 @@ chimaeraconsulting.eu, 1 chimaira.tk, 1 chimcanhcut.tk, 1 -chime.com, 1 chimebank.com, 1 chimera.sh, 1 chimerity.com, 1 @@ -32177,27 +32085,42 @@ china-online-news.tk, 1 china-ru.ru, 1 chinabank.ph, 1 +chinacbd.com, 1 chinacdn.org, 1 chinacheers.com, 1 +chinadiy.com, 1 chinadream404.com, 1 +chinadrilling.com, 1 chinafree.online, 1 chinafree.site, 1 chinaglobalsecurities.cn, 1 +chinahd.com, 1 chinahealthcareblog.cf, 1 +chinahitech.com, 1 chinaicpower.org, 0 chinaindexfund.cn, 1 chinainluxury.com, 1 chinajingkun.com, 1 +chinalike.com, 1 chinalosers.com, 1 +chinaneed.com, 1 +chinanurse.com, 1 chinaoptionsfund.cn, 1 chinaoptionsfund.com, 1 +chinaprices.com, 1 +chinaprofit.com, 1 +chinasay.com, 1 chinasearch.tk, 1 +chinaspa.com, 1 chinastory.tk, 1 chinasucksass.com, 1 chinati.org, 1 +chinava.com, 1 +chinavegan.com, 1 chinavicharana-mole.uk, 0 chinawhale.com, 1 chinchillas.tk, 1 +chindy.com, 1 chinees.restaurant, 1 chinefrancophonie.fr, 1 chinen-hs41.com, 1 @@ -32207,12 +32130,14 @@ chinesebrides.ml, 1 chinesedanceschool.com.au, 1 chinesedishes.tk, 1 +chinesefu.com, 1 chinesepen.org, 1 chinesephones.tk, 1 chineseplease.moe, 1 chinesewords.org, 1 chinfolk.tk, 1 ching.tv, 1 +chingjyu.cyou, 1 chiniiki.com, 1 chinohills.gov, 1 chinookmt.gov, 1 @@ -32228,6 +32153,7 @@ chio.nl, 1 chionwurahmp.com, 1 chip.icu, 1 +chipdesign-germany.de, 1 chipdig.com, 1 chipindy.org, 1 chipollinko.com.ua, 1 @@ -32273,6 +32199,7 @@ chitashop.ml, 1 chitinfo.tk, 1 chitlar.ml, 1 +chitownblackcars.com, 1 chitraltune.tk, 1 chittagongtextile.tk, 1 chiucainlaw.co.nz, 1 @@ -32301,6 +32228,7 @@ chmsoft.ru, 1 chmurakotori.ml, 1 chnbilling.com, 1 +chngold.com, 1 chnj.gov, 1 chobitool.com, 1 chobotsonline.com, 1 @@ -32336,11 +32264,9 @@ choice-design.com.tw, 1 choiceautoloan.com, 1 choiceroofingsolutions.com, 1 -choicespalliative.org, 1 choiceuniontown.org, 1 choirofbeirut.cf, 1 choisirmoneau.blog, 1 -chokesngags.com, 1 chokladfantasi.net, 1 chokoppang.com, 1 cholleria.es, 1 @@ -32366,7 +32292,9 @@ chopperdesign.com, 1 chopperforums.com, 1 chopradionet.tk, 1 +choptheknife.com, 1 chordiant.com, 1 +chordify.net, 1 chordmag.com, 1 chordpage.com, 1 chordu.com, 1 @@ -32390,7 +32318,6 @@ chowtime.chat, 1 choylifut.tk, 1 choyri.com, 1 -chpa.org, 1 chr0me.sh, 1 chrawrizard.org, 1 chrestos.de, 1 @@ -32404,7 +32331,6 @@ chrisandian.com, 1 chrisballam.com, 1 chrisbrockdiving.com, 1 -chrisbrowntherapies.co.uk, 1 chrisbryant.me.uk, 1 chrisbulow.uk, 1 chrisburnell.com, 1 @@ -32443,13 +32369,13 @@ chrissytechaira.tk, 1 christ.cm, 1 christadelphians.eu, 1 +christchurcharmley.org.uk, 1 christcostum.tk, 1 christec.net, 1 christengroei.tk, 1 christensenplace.us, 1 christerwaren.com, 1 christerwaren.fi, 1 -christiaanconover.com, 1 christian-folini.ch, 1 christian-garo.com, 1 christian-gredig.de, 1 @@ -32617,6 +32543,7 @@ chrpaul.de, 0 chrsmtc.com, 1 chrstn.eu, 1 +chrstngr.cm, 1 chrt-tcdp.gc.ca, 1 chrudim-city.cz, 1 chrxw.com, 1 @@ -32627,7 +32554,6 @@ chsamuel.net, 1 chscourier.com, 1 chsh.moe, 0 -chshouyu.com, 0 chsinc.com, 1 chsmedical.com, 1 chsterz.de, 1 @@ -32639,6 +32565,7 @@ chuan.cc, 0 chuan.top, 1 chuanggu.com, 1 +chuangyi.com, 1 chubbygirlpics.com, 1 chubr.cf, 1 chubuhokenservice.com, 1 @@ -32661,6 +32588,7 @@ chukou.ml, 1 chukou.tk, 1 chulinkuei.org.tw, 1 +chullostravelperu.com, 1 chumy.vn, 1 chun.pro, 1 chunabhatti.tk, 1 @@ -32693,7 +32621,6 @@ churchillhealthcentre.com, 1 churchlinkpro.com, 1 churchlw.tk, 1 -churchm.ag, 1 churchmetrics.com, 1 churchofchrist.tk, 1 churchofhispresence.org.uk, 1 @@ -32707,10 +32634,7 @@ churchwebcanada.ca, 1 churchwebsupport.com, 1 churnfree.com, 1 -churning.us, 1 churrascariacampogrande.com.br, 1 -churubito.com, 1 -churubito.nl, 1 chuskocity.tk, 1 chuspace.com, 1 chutingstar.com, 1 @@ -32798,12 +32722,15 @@ cidones.tk, 1 cie-theatre-montfaucon.ch, 0 cie.nl, 1 +ciecompraenlinea.com, 1 +ciekawi.com, 1 ciekwestronki.cf, 1 ciekwestronki.ga, 1 ciekwestronki.gq, 1 ciekwestronki.ml, 1 ciel.coffee, 1 ciel.si, 1 +ciele.com, 1 cielo-thefilm.com, 1 cienciasempresariais.pt, 1 cienegaspa.com, 1 @@ -32842,7 +32769,6 @@ cimaroom.com, 1 cimbalino.org, 1 cimballa.com, 1 -cimediweb.it, 1 cimetierenotredamedesneiges.ca, 1 cimfax.com, 1 cimice.it, 1 @@ -32861,6 +32787,7 @@ cincy.gov, 1 cinderstravels.com, 1 cindey.io, 1 +cindy.cn, 1 cine-music.de, 1 cine-passion16.fr, 1 cine.to, 1 @@ -32922,11 +32849,11 @@ cinsels.com, 1 cinshine.nl, 1 cintamanilingerie.co.uk, 1 -cinteo.com, 1 cinthia.tk, 1 cio-spirit.de, 1 cio.gov, 1 ciobusinessworld.com, 1 +ciochina.com, 1 cionir.fr, 1 cioscloud.com, 1 cioudways.pro, 1 @@ -32975,6 +32902,7 @@ circlewe.co, 1 circlewe.life, 1 circlewelife.com, 1 +circoeia.com, 0 circolopizza.es, 0 circu.ml, 0 circues.com, 1 @@ -33031,6 +32959,7 @@ cissofitness.com, 1 cistarolaw.com, 1 cistenikoberculiberec.net, 1 +cistic.mx, 1 cistit.tk, 1 cistoaracnoide.org, 1 cisum-cycling.com, 1 @@ -33071,8 +33000,9 @@ citizensbankal.com, 1 citizenscience.gov, 1 citizensgbr.org, 1 -citizenside.fr, 0 +citizenside.fr, 1 citizensleague.org, 1 +citizentruth.org, 1 citos.ga, 1 citoyen.eu, 1 citrincooperman.com, 1 @@ -33092,6 +33022,7 @@ city-adm.lviv.ua, 1 city-glas.com, 1 city-home.tk, 1 +city-nn.com, 1 city-online.tk, 1 city-walks.info, 1 city.kharkov.ua, 1 @@ -33340,7 +33271,6 @@ cj-jackson.com, 1 cj26.club, 1 cj8.de, 1 -cjallroundservices.com, 1 cjc.gob.es, 1 cjc.org.es, 1 cjca.es, 1 @@ -33394,6 +33324,7 @@ ckliemann.com, 1 ckliemann.net, 1 ckostecki.de, 1 +ckp.eg, 1 ckp.ie, 1 ckpl.io, 1 ckpl.us, 1 @@ -33408,7 +33339,6 @@ cl0ud.space, 0 claarycherry.com, 1 clacetandil.com.ar, 1 -clactonfencingsupplies.co.uk, 1 clad.cf, 1 clague.moe, 1 claibornecountyms.gov, 1 @@ -33529,13 +33459,14 @@ clarkwinkelmann.com, 1 clarosports.com, 1 clarotvpromocao.com.br, 1 -claroty.com, 1 clarr.tk, 1 claryssabarbosa.com.br, 1 clasa-mea.tk, 1 clase3.tk, 1 clash-movies.de, 1 +clash.taipei, 1 clashclans.pl, 1 +clashclub.com, 1 clashersrepublic.com, 1 clashoflights.ga, 1 clashpost.com, 1 @@ -33555,6 +33486,7 @@ classic-literature.com, 1 classic-literature.net, 1 classic-literature.org, 1 +classic.cn, 1 classicalchaos.tk, 1 classicalpilates.ca, 1 classicbakes.com, 1 @@ -33585,6 +33517,7 @@ classicstories.tk, 1 classificacaogeral.com.br, 1 classificadostodaoferta.tk, 1 +classificazionerifiuti.it, 1 classifiedsgulf.com, 1 classifiedspoint.tk, 1 classifylanka.com, 0 @@ -33719,7 +33652,6 @@ clearip.com, 1 clearklima.hu, 1 clearlake.com, 1 -clearlakechildrenscenter.com, 1 clearlinux.org, 1 clearmatics.com, 1 clearpathtechnology.co.uk, 1 @@ -33733,6 +33665,7 @@ clearstone.au, 1 clearstoneip.com, 0 clearstreamcapital.com, 1 +clearsys.ee, 1 cleartheear.co.uk, 1 clearview-creative.com, 1 clearview-psychiatry.com, 1 @@ -33748,6 +33681,7 @@ clearwatercountymn.gov, 1 clearwaterseries.tk, 1 clearwatersexhealth.com, 1 +clearwaymind.com, 1 cleburneinsurance.com, 1 cledepeaubeaute.com, 1 cleelandspecialists.com.au, 1 @@ -33763,7 +33697,6 @@ clement-gruin.fr, 1 clementavenue.co.uk, 1 clementfevrier.fr, 1 -clementinepoetry.us, 1 clementlodge.co.uk, 1 clementluck.com, 1 clementsfamily.co, 1 @@ -33772,6 +33705,7 @@ cleo.com, 1 cleocinonline.gq, 1 cleova.com, 1 +clep.cn, 1 clerkie.io, 1 cles-asso.fr, 1 cles.jp, 1 @@ -33849,7 +33783,6 @@ clickarmy.com, 1 clickatell.com, 1 clickcell.tk, 1 -clickclickmedia.com.au, 1 clickclock.cc, 1 clickcollect.boutique, 1 clickdebateest.ga, 1 @@ -33876,6 +33809,7 @@ clickrising.com, 1 clicks.codes, 1 clicks24.cf, 1 +clicksacolas.com, 0 clickseek.in, 1 clicksengage.com, 1 clickspeedtest.net, 1 @@ -33896,7 +33830,6 @@ clientboss.com, 1 clientcms.co.uk, 1 clientelink.com.br, 1 -clientify.com, 1 clientpay.com, 0 clientportal.photo, 1 cliff-rilly-website.tk, 1 @@ -33915,10 +33848,11 @@ clima-techservices.co.uk, 1 climaencusco.com, 1 climaffaires.com, 1 +climall.com, 1 climarte.org, 1 climate-film.com, 1 climate-of-the-past.net, 1 -climatebrick.com, 1 +climatebrick.com, 0 climatechangedmit.com, 1 climatecore.gov, 1 climatecorp.gov, 1 @@ -33927,17 +33861,21 @@ climatejustice.nyc, 1 climatesafepensions.org, 1 climatesmart.ie, 1 +climatetax.com, 1 climatgate.tk, 1 climaticequipment.tk, 1 climatizzatore.it, 0 climatizzatore.roma.it, 1 climatizzatoriprezzi.it, 1 +climatizzazione.roma.it, 1 climaventa.net, 1 climaverde.gr, 1 climb4achild.org, 1 climbernews.com, 1 climbing.tk, 1 +climbinggear.info, 1 climbinghouse.com, 1 +climbingmounttoubkal.com, 1 climeradar.com, 1 clinakos.com, 1 clinchcountyga.gov, 1 @@ -33962,6 +33900,7 @@ clinicadentalaravena.com, 1 clinicadentalayomunoz.com, 1 clinicadentalhome.com, 1 +clinicadentalramoscatalina.com, 1 clinicadoctormit.ro, 1 clinicaeiger.cl, 1 clinicaeliana.com, 1 @@ -34014,7 +33953,6 @@ cliomi.gov, 1 clip-hair.net, 1 clipboard.com.tr, 1 -clipchamp.com, 1 clipclip.com, 1 clipertrucado.com, 1 clipfor.ge, 1 @@ -34097,6 +34035,7 @@ cloud-dc.dedyn.io, 1 cloud-glaeser.dedyn.io, 1 cloud-hair.jp, 1 +cloud-lines.ml, 1 cloud-paradise.ddns.net, 1 cloud-screen.com, 1 cloud-world.tk, 1 @@ -34122,6 +34061,7 @@ cloudatedge.com, 1 cloudav.pt, 1 cloudavy.com, 1 +cloudaware.eu, 1 cloudbees.ai, 1 cloudbees.com, 1 cloudbees.io, 1 @@ -34144,7 +34084,6 @@ clouddesk.co.uk, 1 clouddog.com.br, 1 clouddomain.tk, 1 -clouddownunder.com.au, 1 cloudeasy-dl.com, 1 cloudeezy.com, 1 cloudera.com, 0 @@ -34165,7 +34104,6 @@ cloudfree.top, 1 cloudfronts.com, 1 cloudfudge.com, 1 -cloudgroup.mx, 1 cloudhero.ai, 1 cloudia.org, 1 cloudily.com, 1 @@ -34174,7 +34112,6 @@ cloudindex.io, 1 cloudinfinit.com, 1 cloudix.cf, 1 -cloudkid.link, 1 cloudlandmark.com, 1 cloudlessdreams.com, 0 cloudlight.biz, 1 @@ -34193,7 +34130,6 @@ cloudnovi.com, 1 cloudns.net, 1 cloudofertas.com.br, 1 -cloudofgoods.com, 1 cloudoptimizedsmb.com, 1 cloudpagesforwork.com, 1 cloudparts.com.tr, 1 @@ -34278,7 +34214,6 @@ clowd.ovh, 1 clown-clan.tk, 1 clown-workshop.de, 1 -clown-zappo.de, 1 clownish.co.il, 1 cloxy.com, 1 cloydnco.com, 1 @@ -34294,6 +34229,7 @@ clsmalta.eu, 0 clsoft.ch, 1 clu-in.org, 1 +clu.com.ua, 1 cluadmin.de, 1 club-adulti.ro, 1 club-creole.com, 1 @@ -34387,6 +34323,7 @@ clubpes.tk, 1 clubpeugeot405.tk, 1 clubpilates.sa, 1 +clubpublic.cl, 1 clubserveers.ga, 1 clubsuccessjapan.com, 1 clubtamarugal.tk, 1 @@ -34450,7 +34387,6 @@ cmcbank.co.in, 1 cmcjanuary.in, 1 cmcm.lu, 1 -cmcoolrooms.com.au, 1 cmcp.org, 1 cmcressy.ch, 1 cmd2021acm.com, 1 @@ -34474,6 +34410,7 @@ cmn-groupe.com, 0 cmngroup.com, 0 cmngroupe.com, 0 +cmo.im, 1 cmogus.com, 1 cmonlien.fr, 1 cmperalta.tk, 1 @@ -34502,6 +34439,7 @@ cmt-france.org, 1 cmt35.ru, 1 cmtindia.com, 1 +cmtk.cloud, 1 cmtportal.co.uk, 1 cmtso.com, 1 cmv.gr, 1 @@ -34527,12 +34465,15 @@ cnetion.com, 1 cnetw.xyz, 1 cnews.ru, 1 +cnexchange.com, 1 cnfree.xyz, 1 +cngf.com, 1 cngvp.org, 1 cni-certing.it, 1 cni.net.id, 1 cnil.fr, 1 cnitdog.com, 1 +cnki.com, 1 cnlongtex.com, 1 cnmi.gov, 1 cnmilaw.gov, 1 @@ -34570,16 +34511,15 @@ coachablebyabel.nl, 1 coachbakery.com, 1 coachcommunio.com, 1 +coachemocionalmentesaludable.site, 1 coaches-website.de, 1 coachfoundation.com, 1 coachinfopreneur.com, 1 coaching-aus-leidenschaft.com, 1 coaching-harmonique.fr, 1 coaching-impulse.ch, 0 -coaching-in-veenendaal.nl, 1 coaching-oberhavel.de, 1 coachingforleaders.com, 1 -coachingmillenium.com, 1 coachingsantcugat.cat, 1 coachjehond.nl, 1 coachment.dk, 1 @@ -34610,10 +34550,12 @@ coasthotels.com, 1 coastline.net.au, 1 coastnews.cf, 1 +coastwideweb.com.au, 1 coathangastrangla.com, 1 coathangastrangler.com, 1 coathangerstrangla.com, 1 coathangerstrangler.com, 1 +coating-equipment.com, 1 coats-and-jackets.tk, 1 coats.com, 1 coatsandcocktails.org, 1 @@ -34662,6 +34604,7 @@ cockmonkey.tk, 1 cockpitdekor.at, 1 cockpitdekor.com, 1 +cocktail-express.com, 1 cocktailwebbook.com, 1 cockybot.com, 1 coco-01.gq, 1 @@ -34703,8 +34646,10 @@ codabix.de, 1 codandn.com, 1 codastory.com, 1 +codcourier.org, 1 code-35.com, 0 code-alliance.de, 1 +code-beacon.io, 1 code-ch.com, 1 code-de-la-route-gratuit.net, 1 code-gen.ca, 1 @@ -34726,6 +34671,8 @@ code4rena.com, 1 code9000.be, 1 code972.com, 1 +codeactive.fr, 1 +codeactive.net, 1 codeandpeace.com, 1 codeandsupply.co, 1 codeberg.org, 1 @@ -34752,7 +34699,6 @@ codeeclipse.com, 1 codefaq.org, 1 codefather.ml, 1 -codefionn.eu, 1 codefive.co.uk, 1 codefordus.de, 1 codefordus.nrw, 1 @@ -34782,6 +34728,7 @@ codename-infinity.org, 1 codename24.tk, 1 codenamelungo.tk, 1 +codenetwork.com, 1 codeninja.me, 1 codenlife.kr, 1 codenlife.xyz, 1 @@ -34822,7 +34769,7 @@ codesgroup.tk, 1 codeslaw.com, 1 codesplain.in, 1 -codesport.io, 0 +codesport.io, 1 codessale.com, 1 codestudies.net, 1 codesync.sa, 1 @@ -34857,6 +34804,7 @@ codex.rocks, 1 codexdigital.com, 1 codexio.in, 1 +codexlog.com, 1 codezenith.com, 1 codezeno.com.au, 1 codialog.org, 1 @@ -34881,6 +34829,8 @@ codingblog.org, 1 codingforspeed.com, 1 codingfromhell.net, 1 +codinggirl.com, 1 +codinggirl.net, 1 codinghomeworkhelp.net, 1 codinginfinity.me, 1 codingnbb.com, 1 @@ -34895,6 +34845,7 @@ codulrutier.tk, 1 coduzion.com, 1 cody.sh, 1 +codybrunner.com, 1 codydostal.com, 1 codyv.me, 1 codywy.gov, 1 @@ -34919,7 +34870,6 @@ coffeebarometer.org, 1 coffeebean.cf, 1 coffeebeanstudios.tk, 1 -coffeebreak.bg, 1 coffeechi.ir, 1 coffeeciel.com, 1 coffeeciel.com.tr, 1 @@ -34937,6 +34887,7 @@ coffer.fi, 1 coffstotalroofing.com.au, 1 cofidisperte.it, 1 +cofidur.com, 1 cofigs.com, 1 cofinco.nl, 1 coforge.com, 1 @@ -34957,6 +34908,7 @@ cognac-oenologie.com, 1 cognicrypt.de, 1 cognigennetwork.tk, 1 +cognitive-enhancers.com, 1 cognitiveapplications.net, 1 cognitivebehaviourtherapytoronto.com, 1 cognitohq.com, 0 @@ -35017,10 +34969,10 @@ coinsuggest.com, 1 cointosh.jp, 1 cointotaal.com, 1 -coinuke.com, 1 coinwind.vip, 1 coinx.pro, 1 coiracom.net, 1 +coisapet.com.br, 1 cojam.ru, 1 cojo.eu, 1 cokebar.info, 0 @@ -35033,6 +34985,7 @@ colaborame.tk, 1 colaborativa.tv, 1 colaboratorija.lt, 1 +colabore.com, 1 colabug.com, 1 colafoodcritic.com, 1 colah.com.au, 1 @@ -35073,7 +35026,6 @@ coldtomatoest.ga, 1 coldwater.tk, 1 coldwateraustin.com, 1 -colearning.world, 1 colecountymo.gov, 1 colectivaradio.tk, 1 colectivo.tk, 1 @@ -35101,6 +35053,7 @@ coligo.fr, 1 colinasdog.com.br, 1 colincogle.name, 1 +colinemadral.com, 0 colinespinas.com, 0 colinhouston.com, 1 colinhowells.com, 1 @@ -35140,6 +35093,7 @@ collare.com.mx, 1 collare.mx, 1 collateral360.com, 1 +collateralloanshawaii.com, 1 colleadimari.com, 1 collectablescentre.com, 1 collectdocs.com, 1 @@ -35163,6 +35117,7 @@ collectorsystems.com, 1 college-chagall.tk, 1 college-ic.ca, 1 +college-sewing.co.uk, 1 collegeeducation.ml, 1 collegeinlouisiana.com, 1 collegeinoklahoma.com, 1 @@ -35192,6 +35147,7 @@ collide.be, 1 collideascope.co, 1 colliechatter.com, 1 +collierlittler.com, 1 collierlunaire.fr, 1 colliervotes.gov, 1 colliezucht-kasak.de, 1 @@ -35233,6 +35189,7 @@ coloffmedia.com, 1 cologix.com, 1 cololi.moe, 1 +colombia.co, 1 colombia.travel, 1 colombiajobstoday.com, 1 colombian.cam, 1 @@ -35574,6 +35531,7 @@ comocomprarumcarro.tk, 1 comoculosdesol.pt, 1 comodo.nl, 1 +comodosslstore.com, 1 comoentrenarperros.tk, 1 comofidelizarclientes.com.br, 1 comogene.com, 0 @@ -35592,9 +35550,9 @@ comosehace.online, 1 comovenderpelowhatsapp.com.br, 1 comoviajarcontumascota.com, 1 +comp-consultants.com, 1 comp4u.de, 1 compab.it, 1 -compact.pt, 0 compactador-vendetta.tk, 1 compactloan.com, 1 compagnidimerenda.tk, 1 @@ -35616,7 +35574,6 @@ comparativ.net, 1 compare-energie.fr, 1 compareairfaredeals.com, 1 -compareandrecycle.co.uk, 0 compareer.com, 1 compareleasedlines.co.uk, 1 comparemymobile.com, 1 @@ -35659,13 +35616,13 @@ completeanon.tk, 1 completecareair.com, 1 completecarloans.com, 1 -completecase.com, 1 completecomps.au, 1 completecontrol.tk, 1 completeonlinepharmacy.com, 1 completepayrollsolutions.com, 1 completeprivacy.tk, 1 completewordsest.ga, 1 +complex-it.de, 1 complex-kaspiy.tk, 1 complex-news.com, 1 complex-organization.com, 1 @@ -35693,19 +35650,21 @@ composite-isfahan.ir, 1 compositedevtec.tk, 1 compostelle-bouddha.fr, 1 +compostodesucesso.com.br, 1 compoundc.eu, 1 compoundingrxusa.com, 1 compra-deuna.com, 1 compraapartamentomoema.com.br, 1 comprachida.com, 1 compraenpijama.com, 1 -comprafasil.com, 1 comprando.tk, 1 compraporinternet.online, 1 comprarefiereygana.com, 1 +comprarlomejor.com, 1 comprarpapelhigienico.online, 1 comprascuba.online, 1 comprauncelular.com, 1 +comprebrindes.com.br, 1 compree.com, 1 comprehensiveihc.com, 1 compress.cafe, 1 @@ -35728,6 +35687,7 @@ compucorner.tk, 1 compucycle.com, 1 compudoc.tk, 1 +compumasapp.com, 1 compunet.biz, 1 compunetics.com, 1 compunetix.com, 1 @@ -35804,6 +35764,7 @@ comuniondelucia.com, 1 comunismo.tk, 1 comunistas.tk, 1 +comunitas.com, 1 comunitateonline.tk, 1 comunityflashgame.cf, 1 comvert.com, 1 @@ -35818,8 +35779,10 @@ conafonline.it, 1 conall.io, 1 conalpedis.tk, 1 +conapdis.go.cr, 1 conbida.co, 1 conbrio.tk, 1 +concellodeortigueira.gal, 1 concellodoparamo.tk, 1 concellopoio.gal, 1 concentrade.de, 0 @@ -35879,6 +35842,7 @@ concursurionline.ro, 1 condemnity.net, 1 condenast.co.uk, 1 +condensacion.com, 1 condictor.pl, 1 condignum.com, 1 condit.cf, 1 @@ -35913,7 +35877,7 @@ confac.org, 1 confer.ch, 1 conference-expert.eu, 1 -conference.cafe, 1 +conference.cafe, 0 conference.dnsfor.me, 1 conferencebrightstartfoundation.org, 1 conferencemanager.ch, 1 @@ -35956,6 +35920,7 @@ confiscation.tk, 1 confiwall.de, 1 conflictcontrol.fi, 1 +conflictspecialist.com, 1 conflidentliving.cf, 1 confluent.cloud, 1 conformat.com, 1 @@ -35985,6 +35950,7 @@ congresodelospueblos.org, 1 congressmankirk.com, 1 congresso.tk, 1 +congye.com, 1 conicyt.cl, 1 coniectoinvestments.com, 1 coniglione.tk, 1 @@ -36000,6 +35966,7 @@ conkret.eu, 1 conkret.mobi, 1 conmatic.tk, 1 +connactz.com, 1 connect-again.com, 1 connect-me.com, 1 connect.facebook.net, 1 @@ -36007,7 +35974,6 @@ connect.net.pk, 1 connectaimpianti.it, 1 connectall.tk, 1 -connectandsell.com, 1 connectavid.com, 1 connectcablenet.com, 1 connectedbynexus.com, 1 @@ -36199,9 +36165,9 @@ consultoriadeseguranca.com.br, 1 consultoriosodontologicos.com.br, 1 consultorseo.pt, 1 -consultorseobr.com.br, 0 consultorseolocal.eu, 1 consultpetkov.com, 1 +consultum.com, 1 consulvation.com, 1 consumatore.it, 1 consumer.ee, 1 @@ -36211,7 +36177,6 @@ consumer.org.nz, 1 consumeraction.gov, 1 consumeraffairs.gov.tt, 1 -consumerattorneys.com, 1 consumerbureau.gov, 1 consumercal.org, 1 consumerfiles.com, 1 @@ -36234,10 +36199,10 @@ contabilidadebhpampulha.com.br, 1 contabilidadebrooklin.com.br, 1 contabilidademassarelli.com.br, 1 -contabipro.io, 1 contact-checker.tk, 1 contact.inc, 1 contact.xyz, 1 +contactangle.com, 1 contactbadger.com, 1 contacted.io, 1 contactelus88.fr, 1 @@ -36245,7 +36210,6 @@ contactsrl.it, 1 contactstay.com, 1 contadorespublicos.co, 1 -contagiousaf.com, 1 contailor.de, 1 containerstock.ru, 1 contalbi.pt, 1 @@ -36258,7 +36222,6 @@ contemptevoke.com, 1 contenedoresdereciclaje.online, 1 contenized.com, 0 -contentmaaksters.nl, 1 contentpass.io, 1 contentpass.net, 1 contents.ga, 1 @@ -36310,6 +36273,7 @@ contro.gq, 1 contro.ml, 1 contro.tk, 1 +control.cn, 1 controladores.net, 1 controlbooth.com, 1 controld.com, 1 @@ -36358,7 +36322,6 @@ converting.click, 1 convertire-documenti.it, 1 convexic.com, 1 -conveyance.pro, 0 conveyinc.com, 1 conveyo.io, 1 convicted-driver-insurance.com, 1 @@ -36413,7 +36376,6 @@ cool-fouta.com, 1 cool-parties.co.uk, 1 cool-tabs.com, 1 -cool-wallpapers.jp, 1 cool110.tk, 1 cool110.xyz, 1 coolabaroo.com.au, 1 @@ -36429,7 +36391,7 @@ cooldomains.tk, 1 coole-fete.de, 1 coolerssr.space, 1 -coolest-gadgets.com, 1 +coolexpo.com, 1 coolfilm.cf, 1 coolgeography.co.uk, 1 coolgifs.de, 1 @@ -36439,8 +36401,10 @@ cooljs.me, 1 cooljv.com, 1 coolkidsparty.nl, 1 +coolleader.com, 1 coolmath.cf, 1 coolpi.nl, 1 +coolplus.com, 1 coolprylar.se, 1 coolsculptingmanhattanbeach.com, 1 coolshirt.tk, 1 @@ -36454,7 +36418,6 @@ coolvox.com, 1 coolweirdfacts.ga, 1 coolwinefix.com, 1 -coombsinc.com, 1 coomer.su, 1 coomonte.tk, 1 coonelnel.net, 1 @@ -36498,10 +36461,12 @@ copewithschoolnyc.com, 1 cophumouraustralia.com, 1 copie-sjop.nl, 1 +copiermarket.com, 1 copiisiparinti.ro, 1 copilotgps.com, 1 copilotlive.com, 1 copilotpro.com, 1 +coppelmansmakelaardij.nl, 1 copper.co, 1 copperart.ca, 1 coppercreekconstruction.ca, 1 @@ -36523,13 +36488,11 @@ copycenter.cf, 1 copycrafter.net, 1 copyfast.cf, 1 -copygeneral.pl, 1 copyhandler.com, 1 copypoison.com, 1 copyright-watch.org, 1 copyright.gov, 1 copyrightclaimsboard.gov, 1 -copyrightcoins.com, 1 copyrightcoins.help, 1 copyrighted.com, 0 copyrighter.tk, 1 @@ -36603,10 +36566,12 @@ corecdn.org, 1 corecolor.co.jp, 1 coreconcepts.com.sg, 1 +corecore.com, 1 cored.al, 1 coredna.com, 1 coredns.rocks, 1 coredrive.com, 1 +coredroid.com, 1 corefy.com, 1 coreg.tk, 1 corelationinc.com, 1 @@ -36620,7 +36585,6 @@ corepartners.com.ua, 1 corephysicians.org, 1 corerad.net, 1 -corescientific.com, 1 coresecret.de, 1 coresecret.eu, 1 coresignal.com, 0 @@ -36638,6 +36602,7 @@ coreyjmahler.com, 1 corfound.org, 1 corfuny.gov, 1 +corgal.com, 1 corgi.party, 1 corgiaspets.com, 1 corgiclub.art, 1 @@ -36649,7 +36614,6 @@ corima.it, 1 corina-york.de, 1 corinnanese.de, 1 -corinsamsterdam.com, 1 corintech.net, 1 coriolis.ch, 1 corisu.co, 1 @@ -36658,7 +36622,6 @@ cork.tech, 1 cork.technology, 1 corkcityfc.tk, 1 -corkedwinebar.com, 1 corker.biz, 1 corky.tk, 1 corleoncatering.com, 1 @@ -36718,7 +36681,6 @@ corpfin.net, 1 corpheuss.ga, 1 corpio.nl, 1 -corplex.com, 1 corpoflow.nl, 1 corpomotriztokio.com, 1 corpora.ga, 1 @@ -36812,7 +36774,6 @@ corthouts.pl, 1 cortino.ga, 1 cortis-consulting.ch, 1 -cortizocampillo.com.mx, 1 cortlandcountyny.gov, 1 cortlandreview.com, 1 cortlandvoice.com, 1 @@ -36875,7 +36836,6 @@ cosmictourist.de, 1 cosmicworlds.mobi, 1 cosmocode.de, 1 -cosmodacollection.com, 1 cosmohit.ua, 1 cosmohost.info, 0 cosmohosting.site, 1 @@ -36891,6 +36851,7 @@ cosmosenalerta.tk, 1 cosmosmkt.com.mx, 1 cosmoz.ga, 1 +cosms.com, 1 cosmundi.de, 1 cosmv.org, 1 cosni.co, 1 @@ -36989,6 +36950,8 @@ count-iq.pl, 1 count-iq.sk, 1 count.town, 1 +countdowntomagic.com, 1 +countercloud.com, 1 counterenlol.com, 1 counterespionage.com, 1 countermats.net, 1 @@ -37037,7 +37000,6 @@ couponcodesme.com, 1 couponpaw.com, 1 couponsale.tk, 1 -couponzania.com, 1 couponzil.com, 1 courage-sachsen.org, 1 courage.cf, 1 @@ -37047,6 +37009,7 @@ couriersrs.com, 1 coursables.com, 1 coursave.com, 1 +coursdejaponais.com, 0 courseconfidence.com, 1 coursehero.com, 1 coursehunter.net, 1 @@ -37090,6 +37053,7 @@ coventryuk.tk, 1 covepoconoresorts.com, 1 cover-fashion.de, 1 +cover4pm.com, 1 coverage-db.org, 1 coveragecareservices.co.uk, 1 coveragent.de, 1 @@ -37235,6 +37199,7 @@ cpsc.gov, 1 cpsecureapp.com, 1 cpsilvicultural.com.br, 1 +cpsnap.org, 1 cpsq.fr, 1 cpstest.live, 1 cpstest.org, 1 @@ -37250,6 +37215,7 @@ cpxz.nl, 1 cpy.pt, 1 cqchome.com, 0 +cqep.com, 1 cqfuchen.com, 1 cqoicebordel.tk, 1 cqradio.tk, 1 @@ -37286,6 +37252,7 @@ crackserialkey.co, 1 cracksnet.tk, 1 crackstation.net, 1 +crackstreams.top, 1 crackunit.com, 1 cracky-chan.bounceme.net, 1 cracky-chan.com, 1 @@ -37342,6 +37309,7 @@ craftwarehouse.com, 1 craftwmcp.xyz, 1 craftychameleonbar.com, 1 +craftycove.store, 1 craftydev.design, 1 craftyguy.net, 1 craftyphotons.net, 1 @@ -37377,7 +37345,6 @@ crapitalism.biz, 1 crapmail.tk, 1 crapouill.es, 1 -crappyaf.com, 1 crash-de-1929-et-grande-depression.tk, 1 crashbolsa.com, 1 crashcomputer.tk, 1 @@ -37409,7 +37376,6 @@ crawfordscientific.com, 1 crawfordtx.gov, 1 crawler.ninja, 1 -crax.tube, 0 crayon.co, 1 craytos.jp, 1 crazedknitters.com, 1 @@ -37427,6 +37393,7 @@ crazycube.tk, 1 crazydomains.ae, 1 crazydomains.co.uk, 1 +crazydomains.com, 1 crazydomains.com.au, 1 crazydomains.in, 1 crazydrivers.tk, 1 @@ -37464,9 +37431,12 @@ crcncc.org, 1 crcprojects.in, 1 crcr.pw, 0 +cre-pf.org.au, 1 +cre8iveco.com, 1 cre8ivedeals.com, 1 crea-shops.ch, 0 crea.bg, 1 +crea3dsolutions.com, 1 creabis.de, 1 creacioneslri.com, 1 creactive-mjardevi.se, 1 @@ -37482,6 +37452,7 @@ cream-dream.com.ua, 0 creamcastles.co.uk, 1 creamfields.com, 1 +creamless.com, 1 creamosweb.co, 1 creampiepussytube.com, 1 creamsoft.com, 1 @@ -37538,10 +37509,12 @@ creativecommons.gr, 1 creativecommonscatpictures.com, 1 creativecommunityforpeace.com, 1 +creativeconsult.com, 1 creativedijital.com.tr, 1 creativeedge.ch, 1 creativeeducation.tk, 1 creativeexpertdesigner.com, 1 +creativefocus.com, 1 creativegraphix.com, 1 creativeground.com, 1 creativeground.com.au, 1 @@ -37570,7 +37543,6 @@ creativeweb.biz, 1 creativewolf.net, 1 creativeworks.com.hk, 1 -creatividigitali.com, 1 creativityalliance.com, 0 creativlabor.ch, 1 creatix.tk, 1 @@ -37610,6 +37582,7 @@ creditcheckup.com, 1 creditcorponline.com, 1 crediteurope.ru, 1 +creditfair.in, 1 credithuman.com, 1 creditif.tk, 1 creditkarma.ca, 1 @@ -37622,6 +37595,7 @@ creditor.tk, 1 creditorapido.pt, 1 creditorwatch.com.au, 1 +creditosonline.pt, 1 creditozen.es, 0 creditozen.mx, 0 creditreport.tk, 1 @@ -37693,6 +37667,7 @@ crewresourcesinternational.group, 1 crewsing.tk, 1 crewsits.com, 1 +crewtaskglobal.com, 1 crewvision.pt, 1 crex24.com, 1 crezcco.com, 1 @@ -37719,7 +37694,7 @@ cricrocket.com, 1 crictechs.com, 1 cridigital.net, 1 -criena.com, 1 +criena.com, 0 criena.net, 1 crigler-najjar.fr, 1 criglernajjarday.com, 1 @@ -37732,6 +37707,7 @@ crimean-wines.tk, 1 crimeandwar.com, 1 crimefreeliving.com, 1 +crimeid.cc, 1 crimemuseum.org, 1 crimereports.com, 1 crimes.media, 1 @@ -37755,7 +37731,7 @@ criminalnote.tk, 1 criminalskin.tk, 1 criminologia.or.cr, 1 -crimsh.com, 1 +crimsh.com, 0 crimson.no, 0 crimsonconnect.co.uk, 1 crimsoncoward.com, 1 @@ -37796,6 +37772,7 @@ crispinplasticsurgery.com, 1 crispinusphotography.com, 1 crisple.info, 1 +crispregional.org, 1 crispsheets.com, 1 crispybacon.ml, 1 crisscrossjazz.com, 1 @@ -37821,6 +37798,7 @@ cristnasar.tk, 1 cristomisina.tk, 1 cristomoradocusco.tk, 1 +cristyclauserphotography.com, 1 criteriaproducciones.tk, 1 criterion.ga, 1 criterionsystems.co.uk, 1 @@ -37847,6 +37825,7 @@ criu.org, 1 crivitz.gov, 1 crix.ro, 1 +crj.ovh, 1 crl-aus.com, 1 crl-autos.com, 1 crlna.com, 1 @@ -37863,7 +37842,6 @@ crmplace.com, 1 crmservice.fi, 1 crmtaxi.ml, 1 -crmzz.com, 1 crn.li, 1 crnajobsite.com, 1 crnalab.net, 1 @@ -37880,10 +37858,12 @@ crockettpups.com, 1 crocky.tk, 1 crocop.tk, 1 +crocs.eu, 1 crocuscoaching.co.uk, 1 croeder.net, 1 croftsvetsurgery.co.uk, 1 crohns-disease.org.uk, 0 +croissancelocal.fr, 1 croissant.casa, 1 cromavista.tk, 1 cromefire.de, 1 @@ -38003,6 +37983,7 @@ croydon-nh.gov, 1 croydonapartments.com.au, 1 croydonbouncycastles.co.uk, 1 +croydondrive.org.uk, 1 croydonlabourgroup.co.uk, 1 croydonsouthlabour.org, 1 crpcentroradiologico.com.br, 1 @@ -38060,6 +38041,7 @@ crusadernews.com, 1 cruscotto-legno.it, 1 crushbarexam.com, 1 +crushedice.uk, 1 crushingcaspars.de, 1 crushthefinancialanalystexam.com, 1 crushthelsatexam.com, 1 @@ -38096,7 +38078,6 @@ cryptifo.com, 1 cryptii.com, 0 cryptin-it.com, 1 -cryptingup.com, 1 cryptitan.live, 1 cryptme.in, 1 crypto-ads.ga, 1 @@ -38135,7 +38116,7 @@ cryptofinance.ai, 1 cryptofomo.capital, 1 cryptofox.nl, 1 -cryptogazette.com, 1 +cryptogaming.com, 1 cryptography.blue, 1 cryptography.ch, 1 cryptography.io, 1 @@ -38206,7 +38187,7 @@ crystal.com.co, 1 crystaland.bg, 1 crystalapp.ca, 1 -crystalball.photo, 0 +crystalball.photo, 1 crystalblockchain.com, 1 crystalcaves.tk, 1 crystalcherryonline.tk, 1 @@ -38263,6 +38244,7 @@ csaerotherm.com, 1 csafederalsummit.com, 1 csale.co.il, 1 +csapa.com, 1 csaposs.com, 1 csasummit.net, 1 csasummit.org, 1 @@ -38288,6 +38270,7 @@ cse-avantages.com, 1 cse-sna78.fr, 1 csedsp.fr, 1 +csedu.com, 1 csehnyelv.hu, 1 csekkold.hu, 1 cselzer.com, 1 @@ -38316,6 +38299,7 @@ csgomtr.com, 1 csgotwister.com, 1 csgoyournal.com, 1 +csharp.love, 1 csharpfactory.io, 1 csharpmarc.net, 1 cshe.de, 1 @@ -38324,14 +38308,12 @@ cshm-schm.ca, 0 cshostorg.tk, 1 cshs.edu, 1 -cshub.com, 1 csilies.de, 1 csillagoszpumi.se, 1 csirt.ee, 0 csitarz.com, 1 cskentertainment.co.uk, 1 cskt.gov, 1 -cslbbs.net, 0 cslbuild.com, 1 cslctt.com, 1 cslctt.org, 1 @@ -38340,6 +38322,7 @@ csnc.ch, 1 csnet.live, 1 csokolozos-jatekok.tk, 1 +csolar.com, 1 csorncss.ca, 1 csosa.gov, 1 csosew.org, 1 @@ -38363,9 +38346,9 @@ css.direct, 1 cssai.eu, 1 cssbmb.gov, 1 -csservicio-pioneer.com.mx, 1 cssninja.io, 1 csspublic.tk, 1 +cssrstransports.ca, 1 cssspnql.com, 1 csssr.com, 1 csszamotuly.pl, 1 @@ -38382,6 +38365,7 @@ csty.ltd, 1 csu.st, 1 csub.edu, 1 +csuchen.com, 1 csulauniversitytimes.com, 1 csulb-cmp-eir.com, 1 csumathtutor.com, 1 @@ -38391,6 +38375,7 @@ csvalpha.nl, 1 csvlombardia.it, 1 csvplot.com, 1 +csw.cn, 1 cswrld.com, 1 csx.co.za, 1 csy.hu, 1 @@ -38401,6 +38386,7 @@ ct.search.yahoo.com, 0 ctafo.com, 0 ctauditors.gov, 1 +ctc-g.com.sg, 1 ctcloud.ml, 1 ctcom-peru.com, 1 ctconp.org, 1 @@ -38418,6 +38404,7 @@ cthulhuden.com, 1 ctir.gov.br, 1 ctj.im, 1 +ctjk.com, 1 ctknight.me, 1 ctkwwri.org, 1 ctl.fi, 1 @@ -38442,6 +38429,8 @@ ctr-sante.eu, 1 ctrl.blog, 1 ctrl.gr, 0 +ctrlalto.com, 1 +ctrlaltstream.com, 1 ctrlcvz.tk, 1 cts-companies.com, 1 ctspcallao.org.pe, 1 @@ -38508,6 +38497,7 @@ cublick.com, 1 cubocell.com, 1 cubotabacaria.com.br, 1 +cubotic.cl, 1 cuboxmovies.ga, 1 cubrebocas.tk, 1 cubsbestteaminbaseball.com, 1 @@ -38545,11 +38535,11 @@ cugetliber.ro, 1 cuhadardokuma.com, 1 cuhawaii.com, 1 -cuidade.fr, 1 cuidadosamente.com, 1 cuidamostupiscina.com, 1 cuio.net, 1 cuir-lipari.fr, 1 +cuisine-centrale17.fr, 1 cuisine-ultime.fr, 1 cuisiniste-974.re, 1 cuitrau.tk, 1 @@ -38582,7 +38572,6 @@ culturahack.tk, 1 culturaldistrict.org, 1 culturaldiversity.tk, 1 -culturalinsurance.com, 1 culturalmaninhos.tk, 1 culturalparadiso.tk, 1 culturalsabotage.cf, 1 @@ -38681,7 +38670,6 @@ curbsoftware.com, 1 curbza.com, 1 cureatr.com, 1 -curebit.com, 1 cureine.com, 1 cureyou.com.tw, 1 curieux.digital, 0 @@ -38701,6 +38689,7 @@ curioustea.com, 1 curiozitate.com, 1 curis-health.com, 1 +curisdigital.com, 1 curl.tw, 0 curlie.tk, 1 curlify.com, 1 @@ -38723,6 +38712,7 @@ currenteurope.eu, 1 currenthaus.com, 1 currentlystreaming.com, 1 +curriculumciudadano.mx, 1 currycountynm.gov, 1 currycountyor.gov, 1 currynissanmaparts.com, 1 @@ -38743,10 +38733,9 @@ cursos-trabajadores.net, 1 cursos.com, 1 cursosbajoprecio.com, 1 -cursosconcursosedital.com, 1 +cursosdepestanas.com, 1 cursosemmaus.es, 1 cursosforex.com, 1 -cursosgratuitos.pe, 1 cursosingles.com, 1 cursosprogramacion.online, 1 cursossena.co, 1 @@ -38765,13 +38754,11 @@ curva.co, 0 curvage.org, 1 curvaverde02.tk, 1 -curvegames.com, 1 curvemedia.co, 1 curveprotect.cz, 1 curvissa.co.uk, 1 curvyjessi.com, 1 curvysarah.com, 1 -cuscoloko.com.br, 1 cusens.md, 1 cusfit.com, 1 cusgpwoerden.nl, 1 @@ -38796,7 +38783,6 @@ customcraft.tk, 1 customdissertation.com, 1 customer2you.com, 1 -customercontactweekdigital.com, 1 customerfocus.co.za, 1 customerinfra.com, 1 customerinfra.net, 1 @@ -38831,12 +38817,14 @@ custosd.org, 1 cusvig.com, 1 cut-piehler.de, 1 +cut.lk, 1 cutads.ml, 1 cutaneon.com, 1 cutaquigusa.com, 1 cute-urls.ml, 1 cute2u.com, 1 cuteboibutt.ml, 1 +cutegifmaker.com, 1 cutehost.ga, 1 cutemodel.ml, 1 cutenfunnypets.com, 1 @@ -38878,7 +38866,6 @@ cuxpool.net, 1 cuyahogacommunitycollege.tk, 1 cuyahogacountyvotesoh.gov, 1 -cuzmall.com, 1 cv.fr, 1 cv.se, 1 cvalda.tk, 1 @@ -38927,8 +38914,6 @@ cvwrfut.gov, 1 cw-bw.de, 0 cw.center, 1 -cw3.fr, 1 -cwa-online.nl, 1 cwaclub.tk, 1 cwaga.me, 1 cwage.com, 0 @@ -38962,6 +38947,7 @@ cwmcarpentry.com, 1 cwmcpe.tk, 1 cwo.fi, 1 +cworkflow.com, 1 cwp.com.sg, 1 cwpark.co, 0 cwr.gov, 1 @@ -38972,6 +38958,8 @@ cwrau.rocks, 1 cws.ae, 1 cwtsamplecenter.com, 1 +cwtv.cc, 1 +cwtv.in, 1 cwulf.com, 1 cwwise.com, 1 cx100.io, 1 @@ -38989,6 +38977,7 @@ cxpbrasil.com.br, 1 cy.ax, 1 cy.technology, 1 +cyabra.com, 1 cyanhexagon.com, 1 cyanogenupdatetracker.com, 1 cybaa.io, 1 @@ -39013,6 +39002,7 @@ cyber-yaroslavl.tk, 1 cyber.gov, 1 cyber.info, 1 +cyber.irish, 1 cyber.je, 1 cyber.lol, 1 cyber4z.com, 1 @@ -39046,6 +39036,7 @@ cyberdean.fr, 1 cyberdevelopment.es, 1 cyberdiscoverycommunity.uk, 1 +cyberdns.com, 1 cyberdog.ch, 1 cyberdragon.tk, 1 cyberduck.io, 1 @@ -39067,8 +39058,8 @@ cyberhaus.ch, 1 cyberhelden.nl, 1 cyberhipsters.nl, 1 -cyberhoot.com, 1 cyberhost.uk, 1 +cyberinfraarmor.com, 1 cyberintro.fr, 1 cyberis.com, 1 cyberislam.tk, 1 @@ -39094,8 +39085,6 @@ cybern.tk, 1 cybernetworkglobal.com, 1 cybernews.com, 1 -cybernode.au, 1 -cybernode.com.au, 1 cybernode.host, 1 cyberogism.com, 1 cyberon.it, 1 @@ -39113,6 +39102,8 @@ cyberpro.club, 1 cyberproducciones.tk, 1 cyberprogramming.tk, 1 +cyberproud-deli.com, 1 +cyberproud.jp, 1 cyberpuerta.mx, 1 cyberquest.cf, 1 cyberregister.nl, 1 @@ -39120,7 +39111,7 @@ cyberrepair.de, 1 cyberresilience.io, 1 cyberry.eu, 1 -cybersafesolutions.com, 0 +cybersafesolutions.com, 1 cybersafetn.gov, 1 cybersails.co.za, 1 cybersamurai.tk, 1 @@ -39220,8 +39211,11 @@ cyesec.com, 1 cyflare.one, 1 cyfly.org, 1 +cygenx.com, 1 +cygnan.com, 1 cygnatus.com, 1 cygnius.net, 1 +cyjm.com, 1 cykelbanor.se, 1 cyklistika24.cz, 1 cylex-italia.it, 1 @@ -39232,11 +39226,10 @@ cynicaloptimist.me, 1 cynology.ga, 1 cynop.me, 1 -cynosure.red, 1 cynrgie.fr, 1 -cyntexa.com, 1 cynthiacherry.com, 1 cyon.ch, 1 +cyp.io, 1 cype.dedyn.io, 1 cyph.com, 1 cyph.healthcare, 1 @@ -39253,7 +39246,6 @@ cyprus-company-service.com, 1 cyprustimes.com, 1 cyqual.com, 1 -cyraco.com, 1 cyranos.ch, 1 cyrenianhouse.com, 1 cyrex.tech, 1 @@ -39271,7 +39263,6 @@ cysi.in, 1 cyso.com, 1 cyson.tech, 1 -cyspro.ch, 1 cystotech.com, 1 cytat.tk, 1 cytegic-update-packages.com, 1 @@ -39372,10 +39363,12 @@ d39rl9amo4q27v.cloudfront.net, 1 d3d3.tk, 1 d3dev.cf, 1 +d3drone.com, 1 d3lab.net, 1 d3oe4g2tw01ssi.cloudfront.net, 1 d3ojty55ovjfr5.cloudfront.net, 1 d3rfz9qlehr7mx.cloudfront.net, 1 +d3scene.org, 1 d3x.pw, 1 d3xt3r01.tk, 1 d42.no, 1 @@ -39439,6 +39432,7 @@ dabai.ga, 1 dabai.ml, 1 dabai.photo, 1 +dabaixiong.com, 1 dabasstacija.lv, 1 dabbagam.tk, 1 dabhand.studio, 1 @@ -39450,6 +39444,7 @@ dabstore.org, 1 dabuzz.tk, 1 dacada-porn.com, 1 +dacangku.com, 1 dacautocentres.com, 1 daceurope.co.uk, 1 dacgroup.com, 1 @@ -39460,11 +39455,14 @@ dachdeckerei-hagen.de, 0 dachdeckermeister-egon-weiss.de, 1 dachdeckermeister-moeller.de, 1 +dachet.com, 1 dachlaeufer.com, 1 dachnie-reshenia.ru, 0 dachshundsaspets.com, 1 dachshundtalk.com, 1 dachsklep.pl, 1 +daciaforum.nl, 1 +daciamodellen.nl, 1 daconsult.uk, 1 dacooninternational.com, 1 dacsanchatviet.com, 1 @@ -39514,9 +39512,11 @@ dafassl.com, 1 dafdto.com, 1 dafe2021.ee, 1 +dafengche.com, 1 dafengding.com, 1 daffodilusa.org, 1 dafmeyda.com, 1 +dafong.com, 1 dafont.com, 1 daft.ie, 1 dafunda.com, 1 @@ -39525,6 +39525,7 @@ dag-berlin.tk, 1 dag-konsult.com, 1 dag-ogni.tk, 1 +dag.cn, 1 dagallemaal.be, 1 daganghalal.com, 1 daganzo.tk, 1 @@ -39556,8 +39557,10 @@ daidothi.vn, 1 daidr.me, 1 daie-inc.com, 1 +daijin.com, 1 daikonsystems.com, 1 daikoz.com, 1 +daikoz.fr, 1 daileyeducationalservices.com, 1 daili.eu, 1 daily-puzzle.tk, 1 @@ -39585,6 +39588,7 @@ dailyhomestore.cl, 1 dailyillini.com, 1 dailyjigsawpuzzles.net, 1 +dailyjoy.com, 1 dailykos.com, 1 dailykosbeta.com, 1 dailylime.kr, 1 @@ -39597,7 +39601,6 @@ dailynorthwestern.com, 1 dailyotovinfast.com.vn, 1 dailypop.ru, 1 -dailyporncams.com, 1 dailypost.ng, 1 dailyproductsclub.com, 1 dailyprogress.com, 1 @@ -39615,7 +39618,6 @@ dairikab.go.id, 1 dairy.com.sg, 1 dairydata.ie, 1 -dairyreport.online, 1 daisidaniels.co.uk, 1 daisuki.pw, 1 daisy-peanut.com, 1 @@ -39649,6 +39651,7 @@ dakota911mn.gov, 1 dakotacil.org, 1 dakotaplainscreditunion.com, 1 +dakotas.com, 1 dakotavalleyrecyclingmn.gov, 1 dal-loop.xyz, 1 dal.net.sa, 1 @@ -39676,6 +39679,7 @@ dallas.lu, 1 dallascaraccidentlawyers.net, 1 dallascowboys.tk, 1 +dallasdesignco.com, 1 dallasfire.gov, 1 dallaslife.org, 1 dallaslu.com, 1 @@ -39708,6 +39712,8 @@ damades.com, 1 damag.net, 1 damaged.org, 1 +damanlu.com, 1 +damanlv.com, 1 damarsarkilar.tk, 1 damassimo.bg, 1 dambachpeacebuilderfellowships.org, 1 @@ -39715,6 +39721,7 @@ dame.cf, 1 damedrogy.cz, 1 dameeq.cf, 1 +damgan.com, 1 damgoodmedia.com, 1 damhnaitdoyle.com, 1 damianmalrechauffe.tk, 1 @@ -39733,7 +39740,6 @@ damlakartal.com, 1 dammekens.be, 1 dammers.io, 1 -dammos.com, 1 dammu.tk, 1 damnation.tk, 1 damnednation.tk, 1 @@ -39782,7 +39788,7 @@ dance.nyc, 1 dancechart.tk, 1 dancefm.tk, 1 -dancehubsa.com.au, 1 +dancehome.com, 1 danceonline.fi, 1 danceordienet.tk, 1 danceproducciones.com, 1 @@ -39820,8 +39826,6 @@ dangr.zone, 0 danhalliday.com, 1 danhiggins.net, 1 -danhotels.co.il, 1 -danhotels.com, 1 dania.gq, 1 dania.ml, 1 danibooks.de, 1 @@ -39856,6 +39860,7 @@ danielbeilharz.com, 1 danielbeilharz.de, 1 danielbeltejar.es, 1 +danielberanek.cz, 1 danielbotelho.com, 1 danielcardoso.net, 1 danielcolquitt.com, 1 @@ -39892,7 +39897,8 @@ danielj.tk, 1 danieljamesscott.org, 1 danielkanchev.com, 1 -danielkoster.nl, 1 +danielkoster.nl, 0 +danielle-picchetti.com, 1 daniellecavazos.com, 1 daniellelazier.com, 1 danielleskosky.com, 1 @@ -39919,6 +39925,7 @@ danielrozenberg.com, 1 danielruiz.tk, 1 danielshealth.com.au, 1 +danielsixto.com, 1 danielstach.cz, 1 danielstechblog.io, 1 danielstiner.me, 1 @@ -39950,7 +39957,6 @@ dankburritofranchise.com, 1 danke.moe, 1 dankeroni.de, 1 -dankevich.ru, 1 dankie.com.br, 1 dankim.de, 0 dankojunasevic.tk, 1 @@ -39982,7 +39988,6 @@ dannymoran.com, 1 dannyoficial.tk, 1 dannyrohde.de, 1 -dannysbobcat.com, 1 dannyscloud.tk, 1 dannystevens.co.uk, 1 dannytemming.tk, 1 @@ -40017,6 +40022,7 @@ danthecloudman.com, 1 dantikap.tk, 1 danux.co.uk, 1 +danvillebikeandfootwear.com, 1 danvillein.gov, 1 danvillevt.gov, 1 danw.io, 1 @@ -40033,11 +40039,13 @@ danya.ml, 1 danyabanya.com, 1 danyasa.com, 1 -danzaleonor.es, 1 danzavila.com, 1 danzka.tk, 1 dao.spb.su, 1 daofficers.com, 1 +daojian.com, 1 +daole.com, 1 +daomo.com, 1 daoplattunhien.com.vn, 1 daoro.net, 0 daotaoantoan.org, 1 @@ -40052,6 +40060,7 @@ daprint.tk, 1 dapss-ut.gov, 1 dapursolo.tk, 1 +daqq.com, 1 daracokorilo.com, 1 darajambili.com, 1 daralfajr.site, 1 @@ -40096,6 +40105,7 @@ dark-infection.de, 1 dark-lake.com, 1 dark-legion.tk, 1 +dark-manga.com, 1 dark-nova.me, 1 dark-nova.tk, 1 dark-programs.com, 1 @@ -40189,6 +40199,7 @@ darkwoods.tk, 1 darkx.me, 1 darkxxxtube.com, 1 +darlen.com, 1 darlene.hu, 1 darlenenbocek.com, 1 darlington.tk, 1 @@ -40254,6 +40265,7 @@ daservajesus.net, 1 daservajesus247.com, 1 daservajesus247.net, 1 +dasfest.com, 1 dasgeestig.nl, 1 dash.com.co, 1 dashboard.gov.ph, 1 @@ -40315,12 +40327,10 @@ databeam.de, 0 databiz.ga, 1 datablender.nl, 1 -databreachtoday.com, 1 -databreachtoday.in, 1 databridge360.com, 0 databutlr.com, 1 databutlr.net, 1 -databyte.nl, 1 +datacad.com, 1 datacalle.com, 1 datacandy.com, 0 datacaptive.com, 1 @@ -40350,6 +40360,7 @@ datadoghq.com, 1 datadorf.de, 1 datadriven101.tech, 1 +datadus.at, 1 datadyne.technology, 1 dataentry.top, 1 datafactory.co.za, 1 @@ -40408,6 +40419,7 @@ datasciocean.tech, 1 datascope.io, 1 datasharpacademy.com, 1 +datashock.com, 1 datasite.com, 1 dataskydd.net, 1 datasourceapi.com, 1 @@ -40416,7 +40428,6 @@ datasourcenj.org, 1 dataspace-connector.io, 1 dataspace.pl, 1 -dataspot.ai, 1 datastack.design, 1 datastar.net, 1 datastream.org, 1 @@ -40439,6 +40450,8 @@ datatruckers.org, 1 datatruckers.social, 1 datatube.tk, 1 +datatypes.net, 1 +dataunion.com, 1 datavaultalliance.com, 0 datavitec.com, 1 datavizable.org, 1 @@ -40450,12 +40463,12 @@ dataxl.net, 1 datazoo.asia, 1 datazoo.com, 1 +date-conference.com, 1 dated.fun, 1 dateien.at, 1 dateierweiterung.com, 1 datekompas.be, 1 datekompas.com, 1 -datelelectrical.co.uk, 1 datema.no, 0 datememe.com, 1 datenbitch.org, 0 @@ -40463,6 +40476,7 @@ datengrab.xyz, 1 datenightmovies.com, 0 datenkeks.de, 1 +datenkrake.xyz, 1 dateno1.com, 1 datenreiter.cf, 1 datenreiter.gq, 1 @@ -40545,7 +40559,6 @@ daunendecke.de, 1 daunt.link, 0 dauphincounty.gov, 1 -dauri.de, 1 dausendschoen.de, 1 dav.com.au, 1 davalochki.tk, 1 @@ -40609,7 +40622,6 @@ davidcraft.de, 1 davidcrousehouse.com, 1 daviddesberg.com, 1 -daviddietrich.com, 1 davidebaraglia.it, 1 davidebasile.tk, 1 davidelstob.com, 1 @@ -40699,6 +40711,7 @@ davidweis.eu, 1 davidzarza.tk, 1 davidzeegers.nl, 1 +davidzelenka.cz, 1 davidzimmerman3.com, 1 davie3.com, 1 daviesscountyhistoricalsociety.com, 1 @@ -40723,6 +40736,7 @@ davosalestax.com, 1 davros.eu, 1 davros.ru, 1 +davtyan.pro, 1 davulcuyuz.com, 1 davy-server.com, 1 davyatletiek.tk, 1 @@ -40733,6 +40747,7 @@ dawdle.space, 1 dawg.eu, 1 dawgs.ga, 1 +dawi.sa, 1 dawidpotocki.com, 1 dawidwrobel.com, 1 dawnbringer.eu, 1 @@ -40749,8 +40764,6 @@ dawsoncountyne.gov, 1 dawsonmt.gov, 1 dax-voirie.fr, 1 -dax.do, 1 -dax.guide, 1 daxble.xyz, 1 daxenexpress.com, 1 daxis.io, 1 @@ -40758,7 +40771,6 @@ daxo.io, 1 daxoptimizer.com, 1 daxos.tk, 1 -daxpatterns.com, 1 daxperience.eu, 1 daxrunbase.com, 1 day, 1 @@ -40813,7 +40825,6 @@ daywindworship.com, 1 dayz.com, 1 daz8activator.com, 1 -dazpak.com, 1 dazz.io, 1 dazzit.xyz, 1 dazzledrive.tk, 1 @@ -40835,7 +40846,6 @@ dbavic.com, 1 dbb.wtf, 1 dbcartography.com, 1 -dbdisco.co.uk, 1 dbeilharz.com, 1 dbeilharz.de, 1 dbeilharz.eu, 1 @@ -40850,6 +40860,7 @@ dbinderbilling.com, 1 dbjc.tk, 1 dbjg.com, 1 +dbkc.nl, 1 dblabsite.net, 1 dblcastles.co.uk, 1 dbldub.net, 1 @@ -40908,6 +40919,7 @@ dccdurgor1nbl.cloudfront.net, 1 dccode.gov, 1 dccomputerrepair.com, 1 +dccpropane.com, 1 dccwiki.com, 0 dcdestetica.it, 1 dcdrights.com, 1 @@ -40928,6 +40940,7 @@ dcmarvelunited.com, 1 dcmcleanair.com, 1 dcmediahosting.com, 1 +dcmeventmanagement.com, 1 dcmt.co, 1 dcnews.jp, 1 dco.sg, 1 @@ -40941,10 +40954,9 @@ dcrdev.com, 1 dcs.pp.ua, 1 dcseu.com, 1 -dcso.de, 1 +dcso.de, 0 dcsoky.gov, 1 dct-cloud.com, 1 -dctech.events, 1 dctransparency.com, 1 dctrl.ch, 1 dcustody.xyz, 1 @@ -41141,7 +41153,6 @@ debarrash24.fr, 1 debarrasnanterre.com, 1 debarrasparispro.fr, 1 -debashishsahu.com, 1 debastiani.net, 1 debateisland.com, 1 debats.tk, 1 @@ -41167,7 +41178,9 @@ debijloke.gent, 1 debita.fi, 1 debita.org, 1 +debitcloud.com, 1 debitterballetjes.tk, 1 +deblender.be, 1 deblender.shop, 1 deblier.dynv6.net, 1 deblocking.ga, 1 @@ -41202,6 +41215,7 @@ debut-mebel.ru, 1 debutaredead.tk, 1 debuyer.com, 1 +debyte.com, 1 debzsh.tk, 1 dec-ced.gc.ca, 1 dec6.gc.ca, 1 @@ -41228,7 +41242,7 @@ deccanvalue.com, 1 deceasedonline.com, 1 decentrala.org, 1 -decentralizedsummit.com, 1 +dechan.com, 1 dechat.nl, 1 decherdtn.gov, 1 dechetor.fr, 1 @@ -41242,6 +41256,7 @@ decimatechnologies.eu, 1 decimation.tk, 1 decipe.com, 1 +decis.eu, 1 decis.fr, 1 decisif-pacifique.com, 1 decisionssometimes.ml, 1 @@ -41270,10 +41285,8 @@ decompression.tk, 1 decompressneuroma.com, 1 deconstructind.ro, 1 -decontentmaaksters.nl, 1 decopros.fr, 1 decor-anna.com, 1 -decor-essentials.com, 1 decor-live.ru, 1 decor-prazdnik.ru, 1 decora.pl, 0 @@ -41309,7 +41322,6 @@ decs.es, 1 decstasy.de, 1 decsys.work, 1 -decubex.com, 1 dedanskevasaloebere.dk, 1 deddie.gr, 1 dedede.ro, 1 @@ -41319,23 +41331,23 @@ dedetizadoraembh.com, 1 dedg3.com, 1 dedge.org, 1 -dedhamfoodpantry.org, 1 dedicatedservers.cf, 1 dedmoroz.ga, 1 dedmoroz.gq, 1 dedmorozrzn.ru, 0 +dedns.com, 1 dedoho.pw, 1 dedoles.at, 1 dedoles.cz, 1 dedoles.de, 1 dedoles.hu, 1 dedoles.pl, 1 -dedoles.ro, 1 dedoles.sk, 1 dedurpsidioten.tk, 1 dedyk.gq, 1 dee.pe, 1 deechtebakkers.nl, 1 +deedoo.com, 1 deeds.com, 1 deedyinc.com, 1 deeezy.com, 1 @@ -41357,7 +41369,7 @@ deep-wave-hair-extensions.tk, 1 deepany.ai, 1 deeparamaraj.com, 1 -deepbluecozumel.com, 1 +deepbluecozumel.com, 0 deepbluecrafting.co.uk, 1 deepblueemail.com, 1 deepbox.swiss, 1 @@ -41410,7 +41422,6 @@ defelo.de, 1 defelo.ml, 1 defence.pk, 1 -defenceiq.com, 1 defencemilcis2022.com.au, 1 defend2.org, 1 defendanimals.com, 1 @@ -41428,7 +41439,6 @@ defesaaereanaval.com.br, 1 defiant.com, 1 defiantphoenix.net, 0 -defichain.com, 1 defietsambassade.be, 1 defietsambassade.gent, 1 defietsambassadegent.be, 1 @@ -41454,13 +41464,13 @@ defme.eu, 1 defont.nl, 1 defreitas.no, 1 +defret.com, 1 defriesezaak.nl, 1 deftek.com, 1 defterikebir.tk, 1 deftig-und-fein.de, 1 defunct-engineers.ml, 1 defuse.ca, 1 -defy.my.id, 1 defyner.com, 1 degala.tk, 1 degasten.tk, 1 @@ -41497,7 +41507,6 @@ degreeverify.com, 1 degreeverify.net, 1 degreeverify.org, 1 -degressif.com, 1 degroetenvanrosaline.nl, 1 degrootenslot.nl, 0 degroupnews.com, 1 @@ -41529,7 +41538,6 @@ deinelakaien.tk, 1 deinestrainreviews.de, 1 deinewebsite.de, 1 -deinhardt.com, 1 deinjoghurt.de, 1 deinsparen24.de, 1 deinupdate.de, 1 @@ -41543,6 +41551,7 @@ dejavu.ml, 1 dejected.ga, 1 dejfcold.cz, 1 +dejie.com, 1 dejiren.com, 1 dejmidarek.cz, 1 dejon-whirlpools.de, 1 @@ -41613,6 +41622,7 @@ delete.cf, 1 deletebin.com, 1 deletebin.org, 1 +deletecat.com, 1 delfi.ee, 1 delfi.lt, 1 delfi.net, 1 @@ -41633,7 +41643,6 @@ delicale.com.br, 1 delicatewonders.com, 1 delici.art.br, 1 -deliciare.com, 1 deliciascomercial.com, 1 deliciaskitchen.com, 1 delicious-audio.com, 1 @@ -41663,6 +41672,7 @@ dellamorte.tk, 1 dellasano.com, 1 dellasantina.com.ar, 1 +dellie.com, 1 dellipaoli.com, 1 dellirium.tk, 1 delmanofood.com, 1 @@ -41684,6 +41694,7 @@ delphine.dance, 1 delphinewong.com, 1 delpick.com, 1 +delpilarrungue.cl, 1 delprete.me, 1 delpuertohealth.gov, 1 delrayengineering.ca, 1 @@ -41693,7 +41704,6 @@ delta-4.software, 1 delta-barth.de, 1 delta-data.ch, 1 -delta-electric.net, 1 delta-elektronika.nl, 1 delta-games.tk, 1 delta-hawks.tk, 1 @@ -41734,6 +41744,7 @@ deltaworkssecurity.com, 1 deltaworkssecurity.nl, 1 deltax.ai, 1 +deltia.ai, 1 delugarnenhum.com, 1 delugerpg.com, 1 delunee.co, 1 @@ -41744,6 +41755,7 @@ deluxemassage.co.uk, 1 deluxeside.com, 1 deluxetransfers.co.uk, 1 +delv.ac, 1 delvinoadegas.com.br, 1 delycate.com, 1 delycate.fr, 1 @@ -41775,6 +41787,7 @@ demeubelmakelaar.nl, 1 demeyere-usedcars.be, 1 demfloro.ru, 1 +demg-investors.com, 1 demicon.biz, 1 demijn.nl, 1 demilletech.net, 1 @@ -41790,7 +41803,6 @@ demmer.one, 1 demo-awl.com, 1 demo-ferma.ga, 1 -demo.com.my, 1 demo.swedbank.se, 1 demobiliteitfinancier.nl, 1 democracy-news.tk, 1 @@ -41799,13 +41811,13 @@ democracyineurope.eu, 1 democracylive.com, 1 democratherald.com, 1 -democraticrepublicoftheyoruba.com, 1 democratie.tk, 1 democraziaineuropa.eu, 1 demografia.tk, 1 demokisisel.tk, 1 demokrasi.tk, 1 demolandia.net, 1 +demolire.it, 1 demolitetuto.fr, 1 demonbuster.tk, 1 demondms.com, 1 @@ -41847,7 +41859,6 @@ denachtegaalferwert.tk, 1 denaehula.com, 1 denali.net, 1 -denalisculpture.com, 1 denarium.com, 1 denationaleomgevingsvisie.nl, 0 denatured.tk, 1 @@ -41875,7 +41886,6 @@ dengyt.net, 1 denhartogracing.com, 1 denhelder.nl, 1 -denhotels.com, 1 deniani.com, 1 denied.gr, 1 denieuwenederlandsevlag.tk, 1 @@ -41911,11 +41921,11 @@ denkerstube.net, 1 denkit.com, 1 denkmalagentur.ch, 1 -denkmalschutz-flensburg.de, 1 denkmalsetzung.at, 1 denknowles.com, 1 denkorolev.ga, 1 denni-tisk.cz, 1 +denniksport.sk, 1 denninger.jp, 1 denningny.gov, 1 dennis-carpenter.com, 1 @@ -41936,6 +41946,7 @@ dennitisk.cz, 1 dennmart.me, 1 dennogumi.org, 1 +dennstoree.com, 1 dennysdionigi.com, 1 deno.net, 1 denous.nl, 1 @@ -41989,7 +42000,6 @@ dentox.com, 1 dentrassi.de, 1 dentrecovery.com, 1 -dentsugrantgroup.com, 1 dentystabirmingham.co.uk, 1 denuevestore.com, 1 denugka-vezde.gq, 1 @@ -42012,6 +42022,7 @@ denydarko.tk, 1 deobandi.tk, 1 deobandimazhab.tk, 1 +deondernemer.nl, 1 deonlinedrogist.nl, 1 deontology.com, 1 deoostfrees.com, 1 @@ -42066,7 +42077,6 @@ deplorablesdaily.com, 1 depo12.com, 1 depokcity.tk, 1 -depolauncher.cf, 1 depone.net, 0 deported.ml, 1 deportes.in, 1 @@ -42117,6 +42127,7 @@ derattizzazioni.it, 1 derattizzazioni.milano.it, 1 derattizzazioni.org, 1 +derball.de, 1 derby.ge, 1 derbybouncycastles.com, 1 derbylegalassistance.com, 1 @@ -42179,6 +42190,7 @@ dermu.ai, 1 deroo.org, 1 deroo.tk, 1 +derou.com, 1 derp.army, 1 derp.chat, 1 derpibooru.org, 1 @@ -42190,6 +42202,7 @@ derrigimlaghtokylemoregreenway.ie, 1 derriteice.com, 1 derrybasketball.tk, 1 +dershanesi.com, 1 dersimizmatematik.cf, 1 dersoundhunter.de, 1 derssonu.com, 1 @@ -42207,9 +42220,9 @@ desagaz.com, 1 desakatorock.tk, 1 desalas.org, 1 +desant.com, 1 desapego.com.br, 1 desarrollamosweb.com, 1 -descalcificadorinhibidorecocal.com, 1 descargapormega.ml, 1 descargar-apk.org, 1 descobrim.com, 1 @@ -42222,6 +42235,7 @@ deseks.dk, 1 deseneonline.tk, 1 desensitized.tk, 1 +desenvolvimentolocalvfa.com.br, 1 deseosvip.tk, 1 desergo.com, 0 desert-empire.com, 1 @@ -42269,10 +42283,12 @@ designbro.com, 1 designburners.com, 1 designbymaja.no, 1 -designbymargot.com, 0 -designbymargot.fr, 0 -designbymargot.pro, 0 +designbymargot.com, 1 +designbymargot.fr, 1 +designbymargot.pro, 1 +designcafe.com, 1 designcanada.com, 1 +designceramika.pl, 1 designcrowd.biz, 1 designcrowd.ca, 1 designcrowd.co.uk, 1 @@ -42286,6 +42302,7 @@ designdirective.ca, 1 designengineering.com, 1 designer-drug.com, 1 +designer.cn, 1 designerfabricsforless.com, 1 designerjoe.gq, 1 designerrateest.ga, 1 @@ -42311,6 +42328,7 @@ designsociety.tk, 1 designstripe.com, 0 designsystem.gov.scot, 1 +designtagebuch.com, 1 designtrc.com, 1 designville.cz, 1 designville.eu, 1 @@ -42329,14 +42347,15 @@ desirenet.ro, 1 desish.cf, 1 desitorrents.tv, 1 +desiunderground.com, 1 desivideos.tk, 1 +desize.com, 1 deskaservices.com, 1 deskdesign.nl, 1 deskeen.fr, 1 desktopcentral.ath.cx, 1 desktopd.eu.org, 0 desktopfibra.com, 1 -desktopfx.net, 0 desktopia.tk, 1 desktopsolos.tk, 1 deslamco.com, 1 @@ -42368,6 +42387,7 @@ desteconsilium.be, 1 desteniiprocess.com, 1 destentor.nl, 1 +desteptarea.com, 1 desterman.ru, 1 desterproducts.nl, 1 desterrada.tk, 1 @@ -42471,7 +42491,7 @@ deuchnord.fr, 1 deude.de, 1 deuelcountyne.gov, 1 -deunanube.com, 1 +deunopostenacional.com.br, 1 deurenfabriek.nl, 1 deuro.net, 1 deusarodrigues.com.br, 1 @@ -42523,6 +42543,7 @@ devalps.eu, 1 devanstavern.tk, 1 devastacion.tk, 1 +devb.nl, 1 devbay.cc, 1 devcarollo.com, 1 devcf.com, 1 @@ -42541,7 +42562,7 @@ develify.co, 1 develmaster.tk, 1 develooper.com, 1 -develope.cz, 1 +develope.cz, 0 developedbygayuh.my.id, 1 developer.android.com, 1 developer.moe, 1 @@ -42598,7 +42619,6 @@ devinslick.com, 1 devinthorpe.com, 1 devirc.net, 1 -devise-host.com, 1 devisnow.fr, 1 devkid.net, 1 devksingh.com, 1 @@ -42613,7 +42633,6 @@ devmode.fm, 1 devnet.ma, 1 devnet.tk, 1 -devnull.lol, 1 devnull.space, 1 devnull.team, 1 devnull.win, 1 @@ -42624,11 +42643,11 @@ devonport.tas.gov.au, 1 devonportairport.com.au, 1 devonsawatzky.ca, 1 -devonvalleyfabs.co.uk, 1 devopedia.org, 1 devopers.com.br, 1 devops-playtest.net, 1 devopsbookmarks.org, 1 +devopsfreelance.pro, 1 devopsintegration.io, 1 devopsish.com, 1 devos.ml, 1 @@ -42673,7 +42692,6 @@ devvg.co.uk, 1 devyanijayakar.com, 1 devzero.io, 0 -dew4vetoto.org, 1 dewalch.net, 1 dewalt.com, 1 dewblog.ml, 1 @@ -42686,7 +42704,6 @@ dewerveling.tk, 1 deweybeachpolice.gov, 1 dewijkpraktijk.nl, 1 -dewijnclubonline.nl, 1 dewingerdfreinet.be, 1 dewit-automatisering.nl, 1 dewittcountyil.gov, 1 @@ -42696,7 +42713,6 @@ dex-trade.com, 1 dex01.com.br, 1 dexalo.de, 1 -dexauto.fr, 1 dexcellentesidees.tk, 1 dexerto.com, 1 dexerto.es, 1 @@ -42747,6 +42763,7 @@ dfmvf.org, 1 dfpblog.com, 1 dfranke.com, 1 +dfsk-versicherung.de, 1 dfspdfl.gov, 1 dfwm.vote, 1 dfwmv.com, 1 @@ -42818,7 +42835,6 @@ dgrj.com.br, 1 dgroups.org, 1 dgschell.com, 1 -dgsdh.site, 1 dgt-portal.de, 1 dgtakano.co.jp, 0 dgtl.hosting, 1 @@ -42918,6 +42934,7 @@ dialogaia.com.br, 1 dialogaia.eu, 1 dialogantes.com, 1 +dialogic.com, 1 dialogportal.com, 1 dialogue.co, 1 dialoguecorp.com, 1 @@ -42977,8 +42994,6 @@ diariocibao.com, 1 diariodearaxa.com.br, 1 diariodebalsas.com.br, 1 -diariodicucina.it, 1 -diariodorio.com, 1 diarionet.tk, 1 diarionoticia.pe, 1 diariopergaminoaustral.tk, 1 @@ -43004,10 +43019,9 @@ dibam.cl, 1 dibiphp.com, 1 dibo-ambasador.pl, 1 -diboochi.com, 1 +diboochi.com, 0 dic.ae, 1 dicaprio.tk, 1 -dicasgostosas.com, 1 diccionarioabierto.com, 1 diccionariodedudas.com, 1 diccionariomexico.com, 1 @@ -43023,7 +43037,6 @@ dichvuchuyentien247.com, 1 dichvudangkygiayphep.com, 1 dicio.com.br, 1 -dicionario.org, 1 dicionariodegirias.com.br, 1 dicionariodenomesproprios.com.br, 1 dicionariodesimbolos.com.br, 1 @@ -43032,6 +43045,7 @@ dicionariopopular.com, 1 dicionarios.cc, 1 dick.red, 1 +dickdoesdoors.com, 0 dickord.cloud, 1 dickp.it, 1 dickpics.ru, 1 @@ -43180,7 +43194,6 @@ dieterglas.de, 1 dieteticadigital.net, 1 dietfordiabetics.tk, 1 -dietherapie.tirol, 1 dieti-natura.com, 1 dieti.ga, 1 dieti.gq, 1 @@ -43246,9 +43259,11 @@ digidaigaku.com, 1 digifitio.info, 1 digifloat.io, 1 +digifun.store, 1 digig.es, 1 digigami.au, 1 digiischolarships.com, 1 +digijoy.com, 1 digilabs.fr, 1 digiland.tk, 1 digilicious.com, 1 @@ -43276,6 +43291,7 @@ digipolis.gent, 1 digipost.no, 1 digirechnung.de, 1 +digireg.in, 1 digirence.org, 1 digirig.net, 1 digiriik.ee, 1 @@ -43283,6 +43299,7 @@ digisfil.fr, 1 digisign.tk, 1 digislovakia.sk, 1 +digistore.fr, 1 digistorm.com, 1 digit.bg, 1 digit.ec, 1 @@ -43324,6 +43341,7 @@ digitalakatsuki.com, 1 digitalalektioner.se, 1 digitalandsocialmediaacademy.com, 1 +digitalaplus.com, 1 digitalarchitecture.com, 1 digitalasitshouldbe.com, 1 digitalbang.gr, 1 @@ -43352,6 +43370,7 @@ digitalcompudev.com, 1 digitalconcrete.co.uk, 1 digitalcourage.de, 1 +digitalcrafter.eu, 1 digitalcraftmarketing.co.uk, 1 digitalcrisis.com, 1 digitalcrisis.us, 1 @@ -43387,10 +43406,8 @@ digitalfoodbook.com, 1 digitalforensicsdubai.com, 1 digitalfortress.tech, 1 -digitalfoster.org, 1 +digitalfoster.org, 0 digitalfury.co.uk, 1 -digitalgate.dk, 1 -digitalgeckos.com, 1 digitalgeek.social, 1 digitalgenius.com, 0 digitalgov.gov, 1 @@ -43448,7 +43465,6 @@ digitalproduct.ga, 1 digitalproductivity.online, 1 digitalprojects.com.au, 1 -digitalradio.ie, 1 digitalrealitybbs.com, 1 digitalreborn.com, 1 digitalredshirts.com, 0 @@ -43457,8 +43473,8 @@ digitalsafezm.com, 1 digitalscrapbookingstudio.com, 1 digitalsearchgroup.co.uk, 1 +digitalsearchgroup.com.au, 1 digitalsearchlab.com, 1 -digitalservices.lk, 1 digitalside.com.br, 1 digitalskychallenge.eu, 1 digitalsocietyschool.org, 1 @@ -43481,7 +43497,6 @@ digitalvalue.es, 1 digitalwasteland.net, 1 digitalworkplaceforum.com.br, 1 -digitalzenworks.com, 1 digitalzylinder-shop.com, 1 digite.com, 1 digitec.ch, 1 @@ -43500,7 +43515,7 @@ digityp.fi, 1 digitypa.fi, 1 digivan.ml, 1 -digiyatrafoundation.com, 1 +digiwedoo.com.au, 1 diglloyd.com, 1 digminecraft.com, 1 dignilog.com, 1 @@ -43540,6 +43555,7 @@ dikkevettescania.tk, 1 diklatcenter.com, 1 diktatur.tk, 1 +dila.to, 1 dilanka.com, 1 dilation.party, 1 dild.loan, 1 @@ -43564,7 +43580,6 @@ dimdata.com, 1 dime-staging.com, 1 dimension-pc.com, 1 -dimensiondigital.net, 1 dimensionjapon.tk, 1 dimensions-ohs.com, 1 dimensionweb.tk, 1 @@ -43592,7 +43607,6 @@ dimmersoakpark.com, 1 dimmersthousandoaks.com, 1 dimmerswestlakevillage.com, 1 -dimo-analytics.fr, 1 dimo-crm.fr, 1 dimo-dematerialisation.com, 1 dimo-tresorerie.fr, 1 @@ -43629,6 +43643,7 @@ dingdong-shop.ru, 1 dingelbob-schuhcreme.gq, 1 dingeldein-messtechnik.de, 1 +dinghuo.com, 1 dinglecottage.co.uk, 1 dinglishuzi.com, 1 dingos.tk, 1 @@ -43650,6 +43665,7 @@ dinos-mag.tk, 1 dinotv.at, 1 dintrafic.net, 1 +diobrasperu.com, 1 diodo.me, 1 dioesfoto.com, 1 diogbatech.tk, 1 @@ -43670,6 +43686,7 @@ diouf.tk, 1 dioxido.com.ar, 1 diozoid.com, 1 +dip.digital, 1 dipakgajjar.com, 1 dipalma.me, 1 dipanopaulista.com.br, 1 @@ -43724,6 +43741,7 @@ directorioempresarial.com.co, 1 directoriomedico.com.co, 1 directorios.tk, 1 +directorioweb.co, 1 directorioz.com, 1 directorwebseo.tk, 1 directory-aldo.tk, 1 @@ -43776,7 +43794,6 @@ dirtygirl.ml, 1 dirtyherri.de, 1 dirtymusic.tk, 1 -dirtyplumberreno.com, 1 dirtyporno.tk, 1 dirtypretties.cf, 1 dirtypretties.ga, 1 @@ -43802,7 +43819,6 @@ disapanico.com, 1 disappearingidioms.com, 1 disassemble.website, 1 -disastercarecapital.co.uk, 1 disasterrific.tk, 1 disastertalkest.ga, 1 disavowfile.com, 1 @@ -43828,6 +43844,7 @@ discodoener.de, 1 discofitta.com, 1 discogs-enhancer.com, 1 +discomix.com, 1 disconformity.net, 1 disconnect.tk, 1 disconter.tk, 1 @@ -43880,6 +43897,7 @@ discoverthetech.com, 1 discoverthreejs.com, 1 discoverucg.co.uk, 1 +discoverx.com, 1 discoveryaima.com, 1 discoveryballoon.org, 1 discoverybehavioralhealth.com, 1 @@ -43894,6 +43912,7 @@ discus-communications.dk, 1 discusfishguide.com, 1 discuss-data.net, 1 +discuss.no, 1 discussionner.com, 1 discuzturkiye.tk, 1 disengaged.tk, 1 @@ -43951,6 +43970,7 @@ disinfestazioni.firenze.it, 1 disinfestazioni.genova.it, 1 disinfestazioni.gorizia.it, 1 +disinfestazioni.info, 1 disinfestazioni.it, 1 disinfestazioni.milano.it, 1 disinfestazioni.modena.it, 1 @@ -44010,13 +44030,14 @@ displaysandholders.com, 1 disposable.link, 1 dispur.nic.in, 1 +dispute.cn, 1 disroot.org, 1 disrupters.ch, 0 disruptglobal.com, 1 disruption.tk, 1 disruptiveadvertising.com, 0 -disruptivelabs.org, 1 dissensionclub.net, 1 +dissention.biz, 1 dissertationhelp.com, 1 dissident.host, 1 dissieux.com, 1 @@ -44027,7 +44048,7 @@ distancelove.tk, 1 distancionno.com, 1 distant.land, 1 -distekinc.com, 1 +distekinc.com, 0 distelbentelo.nl, 1 distempered.tk, 1 disti.com, 1 @@ -44083,6 +44104,7 @@ ditetovinejlip.cz, 1 ditevsrdci.cz, 1 ditex.ddns.net, 1 +ditian.com, 1 dities.tk, 1 ditissaskia.nl, 1 ditprint.dk, 1 @@ -44125,6 +44147,7 @@ diversitywatch.co.nz, 1 diversovariable.tk, 1 diversual.com, 1 +divert.cloud, 1 divertidores.tk, 1 divestos.org, 1 divewithfrank.com, 1 @@ -44163,10 +44186,8 @@ divizja.tk, 1 divjak.at, 1 divo-remont.tk, 1 -divorce.com, 1 divorceattorneyschicago.com, 1 divorceattorneyshouston.com, 1 -divorcefiller.com, 1 divorceformsfiller.com, 1 divorcelawyer365.com, 1 divorceonline.com, 1 @@ -44197,6 +44218,7 @@ diyeat.com, 1 diyeta.cf, 1 diyeventhire.co.nz, 1 +diyland.com, 1 diymediahome.org, 1 diysec.tk, 1 diyzealot.com, 1 @@ -44343,6 +44365,7 @@ djnefret.tk, 1 djnext.tk, 1 djogani.tk, 1 +djoiasoficial.com.br, 1 djoos.de, 1 djosu.tk, 1 djoszee.tk, 1 @@ -44387,7 +44410,6 @@ djtavo.tk, 1 djthibodeau.com, 1 djtiago.tk, 1 -djtime.fr, 1 djtourist.tk, 1 djurensvanner.tk, 1 djurklinikenangelholm.se, 1 @@ -44452,6 +44474,7 @@ dlandroid24.com, 1 dlangbajn.com, 1 dlangbajn.com.br, 1 +dlatego.com, 1 dlazmyslow.pl, 1 dlbouncers.co.uk, 1 dlcompare.co.uk, 1 @@ -44470,6 +44493,7 @@ dlf.exchange, 1 dlford.io, 1 dlfsymposium.nl, 1 +dlgf.com, 1 dline.co.in, 1 dlitz.net, 1 dll4free.com, 1 @@ -44485,7 +44509,6 @@ dlpeterson.com, 1 dlps.eu, 1 dlrg-cux-ohz.de, 0 -dlscomputers.com.au, 1 dlslab.com, 1 dlslab.org, 1 dlsmdportal.com, 1 @@ -44540,7 +44563,7 @@ dmarcsentry.com, 1 dmarctester.com, 1 dmarcvendors.com, 1 -dmautomek.no, 0 +dmautomek.no, 1 dmbins.com, 1 dmc-cc.de, 1 dmc-commerce-consultants.de, 1 @@ -44565,6 +44588,7 @@ dmg.st, 1 dmhomedesign.pl, 1 dmhoteles.pe, 1 +dmhy.com, 1 dmi.es, 1 dmi.gov.lb, 1 dmiapis.id, 1 @@ -44600,7 +44624,6 @@ dmtcustoms.co.za, 1 dmu.ac.ae, 1 dmunoz.es, 1 -dmvape.us, 0 dmwaste.com, 0 dmwclan.tk, 1 dmx.xyz, 1 @@ -44661,7 +44684,7 @@ dnepropetrovck.tk, 1 dneprovski.tk, 1 dnestr.tk, 1 -dnevnichok.life, 1 +dnevnichok.club, 1 dnfc.rocks, 1 dnfsb.gov, 1 dngrexplorer.cf, 1 @@ -44686,7 +44709,6 @@ dns0.eu, 1 dnsaio.com, 1 dnsbird.org, 1 -dnsbl-servers.org, 1 dnscrawler.com, 1 dnscrypt-blacklist.tk, 1 dnscrypt.info, 1 @@ -44718,6 +44740,7 @@ dnssecandipv6.se, 1 dnssecunsigned.com, 1 dnssex.com, 1 +dnsspeed.com, 1 dnstwister.report, 1 dnsvrfy.com, 1 dnsvrfy.eu, 1 @@ -44749,7 +44772,10 @@ dobrekupony.cz, 1 dobrekupony.pl, 1 dobrekupony.sk, 1 +dobremedia.sk, 1 +dobrenoviny.sk, 1 dobreoknaszczecin.pl, 1 +dobreradio.sk, 1 dobrev.family, 1 dobrinya.tk, 1 dobrisan.ro, 1 @@ -44766,7 +44792,7 @@ doc-baza.tk, 1 doc-sign.fr, 1 doc.ai, 1 -doc.ee, 1 +doc.ee, 0 doc.new, 1 doc.python.org, 1 doc8643.com, 1 @@ -44784,7 +44810,6 @@ docguide.com, 1 docha.tk, 1 dochescu.com, 1 -dochimera.com, 1 dochub.com, 1 dock.tech, 1 dock23.de, 1 @@ -44799,11 +44824,9 @@ dockysearch.com, 1 doclassworks.com, 1 docline.gov, 1 -docloudu.info, 1 doclures.com, 1 docmode.org, 1 docogo.ga, 1 -docortho.de, 1 docplexus.com, 1 docpost.ml, 1 docquity.com, 1 @@ -44848,10 +44871,12 @@ doctorpup.com, 1 doctorradio.tk, 1 doctorsarfarazdo.ga, 1 +doctorsatdoor.com, 1 doctorshealthfund.com.au, 1 doctorsinternet.com, 1 doctorswithoutborders.org, 1 doctorwho.cz, 1 +doctosofi.mx, 1 doctour.eu, 1 doctour.fr, 1 doctrine.fr, 1 @@ -44973,6 +44998,7 @@ dogite.org, 1 doglifejacket.tk, 1 doglist.ga, 1 +doglog.com, 1 dogma.it, 1 dogma2000.tk, 1 dogmagic.tk, 1 @@ -45014,7 +45040,6 @@ doja-cat.ru, 1 dojah.io, 1 dojifish.space, 1 -dojihomes.vn, 1 dojin.nagoya, 1 dojki.cf, 1 dojki.ga, 1 @@ -45035,6 +45060,7 @@ doku-gilde.de, 1 dokuboard.com, 1 dokuev.ga, 1 +dokume.com, 1 dokument.tk, 1 dokuraum.de, 1 dolbyatmosmusiclist.com, 1 @@ -45059,7 +45085,6 @@ dolg.tk, 1 dolgopolova.ga, 1 dolgorukovo.cf, 1 -dolice.net, 1 dolinasnov.ru, 1 dolinathome.com, 1 dolkfm.tk, 1 @@ -45183,6 +45208,7 @@ domenick-lieneweg.de, 1 domenico.lviv.ua, 1 domenicods.tk, 1 +domestic.cn, 1 domharmonia.bg, 1 domhos.tk, 1 domialt.de, 1 @@ -45212,6 +45238,7 @@ dominik.st, 1 dominikconrads.de, 1 dominikriedig.de, 1 +dominiks.com, 1 dominikzen.com, 1 dominioanimal.com.br, 1 dominionlending.ca, 1 @@ -45234,7 +45261,7 @@ dominos.ua, 1 dominoz.tk, 1 dominternet.ru, 0 -dominuslucis.nl, 1 +dominuslucis.nl, 0 domisafonov.net, 1 domitori.tk, 1 domix.fun, 1 @@ -45266,6 +45293,7 @@ domremy.catholic.edu.au, 1 domsamogona.ru, 1 domscripting.com, 1 +domt.com, 1 domu.ro, 1 domus-global.com, 1 domus-global.cz, 1 @@ -45320,6 +45348,7 @@ donazione.it, 1 doncastermoneyman.com, 1 dondiabolo.com, 1 +dondonya.com.cn, 1 donec.tk, 1 donedeal.co.uk, 1 donedeal.ie, 1 @@ -45344,7 +45373,9 @@ donghochinhhang.store, 1 donghua-europe.com, 1 donghuapiandaquan.com, 1 +dongjian.com, 1 dongor.tk, 1 +dongzhen.com, 1 donhoward.org, 0 doninformatico.ga, 1 doniramdoni.tk, 1 @@ -45454,6 +45485,7 @@ doorin.tk, 1 doorlifted.com, 1 doorlinekktc.tk, 1 +doorlinkplus.nz, 1 doorloop.com, 1 doornmore.com, 1 doors-and-windows.tk, 1 @@ -45486,7 +45518,6 @@ doradoscampeon.tk, 1 doraemonchile.tk, 1 dorama.gq, 1 -doramaflix.site, 1 doramamusic.gq, 1 doramiru.com, 1 dorams.one, 1 @@ -45541,7 +45572,6 @@ dosenpintar.com, 1 dosensosiologi.com, 1 doserres.tk, 1 -dosevue.com, 1 dosgame.club, 1 dosgratus.tk, 1 dosimabag.com, 1 @@ -45586,7 +45616,6 @@ dotcomtest02-single.azurewebsites.net, 1 dotconnor.com, 0 dotfile.tk, 1 -dotflo.io, 0 dotgov.gov, 1 dothaneagle.com, 1 dotheevolution.tk, 1 @@ -45719,6 +45748,7 @@ dovetailapp.com, 1 doveweekend.com, 1 dovizborsa.com, 1 +dovodlaw.ru, 1 dovolena-ihned.cz, 1 dowell.media, 1 dowhatmakegood.de, 1 @@ -45751,7 +45781,6 @@ downloadmoremousepad.ml, 1 downloadmorestorage.com, 1 downloads.zdnet.com, 1 -downloadsoftwaregratisan.com, 1 downloadvipgames.tk, 1 downsalarm.com, 1 downset.tk, 1 @@ -45764,7 +45793,6 @@ downtownla.com, 1 downtownmesa.com, 1 downtownontario.org, 0 -downtownpdx.dog, 1 downtownraleigh.org, 1 downtownsuiteliving.com, 1 downtowntucson.org, 1 @@ -45780,7 +45808,6 @@ doxepin1.gq, 1 doxepinonline.gq, 1 doxford-engine.com, 1 -doxradio.com, 1 doxradio.net, 1 doxyciclin.ga, 1 doxyciclin.gq, 1 @@ -45794,10 +45821,10 @@ doylesalewski.ca, 1 doylestownborough.net, 1 doyo.email, 1 +doyo.tech, 1 doyogawithlina.com, 1 doyoucheck.com, 0 doyoulyft.com, 1 -doyoutax.com, 0 doypacky.cz, 1 doze-cloud.tech, 1 dozecloud.com, 1 @@ -45832,6 +45859,7 @@ dpfsolutionsfl.com, 1 dpg.no, 1 dphipartner.com, 1 +dpid.org, 1 dpim.org.my, 1 dpinse.com, 1 dpjuse.tk, 1 @@ -45865,6 +45893,7 @@ dr-iravani.com, 1 dr-karagenska.com, 1 dr-kissler.de, 1 +dr-laber.at, 1 dr-liebau.de, 1 dr-maike-juergens.de, 1 dr-matsui.or.jp, 1 @@ -45970,7 +45999,6 @@ drakeluce.com, 0 drakencan.gq, 1 drakenprospero.com, 0 -drakenson.de, 1 drakfot.se, 0 drakia.com, 1 drakiada.tk, 1 @@ -45978,7 +46006,6 @@ draliabadi.com, 0 dralucilavolasco.com.br, 1 drama.tk, 1 -dramaencode.net, 1 dramakorea.tk, 1 dramanotebook.com, 1 dramaquarter.com, 1 @@ -46002,7 +46029,7 @@ drardiving.com, 1 drardivingcenter.com, 1 dras.hu, 1 -drasocalzado.com, 0 +drasocalzado.com, 1 drasoclothes.com, 1 drastic-ds.com, 1 drastik.cz, 1 @@ -46059,6 +46086,7 @@ drdixitcosmeticdermatology.com, 1 drdripplumbingsydney.com.au, 1 drduru.com, 1 +dreadbyte.com, 0 dreadd.org, 1 dreadfully.cf, 1 dreadfulsanity.com, 1 @@ -46144,6 +46172,7 @@ dreemerio.info, 1 dreemurr.com, 1 drehabkhalifa.com, 1 +dreherit.de, 1 drei01.com, 1 drei01.de, 1 drei01.technology, 1 @@ -46198,7 +46227,6 @@ drfuhrman.com, 1 drgabrielschmitt.com, 1 drgeadsdavinci.com, 1 -drghomi.com, 0 drgloriawu.com, 0 drgn.li, 1 drgn.no, 1 @@ -46210,6 +46238,7 @@ drherndonent.com, 1 drhildebrand.net, 1 drhopeson.com, 1 +drhosting.com, 1 drhouserepairs.com, 1 drhowardaubert.com, 1 drhyler.com, 1 @@ -46226,6 +46255,7 @@ drifter.tk, 1 driftingruby.com, 1 driftkikker.tk, 1 +driftworld.com, 1 drigg.ro, 1 drijfhoutconsultancy.nl, 1 drikaartesanato.com, 1 @@ -46296,7 +46326,6 @@ drivedumba.com, 1 drivedvv.ru, 1 driveelectric.gov, 1 -driveexport.com, 1 driveforadtransport.com, 1 driveforartur.com, 1 driveincleveland.com, 1 @@ -46307,17 +46336,17 @@ drivenes.net, 1 drivenets.com, 1 driventheatre.com, 1 +driveo.net, 1 driveoakleytransport.com, 1 drivepaultransportation.com, 1 driver.ru, 1 driveral.com, 1 driveral.hu, 1 -driverinthebox.it, 1 +driverhome.com, 1 drivermerkezi.tk, 1 driverscollection.com, 1 drivestarfreight.com, 1 drivetonortheast.com, 1 -drivewaygateopener.com, 1 driveyouradblockcounterup.com, 1 driving-lessons.co.uk, 1 drivingacademy.tk, 1 @@ -46362,6 +46391,7 @@ drlp.link, 1 drlynnehinkle.com, 1 drmajpodochirurgia.pl, 1 +drmaniplastics.com, 1 drmartindentistry.com, 1 drmarwanbaroud.com, 1 drmatthewrandall.com, 1 @@ -46381,6 +46411,7 @@ droid101.com, 1 droidandy.com, 1 droidapp.nl, 1 +droidchart.com, 1 droidguide.ga, 1 droidhere.com, 1 droidreader.pt, 1 @@ -46475,7 +46506,7 @@ drstephanieteotia.com, 1 drsteveart.com, 1 drsteveharrison.com, 1 -drstevenwarnock.com, 1 +drsturgeonfreitas.com, 1 drt.org.nz, 1 drtanyaescobedo.com, 1 drthalhammer.at, 1 @@ -46490,6 +46521,7 @@ drtimothysteelvideos.com, 1 drtomson.ee, 1 drtragency.com, 1 +drtrupiano.com, 1 drtsaiclinic.com, 1 drtti.io, 1 drturner.com.au, 1 @@ -46591,6 +46623,8 @@ dsdomains.com, 1 dsds-ltd.com, 0 dse-assessments.co.uk, 0 +dse.com.bd, 1 +dsebd.org, 1 dsecure.me, 1 dseg.org, 1 dsektionen.se, 0 @@ -46623,7 +46657,6 @@ dsol.hu, 1 dsosbelasek.cz, 1 dsouzamusic.com, 1 -dsp-audiovisueel.nl, 1 dsp-wiki.com, 1 dspace.pl, 1 dspbz.ro, 1 @@ -46710,11 +46743,11 @@ dualexistence.xyz, 1 dualias.xyz, 0 dualize.io, 1 -dualsimadapter.com, 1 dualuniverse.game, 1 duama.top, 1 duanemorrisinstitute.com, 1 duanre.tk, 1 +duanyong.com, 1 duarteeleiteconsultoria.com.br, 1 dubachinn.com, 1 dubai-realestate.space, 1 @@ -46787,7 +46820,6 @@ duckling.pw, 1 duckman.tk, 1 duckmapr.com, 1 -duckonthepond.com, 1 duckpic.de, 1 duckpic.link, 1 duckpond.camp, 1 @@ -46803,7 +46835,9 @@ dudeexpert.cf, 1 dudesunderwear.com.br, 0 dudleypolicema.gov, 1 +dudushu.com, 1 due-diligence-security.com, 1 +dueback.com, 1 duediligencedataroom.com, 1 duelhost.dk, 1 duelingaces.com, 1 @@ -46853,6 +46887,7 @@ dukeandduchessdrivingschool.co.uk, 1 dukefox.com, 0 dukegat.de, 0 +dukemaps.net, 1 dukeofmetal.tk, 1 dukes-london.com, 1 dukes.ca, 1 @@ -46906,7 +46941,6 @@ dunce.cf, 1 duncm.com, 1 dundalkdonnie.com, 1 -dundalkskillnet.ie, 1 dundeeutility.tk, 1 dunedot.tk, 1 dunesadventure.net, 1 @@ -46947,6 +46981,7 @@ duoqichina.cn, 1 duoqichina.com, 1 duoquadragintien.fr, 1 +duoyin.com, 1 dup15q.org, 1 dupagecounty.gov, 1 dupagecourts.gov, 1 @@ -46979,7 +47014,6 @@ durbeen.pk, 1 durcal.tk, 1 durchblick-shop.de, 1 -durcoin.com, 1 durcoin.org, 1 duredo.com, 1 dureuil.info, 1 @@ -47042,6 +47076,8 @@ dutchcichlidplanet.tk, 1 dutchcloudcommunity.nl, 1 dutchconcreations.com, 1 +dutchdesignoffice.nl, 1 +dutchdevelapp.nl, 1 dutchdungeon.tk, 1 dutchessuganda.com, 1 dutchfoodie.nl, 1 @@ -47066,7 +47102,6 @@ duttonmt.gov, 1 dutyfreeperfumes.tk, 1 duurzaamgww.nl, 1 -duurzaamheidskaart.nl, 1 duurzaamwonen.amsterdam, 1 duux.com, 1 duv.al, 1 @@ -47091,6 +47126,7 @@ duzcehaberleri.tk, 1 duzcesondakika.tk, 1 dv-project.ru, 1 +dv.cn, 1 dvb-fachverband.de, 1 dvbris.co.uk, 1 dvbris.com, 1 @@ -47109,7 +47145,6 @@ dvds.casa, 1 dveretti.com, 0 dveri-lugansk.tk, 1 -dvftowbars.co.uk, 1 dvgsites.com, 1 dvipadmin.com, 1 dvkg.de, 1 @@ -47165,7 +47200,6 @@ dxgl.info, 1 dxgl.org, 1 dxm.no-ip.biz, 1 -dxmedio.com, 1 dxrating.net, 1 dxsigner.com, 1 dxzl.org, 1 @@ -47195,7 +47229,7 @@ dylancl.cf, 1 dylancl.fr, 1 dylandeconinck.cf, 1 -dylandulaney.com, 1 +dylandulaney.com, 0 dylanhansch.net, 1 dylankatz.com, 1 dylanknoll.ca, 1 @@ -47208,7 +47242,6 @@ dylanwise.net, 1 dylanwolff.com, 1 dylmye.me, 1 -dyln.xyz, 1 dylnuge.com, 1 dym.asia, 1 dym2012.com, 1 @@ -47293,6 +47326,7 @@ dyslexicfish.net, 1 dyslexicfish.org, 1 dysnomia.studio, 1 +dysplasie.com, 1 dysthymia.com, 1 dyuimovochka.tk, 1 dyve.me, 1 @@ -47330,7 +47364,6 @@ dz-hypo.net, 1 dz-hypo.org, 1 dz6729.com, 1 -dz68.cc, 1 dz6957.com, 1 dz7337.com, 0 dzar.nsupdate.info, 1 @@ -47403,6 +47436,7 @@ e-beyanname.net.tr, 1 e-bikesdirect.co.uk, 0 e-bill.ovh, 1 +e-biofire.gr, 1 e-bodybuilding.tk, 1 e-boekhouden.nl, 1 e-bookshelf.de, 1 @@ -47472,7 +47506,6 @@ e-knitting.tk, 1 e-knitwear.tk, 1 e-kultura.tk, 1 -e-lambre.com, 1 e-lamp.tk, 1 e-latvenergo.lv, 1 e-launch.nl, 1 @@ -47604,7 +47637,6 @@ e6e.io, 1 e7180.com, 1 e7d.io, 1 -e82365.com, 1 e899365.com, 0 e8bet.net, 1 e8space.co.nz, 1 @@ -47701,6 +47733,7 @@ earlyvoting.cf, 1 earlyvoting.gq, 1 earlyvoting.ml, 1 +earlyyearsaward.org.uk, 1 earlyyearshub.com, 1 earmarks.gov, 1 earn-learning.com, 1 @@ -47774,6 +47807,7 @@ easternshed.com, 1 easternskatesupply.com, 1 eastfieldnews.com, 1 +eastflower.com, 1 eastfordct.gov, 1 eastgreenwichnews.com, 1 eastgrmi.gov, 1 @@ -47806,6 +47840,7 @@ eastspencer.gov, 1 eaststudios.net, 1 easttamakiauto.co.nz, 1 +easttea.com, 1 easttnweather.com, 1 easttowereg.com, 1 eastvalleyendo.com, 1 @@ -47814,6 +47849,7 @@ eastwindsorhistory.tk, 1 eastyorkshirebuses.co.uk, 1 easukasbestos.co.uk, 1 +easy-2-do.com, 1 easy-affiliations.tk, 1 easy-company.tk, 1 easy-design.tk, 1 @@ -47906,7 +47942,6 @@ easysoft.tk, 1 easysolution.eu, 1 easysubmit.tk, 1 -easyswap.me, 1 easytamil.tk, 1 easytestonline.tk, 1 easytext.ga, 1 @@ -47949,6 +47984,7 @@ eatwisconsinpotatoes.com, 1 eatwith.com, 1 eauclairecounty.gov, 1 +eaucube.com, 1 eaugenethomas.cf, 1 eaujob.com, 1 eauto-cash.de, 1 @@ -48007,7 +48043,6 @@ ebdaa-business.com, 1 eben18.net, 1 ebenda.org, 1 -ebene.co.jp, 1 ebenica.sk, 1 ebenisterie-de-villenouvelle.fr, 1 ebenvloedaanleggen.nl, 1 @@ -48033,7 +48068,6 @@ ebis.info, 1 ebisee.com, 1 ebizarts.com, 1 -ebizneeds.com, 1 ebjork.se, 1 ebki-nsn.gov, 1 eblan.gq, 1 @@ -48126,6 +48160,7 @@ ece-inc.net, 1 ecelembrou.ovh, 1 ecemella.com, 0 +ecemi-alu.com, 1 ecency.com, 1 ecenglishlive.com, 0 ecetechsol.com, 1 @@ -48143,16 +48178,17 @@ echidnalock.com.au, 1 echinus.solutions, 1 echo-in.info, 1 +echo-inc.org, 1 echo-n.nz, 0 echo-online.de, 1 echoanalytics.com, 1 echobridgepartners.com, 1 echocolate.xyz, 1 -echodio.com, 1 echodyne.com, 1 echoesanddust.com, 1 echoesbase.com, 1 echoeshq.com, 0 +echoesin.com, 1 echofoxtrot.co, 1 echoit.net, 1 echoit.net.au, 1 @@ -48204,7 +48240,6 @@ eclipseinspectionservices.co.uk, 1 eclipsesource.com, 1 eclixo.com, 1 -ecmr.fi, 1 ecmx.eu, 1 ecn.ir, 1 ecnetworker.com, 1 @@ -48240,6 +48275,7 @@ ecodesign-labo.jp, 1 ecodesigns.nl, 1 ecodrive.in.ua, 1 +ecoefficience.com, 1 ecoelectricsandiego.com, 1 ecoeuropa.cf, 1 ecofinancing.com, 1 @@ -48262,7 +48298,7 @@ ecolamp.it, 1 ecolan37.ru, 1 ecole-attalens.ch, 0 -ecole-du-digital.com, 1 +ecole-du-digital.com, 0 ecole-eac.com, 1 ecole-iaf.fr, 0 ecole-nobilis.ch, 1 @@ -48272,7 +48308,6 @@ ecole.academy, 1 ecolebiblique.eu, 1 ecoledeconduiteportneuf.com, 1 -ecoledusabbat.org, 0 ecolelacime.be, 1 ecolenotredame.tk, 1 ecolequebec.com, 0 @@ -48314,7 +48349,6 @@ economias.pt, 1 economic-sanctions.com, 1 economicnews.ga, 1 -economicnewsbrasil.com.br, 1 economics-colleges.com, 1 economie.gouv.fr, 1 economie2.alsace, 1 @@ -48332,9 +48366,9 @@ ecoon.net, 1 ecopak.org, 1 ecopark.asia, 1 -ecopark.co, 1 ecopath.org, 1 ecopiscines.fr, 1 +ecopond.co.nz, 1 ecopowerenginewash.com, 1 ecopoweroil.com, 1 ecopy.ir, 1 @@ -48429,7 +48463,9 @@ edapt.org.uk, 1 edarabia.com, 1 edas.info, 0 +edatech.com, 1 edb.gov.sg, 1 +edboothandassociates.com, 1 edc-msp.com, 1 edcdn.net, 1 edd-miles.com, 1 @@ -48505,6 +48541,7 @@ edgetalk.net, 1 edgetechig.co.uk, 0 edgewaterco.gov, 1 +edgex.com, 1 edgflowers.ca, 1 edging.tech, 1 edglossary.org, 1 @@ -48554,9 +48591,9 @@ editions-campanile.fr, 1 editions-metailie.com, 1 editionsnoiretrouge.com, 1 -editionsz.com, 1 editorakanope.com.br, 1 editorial-esquematizate.es, 1 +editorial.cn, 1 editorialexpress.com, 1 editorsguild.com, 1 editspace.tk, 1 @@ -48643,9 +48680,9 @@ educatie.tk, 1 education-info.cf, 1 education4paper.tk, 1 -educational-groups.com, 1 educationarea.tk, 1 educationboard.ml, 1 +educationcluster.net, 1 educationconnect.tk, 1 educationcounsel.com, 1 educationdepartment.ml, 1 @@ -48673,6 +48710,7 @@ educatoys.com.br, 1 educbook.ga, 1 educheck.tech, 1 +educourse.nl, 1 edudip-next.com, 1 edudip.com, 1 edudoc.ch, 1 @@ -48730,6 +48768,7 @@ edv-lehrgang.de, 1 edv-ringhofer.de, 1 edvan.com.br, 1 +edvberger.com, 1 edvestinu.com, 1 edvgarbe.de, 1 edvision.ga, 1 @@ -48747,6 +48786,7 @@ edware.ga, 1 edweb.tk, 1 edwellbrook.com, 1 +edwinabl.com, 1 edwinlinda.tk, 1 edwinlugo.gq, 1 edwinmattiacci.com, 1 @@ -48926,7 +48966,6 @@ egg-ortho.ch, 1 eggblast.com, 1 eggc.at, 1 -eggcyte.com, 1 egge.com, 0 eggel.ch, 1 eggen.dk, 1 @@ -49029,15 +49068,15 @@ ehbo.nl, 1 ehbsecuritydavy.be, 1 ehcommerce.com, 1 -ehdata.net, 1 ehealth.gov.au, 1 ehealth.kg, 1 +eheberg.com, 1 eheliche-disziplin.schule, 1 +eheringe-shop24.de, 1 eheya.net, 1 ehif.ee, 1 ehipaa.com, 1 ehlers-net.de, 1 -ehlersdanlos.dk, 1 ehlersdanlos.tk, 1 ehliyetsinavsorulari.org, 1 ehmsen.nu, 1 @@ -49145,6 +49184,7 @@ eintoepfe-bruchsal.de, 1 eintracht-rodde.de, 1 einvestment.com, 1 +einvworld.com, 1 einwie.com, 1 eipp99.com, 1 eirastudios.co.uk, 1 @@ -49252,6 +49292,7 @@ ekologie.tk, 1 ekologija.tk, 1 ekomi.com, 1 +ekonbenefits.com, 1 ekonomika.tk, 1 ekonomipolitik.tk, 1 ekonomival.se, 1 @@ -49280,6 +49321,7 @@ ekspert.tk, 1 ekspertemerytalny.pl, 1 ekspertka.com.pl, 1 +ekwador.com, 1 ekyu.moe, 1 ekzcrosstour.ch, 1 ekzotika.tk, 1 @@ -49308,7 +49350,6 @@ elakiri.cf, 1 elalmibar.com, 1 elamcy.com, 1 -elanatours.com, 1 elanis.eu, 1 elanterna.ro, 1 elaon.de, 0 @@ -49335,6 +49376,7 @@ elbiaadmin.sk, 1 elbiahosting.sk, 1 elbir.tk, 1 +elblogdeldinero.com, 1 elblogdezoe.es, 1 elblok.com, 1 elbrus360.ru, 1 @@ -49385,6 +49427,7 @@ elcuadernodefilosofia.tk, 1 eldeneleokuldaneveoyun.com, 1 eldercare.gov, 1 +eldercare.net.au, 1 eldercaring.ca, 0 elderdentallab.com, 1 elderdevelopmentgroup.com, 1 @@ -49398,6 +49441,8 @@ eldhestar.is, 1 eldiario.net, 1 eldiedesign.com, 1 +eldin.ba, 1 +eldinturkic.com, 1 eldisagjapi.de, 1 eldorado-casino-zerkalo.beauty, 1 eldorado-casino.beauty, 1 @@ -49432,12 +49477,14 @@ electragirl.com, 1 electrans.es, 1 electras.cf, 1 +electrastart.nz, 1 electreeks.de, 1 electric-clippers.tk, 1 electric-gatesuk.co.uk, 1 electric-samara.tk, 1 electric-vault.co.uk, 1 electrical-schools.com, 1 +electrical.cn, 1 electricalandelectronicsengineerinformation.ga, 1 electricalengineeringapp.com, 1 electricalengineers.tk, 1 @@ -49486,6 +49533,7 @@ electrocomplect.com.ua, 1 electrocuted.com, 1 electrodomesticos.tk, 1 +electrodomesticosmiro.com, 1 electroforum.tk, 1 electrofreakz.tk, 1 electrofusion.de, 1 @@ -49552,7 +49600,6 @@ elektiriklidireksiyontamiri.com, 1 elektiriktasarruf.tk, 1 elektriker-notdienst-zentrale.de, 1 -elektrikumraniye.com, 1 elektrilevi.ee, 1 elektrilevi.eu, 1 elektro-adam.de, 1 @@ -49707,6 +49754,7 @@ elettricisti.roma.it, 1 elettrodomestici.roma.it, 1 elettrolinkimpianti.it, 1 +elettronew.com, 1 eleusis-zur-verschwiegenheit.de, 1 elev8fashion.ca, 1 elevacionesrama.com, 1 @@ -49714,6 +49762,7 @@ elevatedinteriors.org, 1 elevateservices.com, 1 elevatewebdesigns.com, 1 +elevationcreative.net, 1 elevationplumbingandheating.com, 1 elevationxstudios.com, 1 elevator.ee, 1 @@ -49756,6 +49805,7 @@ elgustdecreixer.cat, 1 elgustodecrecer.es, 1 elhim-iskra.com, 1 +elhombreinvierno.es, 1 elhombrepez.tk, 1 elhossari.com, 1 elhuesero.com, 1 @@ -49798,7 +49848,6 @@ elimperiolatino.com, 1 elina.pp.ua, 1 elinaflower.com, 1 -eline168.com, 1 elinformatico.tk, 1 elink.io, 1 elinks.tk, 1 @@ -49850,7 +49899,6 @@ eliteammunition.com, 1 elitebike.com.co, 1 elitechz.ai, 1 -elitechz.biz, 1 elitechz.cloud, 1 elitechz.co, 1 elitechz.com, 1 @@ -49861,9 +49909,7 @@ elitechz.net, 1 elitechz.ninja, 1 elitechz.nl, 1 -elitechz.online, 1 elitechz.org, 1 -elitechz.pro, 1 elitecleaningservices.com.cy, 1 eliteco.tk, 1 elitedns.info, 1 @@ -49887,13 +49933,11 @@ elitesim.ga, 1 elitesquadmodz.tk, 1 elitesynergyservices.com, 1 -elitetechz.com, 1 elitetechz.nl, 1 elitetoy.com.br, 1 elitewealth.in, 1 elitewebhub.com, 1 elitexxx.com, 1 -elitez.tech, 1 elithus.se, 1 elitsa.gr, 1 elivenet.com, 1 @@ -49936,7 +49980,6 @@ elle-fanning.info, 1 elle-weine.de, 1 elle.se, 1 -elleaura.fr, 1 elledecor.tk, 1 ellegaard.dk, 1 ellemental.me, 1 @@ -50004,7 +50047,7 @@ elmwoodmi.gov, 1 elnan.do, 1 elnegocioperfecto.tk, 1 -elnodiacademy.com, 1 +elnodiacademy.com, 0 elnoorandelmohanad.com, 1 elo-forum.org, 1 elo-rocket.com, 1 @@ -50032,7 +50075,6 @@ elpactest.eu, 1 elpactest.info, 1 elpactest.org, 1 -elpandator.duckdns.org, 1 elpandemonio.tk, 1 elpasocountryclub.com, 1 elpatronorlando.com, 1 @@ -50163,6 +50205,7 @@ emailable.com, 1 emailablev.com, 1 emailalaperformance.fr, 1 +emailassist.ai, 1 emailbusters.tk, 1 emailconfiguration.com, 1 emailer.party, 1 @@ -50187,6 +50230,7 @@ emaks.tk, 1 emalm.com, 1 emanaclinic.com, 1 +emancipator.com, 1 emancipet.org, 1 emanol.co.uk, 1 emanuel-loos.eu, 1 @@ -50201,6 +50245,7 @@ emarhotel.bg, 1 emarketingmatters.com, 1 emas-beja.pt, 1 +emater.com, 1 emavending.club, 1 emavok.eu, 1 emazrin.tk, 1 @@ -50210,6 +50255,7 @@ embarkok.com, 1 embarpet.com.br, 1 embarque.nl, 1 +embassyindia.com, 1 embawood.az, 1 embedded.com, 1 embedr.org, 1 @@ -50239,7 +50285,6 @@ embrapolsul.com.br, 1 embryooptions.com, 1 emby.cloud, 1 -emby.live, 1 emcado.com, 1 emccglobal.org, 1 emccr-ehtp.com, 1 @@ -50285,7 +50330,6 @@ emergencynewcastle.com.au, 1 emergencyportal.tk, 1 emergenzaduepuntozero.it, 1 -emergingafricagroup.com, 1 emergingindustryprofessionals.com, 1 emero.de, 0 emersoncanada.ca, 1 @@ -50388,10 +50432,11 @@ emo-poris.com, 1 emo.ie, 1 emoc.com, 1 +emocionado.com, 1 emocionestlp.com, 1 emocionypensamiento.com, 1 +emocje.com, 1 emoforum.tk, 1 -emoha.com, 1 emoji-meaning.org, 1 emoji-symbols.org, 1 emoji.build, 1 @@ -50403,6 +50448,7 @@ emojiteka.pl, 1 emojiterra.com, 1 emolafarm.com, 1 +emolar.com, 1 emolecules.com, 1 emond-usedcars.net, 0 emoneycircle.com, 1 @@ -50437,7 +50483,6 @@ empfrm.com, 1 empietraining.com, 1 empinfo.com, 1 -empire-events.nl, 1 empire-forum.tk, 1 empire-group.co.nz, 1 empire-univ.com, 1 @@ -50450,6 +50495,7 @@ empireliverfoundation.org, 1 empirical.net, 1 empiricinfotech.com, 1 +emplifi.io, 1 emploi-international.net, 1 emploi-saintefoytarentaise.fr, 1 employeeexpress.gov, 1 @@ -50489,10 +50535,10 @@ empowered-decision.com.au, 1 empoweredpatientradio.com, 1 empoweren.com, 1 +empowerhealpt.com, 1 empoweringdifferences.com, 1 empowerkea.org.nz, 1 empowermentinnovations.com, 1 -empowermentinnovations.net, 1 empowernation.org, 1 empowersimcoe.ca, 1 emprechtinger.com, 1 @@ -50514,7 +50560,6 @@ emprunterlivre.ci, 1 empsi-sup.com, 1 emptiness.cf, 1 -empty-memories.nl, 1 empty.host, 1 emptybox.com, 1 emptybox.org, 1 @@ -50534,7 +50579,6 @@ emsdinghies.com, 1 emse.fr, 1 emselenergia.com, 1 -emskirchen.de, 1 emsliespharmacy.com.au, 1 emsnow.com, 1 emt-penzberg.de, 1 @@ -50600,16 +50644,17 @@ encd.life, 1 ence.es, 1 encenna.com.br, 0 +encentfit.com, 1 encfs.win, 1 enchantedcode.co.uk, 1 enchantedcottage.tk, 1 encherosolhos.com.br, 1 +enchong.com, 1 encinitastrainer.com, 1 encirca.com, 0 encircleapp.com, 1 encode.agency, 1 encode.host, 1 -encodecloud.net, 1 encontra-me.org, 1 encontracarros.pt, 1 encontreumagp.com, 1 @@ -50640,7 +50685,6 @@ encuestaspagadas.org, 1 encurta.ml, 1 encycarpedia.com, 1 -encyclopediedrenthe.nl, 1 end.tf, 1 endangeredwatch.com, 1 endavantstap9b.tk, 1 @@ -50695,6 +50739,7 @@ endspamwith.us, 1 endstation-chaos.de, 1 enduranceseries.ca, 1 +enduro-center.pt, 1 enduroxtrem.tk, 1 endurtech.com, 1 endustriyelfirinlar.com, 1 @@ -50743,6 +50788,7 @@ energetikasmantojums.lv, 1 energetikasmuzejs.lv, 1 energia.ee, 1 +energiaelcorteingles.es, 1 energialibre.tk, 1 energianuclear.tk, 1 energiatalgud.ee, 1 @@ -50756,7 +50802,6 @@ energielabelbinneneenweek.nl, 1 energiemines.ma, 1 energiewende.com.br, 1 -energikompetens.se, 1 energise.co.nz, 1 energnist.dk, 1 energo.eng.br, 1 @@ -50829,7 +50874,6 @@ enfantsoleil.ca, 1 enfasyperfumarias.com, 1 enfermedaddelbeso.com, 1 -enfermedades.wiki, 1 enfermeira.pt, 1 enfieldheightsacademy.org.uk, 1 enflow.nl, 1 @@ -50838,7 +50882,6 @@ enforcement-trends.azurewebsites.net, 1 eng-armin.com, 1 eng-erlangen.de, 1 -eng3corp.com, 1 eng4arab.tk, 1 engageaccount.com, 1 engageapp.net, 1 @@ -50865,6 +50908,7 @@ engen.co.za, 0 engg.ca, 1 enggar.tk, 1 +enggrup.com.tr, 1 engie-laadpalen.nl, 0 engima.nl, 1 engineer-kobe.ga, 1 @@ -50893,6 +50937,7 @@ engl-server.de, 1 engl-systems.de, 1 englandbeach.com, 1 +englandgenealogy.co.uk, 1 englandlearn.com, 1 englandschool.tk, 1 englesh.org, 1 @@ -50929,6 +50974,7 @@ engso.com, 1 engso.eu, 1 engsoyouth.eu, 1 +engster.com, 1 engsubjav.com, 1 engution.biz, 0 engvid.com, 1 @@ -50957,8 +51003,8 @@ enjin.io, 1 enjin.zone, 1 enjoy-drive.com, 1 -enjoyangels.com, 1 enjoybeer.dk, 1 +enjoys.rocks, 1 enjoytrip.me, 1 enka-works.com, 1 enka-works.jp, 1 @@ -50984,11 +51030,13 @@ enmedia.eu, 1 enmowe.co.ke, 1 enmowe.tech, 1 +ennd.com, 1 ennori.jp, 1 ennova.com, 0 ennovationtech.eu, 1 enoahinc.com, 1 enodais.gr, 1 +enoenergy.com, 1 enofmusic.com, 1 enoisdaturma.tk, 1 enolalingerie.com, 1 @@ -50997,6 +51045,7 @@ enonvalleyboropa.gov, 1 enoou.com, 1 enorekcah.com, 1 +enorness.com, 1 enosiseurotrade.com, 1 enosistrade.com, 1 enot32.ru, 1 @@ -51070,6 +51119,7 @@ entdeckertouren.com, 1 enteente.com, 1 entegrations.io, 1 +ententaxi.de, 1 enter.co, 1 enteratesoria.tk, 1 enterclaim.com, 1 @@ -51115,14 +51165,13 @@ entrepatios.org, 1 entreprenet.gq, 1 entrepreneuraj.com, 1 -entrepreneuretlibre.com, 1 entrepreneurialopensource.org, 1 entrepreneurnight.com, 1 entreprise-innovante.fr, 1 entreprise-punaise-de-lit.com, 1 entreprise-ravalement-facade.paris, 1 entreprises.gouv.fr, 1 -entreprisesavendre.quebec, 1 +entreprisesavendre.quebec, 0 entreterse.com.br, 1 entretien-roche.fr, 1 entretien-vmc-professionnel.com, 1 @@ -51135,7 +51184,6 @@ entropy.su, 1 entropyofdelicatewonders.com, 1 entruempelung-berlin.de, 1 -entruempelungsfirma.xyz, 1 entrup.io, 1 entryboss.cc, 1 entryninja.com, 1 @@ -51187,12 +51235,10 @@ enumasecurity.com, 1 enuygun.com, 1 enuygunaucakbileti.com, 1 -envaldemoro.com, 1 envanature.com, 1 envant.co.uk, 1 envelopeartisans.com, 1 envelopegroup.com, 1 -enveloppen.nl, 1 enveloppenopmaat.nl, 1 enverid.com, 1 envescent.com, 1 @@ -51208,7 +51254,6 @@ envir.ee, 0 envirhom.com, 1 enviro-choice.co.uk, 1 -enviro-clear.co.uk, 1 enviroli.ch, 1 enviroli.co.nz, 1 enviroli.cz, 1 @@ -51241,7 +51286,7 @@ envoypresents.com, 1 envt.fr, 1 envydesigns.tk, 1 -envygeeks.io, 1 +envygeeks.io, 0 enweb.ml, 1 enwikipedia.tk, 1 enwillyado.tk, 1 @@ -51273,11 +51318,11 @@ eons.io, 1 eonwavesstudio.com, 1 eoonglobalresources.jp, 1 +eop.gov, 1 eopac.net, 1 eoperth.com.au, 1 eos-utvalget.no, 0 eosagonline.ru, 1 -eoscryptocurrency.com, 1 eosguru.ru, 1 eosinofilos.com, 1 eosol.services, 1 @@ -51363,6 +51408,7 @@ epistas.com, 1 epistas.de, 1 epistemes.org, 1 +epistula.com, 1 epitelial.com, 1 epitesti.ro, 1 epitesztervezes.hu, 1 @@ -51387,7 +51433,6 @@ epochconcepts.com, 0 epolitiker.com, 1 epos.az, 1 -eposig.net, 1 eposmidlands.co.uk, 1 eposnottingham.co.uk, 1 eposreading.co.uk, 1 @@ -51406,6 +51451,7 @@ eprdco.gov, 1 epressrelease.org, 1 eprezto.com, 1 +eprice.it, 1 eprimego.com, 1 eprint-grimsby.co.uk, 1 eprisephoto.com, 1 @@ -51415,6 +51461,7 @@ eprzybornik.pl, 1 eprzydasie.pl, 1 epsamsg.com, 1 +epsilogix.com, 1 epsilon.photography, 1 epsilontel.com, 1 epsmil.it, 1 @@ -51442,11 +51489,11 @@ eqtpartners.com, 1 eqtventures.com, 1 equalifica.com.br, 1 +equalityhealthcareservices.com, 1 equalitync.org, 1 equalone.co.jp, 1 equals.com.br, 1 equans-kaelte.de, 1 -equasea.com, 0 equate.net.au, 1 equatetechnologies.com.au, 0 equeim.ru, 0 @@ -51517,6 +51564,7 @@ erboristeria.roma.it, 1 erbt.tk, 1 erc721c.com, 1 +ercio.com, 1 erciyesspor.tk, 1 erclab.kr, 1 erclaim.com, 1 @@ -51553,6 +51601,7 @@ ergometrics.org, 1 ergonomic-products.com, 0 ergoseo.com, 1 +ergosg.com, 1 ergostoel.nl, 1 ergotherapie-schaab.de, 1 ergotherapie.fr, 1 @@ -51635,7 +51684,6 @@ erisinfo.com, 1 eristajanmutka.com, 1 erisws.com, 1 -erisys.net, 1 eritiaprivacidad.com, 0 erito.com, 1 eritonetwork.com, 1 @@ -51679,6 +51727,7 @@ erol.se, 1 erolib.ga, 1 erolmobilya.com, 1 +eromanga.com, 1 eron.info, 1 eros.com, 1 erosads.com, 1 @@ -51732,7 +51781,6 @@ erstehilfeprodukte.at, 1 erstehyp.de, 1 erstehypo.de, 1 -erstetraunerkuenstlergruppe.at, 1 erstiwiki.de, 1 ert.ovh, 1 ertebatatjelve.ir, 1 @@ -51751,7 +51799,6 @@ erudicia.uk, 1 erudikum.cz, 1 erudio-usluge.hr, 1 -erulezz.nl, 1 erv.digital, 1 ervaarjapan.nl, 1 ervgroupe.com, 1 @@ -51836,9 +51883,11 @@ escaperoomla.com, 1 escapio.com, 1 escarabajal.net, 1 +escarpe.com, 1 escavador.com, 1 escg.digital, 1 eschool.am, 1 +escif.com, 1 esclinux.tk, 1 escmatrix.com, 1 escobarservice7000.com, 1 @@ -51859,9 +51908,9 @@ escort-fashion.com, 1 escort.it, 1 escortbee.com, 1 -escortcreampie.com, 1 escortdelhi.net, 1 escortdisplay.com, 1 +escortify.co.nz, 1 escortjessy.tk, 1 escortlistings.ca, 1 escortlistings.eu, 1 @@ -51869,7 +51918,6 @@ escortlistings.ph, 1 escortlistingsuk.co.uk, 1 escorto.cc, 1 -escorts.works, 1 escortz.gq, 1 escoteiros.tk, 1 escovator-records.tk, 1 @@ -51894,6 +51942,7 @@ esd.cc, 1 esdacademy.eu, 1 esdarat.ml, 1 +esden.com, 1 esdiscuss.org, 1 esdisena.es, 1 esdrasluna.com, 1 @@ -51921,12 +51970,9 @@ eshop-prices.com, 1 eshop-ptz.ru, 1 eshopcore.dk, 1 -eshopmall.online, 1 -eshopriver.com, 1 eshoprzd.ru, 1 eshorizonte2020.es, 1 eshotsaatleri.com, 1 -eshtapay.com, 1 esiac.net, 1 esicia.rw, 1 esideshop.com, 1 @@ -51972,7 +52018,6 @@ eso-database.com, 1 eso-skillfactory.com, 1 eso3.eu.org, 1 -esoa.net, 1 esocite.la, 1 esoko.eu, 1 esolcourses.com, 1 @@ -52018,7 +52063,7 @@ espass.gq, 1 espbimbel.com, 1 espci.fr, 1 -especes.org, 1 +especes.org, 0 especializasaudecursos.com.br, 1 especificosba.com.ar, 1 espectro.tk, 1 @@ -52049,6 +52094,7 @@ esporters.today, 1 esportsbattles.ga, 1 espower.com.sg, 1 +espra.com, 1 espresine.lt, 1 espressoapp.com.br, 1 espressonews.gr, 1 @@ -52069,7 +52115,6 @@ esrinfo.com, 1 esrs.gov, 1 ess-ecologica.cat, 1 -essam.website, 1 essay-writing-topics-fce.tk, 1 essayads.com, 1 essaybrand.com, 1 @@ -52098,7 +52143,6 @@ essenciasparis.com.br, 1 essendi.de, 1 essenglish.org, 1 -essentialfoods.pt, 1 essentialinteriors.ga, 1 essentialoils.nl, 1 essentialsource.net, 1 @@ -52110,7 +52154,6 @@ essentry.com, 0 essentta.com, 1 essenttamarketplace-essenttamarketplaceqa.azurewebsites.net, 1 -essenziale-beauty.co.uk, 1 esseriumani.com, 1 essex.cc, 1 essexapartmenthomes.com, 1 @@ -52137,7 +52180,6 @@ establishmentchs.com, 1 establo.pro, 1 estacio.br, 1 -estada.ch, 1 estadoreclamos.com, 1 estafallando.es, 1 estafallando.mx, 1 @@ -52167,11 +52209,11 @@ estetica-bilbao.com, 1 estetica.host, 1 esteticamicali.com.ar, 1 -esteticanorte.com.br, 1 esteticaprofana.it, 1 estetici.com, 1 esteticka-chirurgie-nohy.cz, 1 estetista.net, 1 +estheclinic.co.uk, 1 estherbouquet.com, 1 esthergoh.com, 1 estherlew.is, 1 @@ -52180,9 +52222,7 @@ esthesoleil.jp, 1 esthetiqueboissiere.fr, 1 estila.co, 1 -estiloelevadores.com.br, 1 estilopack-loja.com.br, 1 -estimateone.com, 1 estintori.roma.it, 1 estiv-ales.fr, 1 estlat.eu, 0 @@ -52244,6 +52284,7 @@ et-inf.de, 1 et.al, 1 et420nrw.tk, 1 +etablissement.com, 1 etaconic.com, 1 etaes.eu, 1 etajerka-spb.ru, 1 @@ -52365,7 +52406,6 @@ eticket.mx, 1 etiechi.com, 1 etienne.cc, 1 -etigold.com, 1 etiketten.tk, 1 etikus-hacker.hu, 1 etil.wtf, 1 @@ -52406,16 +52446,12 @@ ettagroup.ru, 1 ettbattreinternet.se, 1 etterforsker1.no, 1 -etterretningstjenesten.no, 0 ettlinger-tor.de, 1 ettoday.org, 1 ettoremirarchifilms.it, 1 ettyproject.org, 1 etudepresse.tk, 1 etudes.ru, 1 -etudesbibliques.fr, 0 -etudesbibliques.net, 0 -etudesbibliques.org, 0 etula.ga, 1 etulasin.tk, 1 etury.online, 1 @@ -52426,7 +52462,6 @@ etyka.cz, 1 eu-darlehen-finanzierung.de, 1 eu-datenbank.de, 1 -eu-gamers.com, 1 eu-prodaja.com, 1 eu-secured.com, 1 eu-stellenangebot.de, 1 @@ -52446,6 +52481,7 @@ eucybernet.eu, 0 eudiakok.hu, 1 eudore.org, 1 +eufair.com, 1 euflight.info, 1 eufraimidis.com, 1 eugenefilmfest.org, 1 @@ -52457,7 +52493,6 @@ eugenics.org, 1 eugeniocorso.com, 1 eugenioperez.tk, 1 -eugenioruberto.it, 1 eugostodefilmesbrasileiros.tk, 1 eugster.se, 1 eujobs.hu, 1 @@ -52488,6 +52523,7 @@ eulederminerva.de, 1 eulekarstva.uz, 1 eulen.com, 1 +eulenberg.com, 1 eulenschmiede.de, 1 euler.finance, 1 euleres.tk, 1 @@ -52500,6 +52536,7 @@ eung.ga, 1 eunicetan.com, 1 eunomy.io, 1 +eunow.com, 1 eupay.de, 1 euphoriaonline.tk, 1 euphoriareign.com, 1 @@ -52545,10 +52582,12 @@ eurocontrol.lu, 1 eurocontrol.me, 1 eurocontrol.xxx, 1 +eurocure.com, 1 eurodanceperu.tk, 1 eurodentaire.com, 1 eurodesk.eu, 1 eurodontic.co.uk, 0 +euroecho.com, 1 euroenergy.tk, 1 euroestetica.ec, 1 euroevent.nl, 1 @@ -52571,12 +52610,16 @@ eurohell-design.de, 1 euroherp.com, 1 eurohouse.tk, 1 +euroindia.net, 1 +eurokid.com, 1 +eurokiss.com, 1 eurolink.tk, 1 eurolocarno.es, 1 eurologix.com, 1 euroluxgradnja.rs, 1 euromalha.com.br, 1 euroman.ga, 1 +euromas.com, 1 euromat.org, 1 eurometal.net, 1 euromexde.com, 1 @@ -52588,12 +52631,13 @@ europack.kiev.ua, 1 europadonna.fr, 1 europainchemnitz.de, 1 -europapier.net, 1 +europapier.net, 0 europarts-sd.com, 1 europass-info.de, 1 europastudien-chemnitz.de, 1 europastudien.de, 1 europatour2005.tk, 1 +europavilion.com, 1 european-accreditation.org, 1 european-agency.org, 1 european-alternatives.eu, 1 @@ -52629,11 +52673,15 @@ europoint.uk, 1 europop.com, 1 euroquis.nl, 1 +euroregister.com, 1 euroroad17.dk, 1 euroscot.de, 1 euroshop.or.at, 1 euroshop.tk, 1 +eurosight.com, 1 euroskano.nl, 1 +eurosnap.com, 1 +eurosos.com, 1 eurospecautowerks.com, 1 eurosquad.tk, 1 eurostrategy.vn.ua, 1 @@ -52641,10 +52689,8 @@ euroswapper.tk, 1 euroteam.tk, 1 eurotechme.com, 1 -eurotechnology-group.com, 1 eurotecvfs.com, 0 eurotest.tk, 1 -eurotoerist.nl, 1 eurotop.net.pl, 1 eurotour.tk, 1 eurotracs.com, 1 @@ -52652,6 +52698,8 @@ eurousa.us, 1 eurovision-romania.tk, 1 eurovision.ie, 1 +eurowave.com, 1 +eurowish.com, 1 eurseo.com, 1 euruni.edu, 1 eusalesman.hu, 1 @@ -52703,6 +52751,7 @@ evalesc.com, 1 evalinux.com, 1 evalopezzz.org, 1 +evaluasi.com, 1 evaluation.gov, 1 evalueit.eu, 1 evaluer2.pl, 1 @@ -52722,7 +52771,6 @@ evanlee.my, 1 evanreev.es, 1 evanserver.org, 1 -evansfmm.org, 1 evansfox.com, 1 evanspoliceny.gov, 1 evanstonnow.com, 0 @@ -52754,7 +52802,6 @@ evedanjailbreak.com, 1 evehryday.com, 1 eveil-et-savoirs.com, 1 -evekalinik.com, 1 evelethpd.gov, 1 evelienstormzangcoach.nl, 1 evelienuitvaartverzorging.nl, 1 @@ -52763,8 +52810,8 @@ evelynmakesthings.xyz, 1 even44.no, 1 evenbijproaten.online, 1 +evendesign.com, 1 evendesign.gq, 1 -evenementenpartner.nl, 1 evenimenteromania.tk, 1 eveningstar.tk, 1 eveningtaxservices.com, 1 @@ -52805,6 +52852,7 @@ eventdata.uk, 1 eventdays.tk, 1 eventex-rentals.com, 1 +eventfoto.com, 1 eventfun.tk, 1 eventide.space, 1 eventinsurancesettlementqc.com, 1 @@ -52814,6 +52862,7 @@ eventmall.com.br, 1 eventnature.de, 1 eventnexus.co.uk, 1 +eventoopartyrooms.com, 1 eventosbgp.com, 1 eventosbyt.pt, 1 eventosclick.com, 1 @@ -52835,7 +52884,6 @@ eventplanner.nl, 1 eventprazdnik.ru, 1 events1.co.il, 1 -eventsbytma.com, 1 eventseeker.com, 1 eventservicestockholm.se, 1 eventsforyou.fr, 1 @@ -52853,12 +52901,12 @@ evercred.com, 1 everdivemarine.com, 1 everestbankltd.com, 1 +everestplus.io, 1 everettduiattorneys.com, 1 everettsautorepair.com, 0 everfi.com, 1 everfine.com.tw, 1 everfree.win, 1 -everfreecoloring.com, 1 evergarden.cn, 0 evergladesfarmequipment.com, 1 everglow.co.jp, 1 @@ -52871,6 +52919,7 @@ evergreenlangladewi.gov, 1 evergreenpeo.com, 1 evergreenproclean.com, 1 +evergreenservice.net, 1 evergrowthdc.com, 1 everhome.cloud, 1 everichspice.com, 1 @@ -52896,7 +52945,6 @@ evertrust.fr, 1 evertz.com, 1 evertz.io, 1 -evervitjuice.com, 1 everwaking.com, 0 everwinter.tk, 1 every-day-life.com, 0 @@ -52944,8 +52992,6 @@ everythinginoneblog.gq, 1 everythinglidia.com, 1 everythingusb.com, 1 -everythingyouneedishere.website, 1 -everythinq.com, 1 everytrycounts.gov, 1 everyveterancountsohio.gov, 1 eveshaiwu.com, 1 @@ -52954,7 +53000,6 @@ evetdermisin.com, 1 evetech.net, 1 evezqurbanli.tk, 1 -evga.com, 1 evgo.com, 1 evhoeft.com, 1 eviction.cf, 1 @@ -53010,6 +53055,7 @@ evokeearlylearning.com.au, 1 evol-ve.nl, 1 evolucioneducativa.com.ec, 1 +evolucionestudios.com.bo, 1 evolucionradio.tk, 1 evolusis.fr, 1 evolution-gaming.tk, 1 @@ -53017,6 +53063,7 @@ evolution-x.org, 1 evolution.codes, 1 evolutionbp.es, 1 +evolutionhomecorp.com, 1 evolutioninflatables.co.uk, 1 evolutionlending.co.uk, 1 evolutionlife.za.com, 1 @@ -53044,6 +53091,7 @@ evotec.pl, 1 evoting-test.ch, 0 evoting.ch, 0 +evoyan.org, 1 evrial.com, 1 evromandie.ch, 1 evronews.ga, 1 @@ -53071,6 +53119,7 @@ ewansinclair.tk, 1 ewanto.de, 1 ewaroeng.com, 0 +ewarranty.by, 1 ewasterj.com, 1 ewatchers.org, 1 ewaycorp.com, 1 @@ -53086,6 +53135,7 @@ ewhowell.com, 1 ewie.name, 1 ewighost.com, 1 +ewigkeit.blog, 1 ewinstore.com, 1 ewizja.info, 1 ewizmo.com, 1 @@ -53141,7 +53191,6 @@ exampleessays.com, 1 examroll.fr, 1 examroo.nl, 0 -examroom.ai, 1 examsite.tk, 1 examsmate.in, 1 examsoft.com, 1 @@ -53185,6 +53234,7 @@ excellentsurferers.ga, 1 excellentsurferest.ga, 1 excellershop.com, 1 +excellingleaders.nl, 1 excelnutritional.com.br, 1 excelpedia.net, 1 excelsamurai.com, 1 @@ -53208,6 +53258,7 @@ exchangeview.ga, 1 exchangevisits.tk, 1 exchaser.com, 1 +excimerlaser.com, 1 exciters.tk, 1 excitoninteractive.com, 1 exclaimer.com, 1 @@ -53238,7 +53289,6 @@ exedo.nl, 1 exegese.ch, 0 exegol.co.uk, 1 -exeintel.com, 1 exelonline.nl, 1 exem.cc, 1 exemplarypainting.com, 0 @@ -53279,6 +53329,7 @@ exmart.ng, 1 exmoe.com, 1 exo-chanyeol.tk, 1 +exoatlas.com, 1 exodiac.ph, 1 exodium.tk, 1 exodus-net.pl, 1 @@ -53295,6 +53346,7 @@ exosama.com, 1 exoscale.ch, 1 exoscale.com, 1 +exosys.ch, 1 exoten-spezialist.de, 1 exotic-animals.tk, 1 exotic-bengal-cattery.ml, 1 @@ -53303,6 +53355,7 @@ exoticaz.to, 1 exotictravel.tk, 1 exousiakaidunamis.pw, 1 +exousiamg.com, 1 exoweb.ca, 1 exp.gg, 1 expancio.com, 0 @@ -53312,6 +53365,7 @@ expansive.info, 1 expart.com, 1 expat.com, 1 +expatexplore.com, 0 expatfinancial.com.hk, 1 expatholidaysthailand.com, 1 expatinpoland.com, 1 @@ -53360,7 +53414,6 @@ experta.bg, 1 expertairductcleaninghouston.com, 1 expertclub.tk, 1 -expertcomics.ca, 1 experteasy.com.au, 1 expertembeleza.com, 1 expertembeleza.com.br, 1 @@ -53378,7 +53431,8 @@ expertplumbingandsolarservicesbathurst.com.au, 1 experts-excel.com, 1 experts-united.tk, 1 -expertvagabond.com, 1 +experts.com, 1 +expertvagabond.com, 0 expertviolinteacher.com, 1 expertyusa.com, 1 expicare.com, 1 @@ -53392,13 +53446,13 @@ explicamente.pt, 1 explode.tk, 1 explodie.org, 1 +exploit-db.com, 1 exploit.cz, 0 exploit.party, 1 exploited.cz, 1 exploithe.net, 1 exploitit.com.au, 1 explorance.com, 1 -exploraromundo.com, 1 exploraturuta.com, 1 exploravacations.in, 1 explore-arctic.com, 1 @@ -53414,6 +53468,7 @@ exploreintel.com, 1 exploreit.online, 1 explorelompoc.com, 1 +exploremarktwainlake.com, 1 explorersclubdc.org, 1 exploretock.com, 1 exploretravellife.com, 1 @@ -53428,6 +53483,7 @@ expo.io, 1 expo58.tk, 1 expobeds.com, 1 +expobusiness.am, 1 expocom.online, 1 expodat.com, 1 expodom.hu, 1 @@ -53611,14 +53667,15 @@ exvega.com, 1 exvisits.tk, 1 exwaiti.com, 1 +exway.com, 1 exxoncannabis.com, 1 exxpozed-image.de, 1 exxpozed.ch, 1 exxpozed.co.uk, 1 exxpozed.com, 1 -exxpozed.de, 1 exxpozed.eu, 1 exzibit.net, 1 +eyaqueen.com, 1 eyasc.nl, 1 eye-move.nl, 1 eye-vet.co.uk, 1 @@ -53648,6 +53705,7 @@ eyesee.fr, 1 eyesfans.com, 1 eyeshield-informatique.tech, 1 +eyesome.com, 1 eyespecialistsofla.com, 1 eyestrainexplained.com, 1 eyesurgery.tk, 1 @@ -53687,6 +53745,7 @@ ezinternet.com.au, 1 ezitech.com, 1 ezkrt.com, 1 +ezmedix.ua, 1 ezmob.com, 1 ezmoddingz.tk, 1 eznetworks.com.br, 1 @@ -53733,12 +53792,12 @@ f1fever.co.uk, 1 f1fever.net, 1 f1grandprix.tk, 1 +f1iran.com, 1 f1ltr0.com, 1 f1nal-lap.be, 1 f1nalboss.de, 1 f1pr.com, 1 f1report.net, 1 -f1rstparking.co.uk, 1 f1simulator.tk, 1 f1solutionslb.com, 1 f1sport.tk, 1 @@ -53761,14 +53820,12 @@ f6957.co, 1 f6queer.org, 1 f6s.com, 1 -f82365.com, 1 f88288.com, 0 f8842.com, 1 f88fine.com, 1 f88good.com, 1 f88ll.com, 1 f88qin.com, 1 -f88vip1.com, 1 f88vip101.com, 1 f88vip102.cc, 1 f88vip107.com, 1 @@ -53857,7 +53914,7 @@ fabiooliveirapr.com.br, 0 fabiopaiva.pt, 1 fabiosantos.tech, 1 -fablabchemnitz.de, 1 +fablabchemnitz.de, 0 fabledsolutions.com, 1 fableforge.nl, 1 fableheartmedia.com, 1 @@ -53897,7 +53954,6 @@ fabulousfarmgirl.com, 1 fabulouslyyouthfulskin.com, 1 fabulouslyyouthfulskineyeserum.com, 1 -faburocks.com, 1 fabuye.cf, 1 fabuye.ga, 1 fabuye.gq, 1 @@ -53933,7 +53989,6 @@ facedaily.tk, 1 facedeplook.tk, 1 faceegypt.tk, 1 -faceitsalon.com, 0 facekhande.tk, 1 facemaze.io, 1 facemu.com, 1 @@ -53944,11 +53999,13 @@ faces4watch.com, 1 facescertification.com, 1 facesdr.com, 1 +faceside.com, 1 facevietpro.tk, 1 facevitalityers.ga, 1 fachcar.ma, 1 fachfusspflege-exner.de, 1 fachim.tk, 1 +fachinformatiker.com, 1 fachiri.tk, 1 fachschaften.org, 0 fachschaftslisten.at, 1 @@ -53958,6 +54015,7 @@ facialexercising.com, 1 facialparalysisnetwork.ga, 1 facialplasticsurgeryofaustin.com, 1 +facil.com.br, 1 facil.services, 0 facilecommebonjour.com, 1 facilit-info.fr, 1 @@ -53999,6 +54057,7 @@ factory-fan.com, 1 factory01.it, 1 factoryalimentos.com.br, 1 +factorypark.com, 1 factorypartsdirect.com, 1 factozia.tk, 1 facts-about-bees.ml, 1 @@ -54019,6 +54078,7 @@ facucosta.com.ar, 1 facuint.org, 1 facultyforthefuture.net, 1 +facvest.com, 1 fadaebalears.org, 1 fadaex.org, 1 fadaru.ml, 1 @@ -54091,6 +54151,7 @@ fairbot.gq, 1 fairbot.ml, 1 fairbot.tk, 1 +fairbroker.com, 1 fairchildband.tk, 1 fairchildfun.marketing, 1 fairchildportraits.com, 1 @@ -54136,7 +54197,6 @@ fairviewheightsil.gov, 1 fairviewmotel-simcoe.com, 1 fairwaycorner.com, 0 -fairwayhomebuyers.com, 1 fairwork.gov.au, 1 fairyballet.ga, 1 fairyclinic.com.tw, 1 @@ -54144,6 +54204,7 @@ fairystar.com.tw, 1 fairyth.tk, 1 faisia.tk, 1 +faith-for-life.com, 1 faithadvisorers.ga, 1 faithadvisorest.ga, 1 faithbulletin.tk, 1 @@ -54171,6 +54232,8 @@ fakeapple.nl, 1 fakeballon.shop, 1 fakebusters.club, 1 +fakecheck.com, 1 +fakecrime.bio, 1 faked.org, 1 fakeemergency.com, 1 fakeframes.ga, 1 @@ -54181,6 +54244,7 @@ fakehub.com, 1 fakel.ga, 1 fakemoney.ga, 1 +fakeout.no, 1 fakeroses.tk, 1 fakes-ru.tk, 1 fakescreen.org, 1 @@ -54263,6 +54327,7 @@ famcloud.de, 1 famdouma.nl, 1 fameng.nl, 1 +famenneartmuseum.be, 1 famep.gov, 1 fameska.com, 1 fameslook.tk, 1 @@ -54298,6 +54363,7 @@ familienforschung-krauss.de, 1 familienoase-koenigstein.de, 1 familienportal.de, 1 +familienrat.com, 1 familienzone.at, 1 familiereimann.com, 0 familieretshuset.dk, 1 @@ -54313,6 +54379,7 @@ familleshilton.com, 1 family-clinic.tk, 1 family-intervention.com, 1 +familyace.cz, 1 familyandfriends-railcard.co.uk, 1 familybusinessatlantic.ca, 1 familybusinessusa.com, 1 @@ -54365,6 +54432,7 @@ fancy.org.uk, 1 fancygaming.dk, 1 fancypanty.cf, 1 +fancywow.com, 1 fandars.com, 1 fandeev.tk, 1 fander.it, 1 @@ -54375,14 +54443,18 @@ fanfiction.tk, 1 fanflix.co, 1 fang-den-sommer.de, 1 +fangan.com, 1 fangbing.me, 1 +fangjingdian.com, 1 fangkehou.tk, 1 fangs.ink, 1 +fangshu.com, 1 fanidrakopoulou.tk, 1 fanjingbo.com, 1 fanniemaeloans.tk, 1 fanning.tk, 1 fannyips.tk, 1 +fanohus.de, 1 fanohus.dk, 1 fanorama.tk, 1 fanosak.tk, 1 @@ -54436,12 +54508,14 @@ fantgames.com, 1 fantinisfantasy.cf, 1 fantinishop.com, 1 +fantraxhq.com, 1 fanty-online.com, 0 fanuc-stanok.ru, 1 fanvue.com, 1 fanyue123.tk, 1 fanzade.com, 1 fanzapers.ga, 1 +fanzhuang.com, 1 fanzine-nimbus.tk, 1 fanzlive.com, 1 faortega.org, 1 @@ -54508,7 +54582,6 @@ farm-catalog.ga, 1 farm-dogecoin.tk, 1 farm-vacations.com, 1 -farmaceuticainternazionale.it, 1 farmacia.pt, 1 farmaciaclinica.it, 1 farmaciacomunalelacchiarella.it, 1 @@ -54549,6 +54622,7 @@ faro.com, 1 farodegracia.com, 1 farodistribuidora.com.br, 1 +faroes.net, 0 faroes.org, 1 faroit.tk, 1 faroitalia.it, 1 @@ -54601,6 +54675,7 @@ fashiondock.de, 0 fashiondot.ga, 1 fashioneditor.gr, 1 +fashionette.de, 1 fashionfeele.com, 1 fashionfeverlifestyle.com, 1 fashionflavorph.com, 1 @@ -54782,7 +54857,8 @@ fatfueled.com, 1 fatherhood.gov, 1 fatheroflions.org, 1 -fathers.com, 1 +fathers.com, 0 +fathom.one, 1 fatidique.com, 1 fatig.com, 1 fatiguesyndrome.com, 1 @@ -54824,6 +54900,7 @@ fauwater.com, 1 fauxcams.com, 1 fauxil.shop, 1 +fauxreal.com, 1 fav-hosting.online, 1 favarica.com, 1 faveaesthetik.de, 1 @@ -55143,7 +55220,6 @@ feetek.net, 1 feetnesclub.tk, 1 feetpa.ws, 1 -feezlinkz.com.ng, 1 feezmodo.com, 1 fef.moe, 1 fefacaram.com.br, 1 @@ -55296,7 +55372,6 @@ fenghuangcheng.tk, 1 fengjang.com.tw, 1 fengrui.me, 0 -fengshuimeta.com, 1 fengyadi.com, 1 fengyi.tel, 1 fengying.co, 1 @@ -55406,7 +55481,6 @@ ferrariale.tk, 1 ferrarichat.fr, 1 ferrars.org.uk, 1 -ferreh.com, 0 ferreira.ovh, 1 ferreteriaferreiro.com, 1 ferrets.tk, 1 @@ -55444,7 +55518,6 @@ feseev.ml, 1 festaprylar.se, 1 festar.tk, 1 -festasdosenhordocalvario.pt, 1 festesuniversitaries.tk, 1 festfabriken.se, 1 festin.tk, 1 @@ -55457,7 +55530,6 @@ festivaldelumieresgand.com, 1 festivaldimouamaroussiou.gr, 1 festivalfumo.tk, 1 -festivalgourmet.com, 1 festivaljapon.com, 1 festivallusitanodocirco.pt, 1 festivalplaza.com.au, 1 @@ -55488,7 +55560,6 @@ fetishblend.com, 1 fetishcamsites.com, 1 fetishpros.com, 1 -fetishvips.com, 1 fetishzone.org, 1 fetlife.com, 1 fetlinks.ga, 1 @@ -55549,184 +55620,20 @@ ff9397.com, 1 ff9728.co, 1 ff976.com, 0 -ffaaa00.com, 1 -ffaaa11.com, 1 -ffaaa22.com, 1 -ffaaa33.com, 1 -ffaaa44.com, 1 -ffaaa55.com, 1 -ffaaa66.com, 1 -ffaaa77.com, 1 -ffaaa88.com, 1 -ffaaa99.com, 1 ffamranteatime.com, 1 ffaprivatebank.com, 1 +ffazeshift.net, 1 ffb.gov, 1 ffb1.com, 1 ffbans.org, 1 -ffbbb00.com, 1 -ffbbb11.com, 1 -ffbbb22.com, 1 -ffbbb33.com, 1 -ffbbb44.com, 1 -ffbbb55.com, 1 -ffbbb66.com, 1 -ffbbb77.com, 1 -ffbbb88.com, 1 -ffbbb99.com, 1 ffbsee.net, 0 ffc-gerlingen.de, 1 -ffccc00.com, 1 -ffccc11.com, 1 -ffccc22.com, 1 -ffccc33.com, 1 -ffccc44.com, 1 -ffccc55.com, 1 -ffccc66.com, 1 -ffccc88.com, 1 -ffccc99.com, 1 ffd.or.id, 1 -ffddd00.com, 1 -ffddd11.com, 1 -ffddd22.com, 1 -ffddd33.com, 1 -ffddd44.com, 1 -ffddd55.com, 1 -ffddd66.com, 1 -ffddd77.com, 1 -ffddd88.com, 1 -ffddd99.com, 1 -ffeee00.com, 1 -ffeee11.com, 1 -ffeee22.com, 1 -ffeee33.com, 1 -ffeee44.com, 1 -ffeee55.com, 1 -ffeee66.com, 1 -ffeee77.com, 1 -ffeee88.com, 1 -ffeee99.com, 1 ffestiniogtravel.com, 1 fff-du.de, 1 fff-musique.fr, 1 -fffaa00.com, 1 -fffaa11.com, 1 -fffaa22.com, 1 -fffaa33.com, 1 -fffaa44.com, 1 -fffaa55.com, 1 -fffaa66.com, 1 -fffaa77.com, 1 -fffaa88.com, 1 -fffaa99.com, 1 -fffbb00.com, 1 -fffbb11.com, 1 -fffbb22.com, 1 -fffbb33.com, 1 -fffbb44.com, 1 -fffbb55.com, 1 -fffbb66.com, 1 -fffbb77.com, 1 -fffbb88.com, 1 -fffbb99.com, 1 fffbhv.de, 1 -fffcc00.com, 1 -fffcc11.com, 1 -fffcc22.com, 1 -fffcc33.com, 1 -fffcc44.com, 1 -fffcc55.com, 1 -fffcc66.com, 1 -fffcc77.com, 1 -fffcc88.com, 1 -fffcc99.com, 1 -fffdd00.com, 1 -fffdd11.com, 1 -fffdd22.com, 1 -fffdd33.com, 1 -fffdd44.com, 1 -fffdd55.com, 1 -fffdd66.com, 1 -fffdd77.com, 1 -fffdd88.com, 1 -fffdd99.com, 1 fffdm.com, 1 -fffee00.com, 1 -fffee11.com, 1 -fffee22.com, 1 -fffee33.com, 1 -fffee44.com, 1 -fffee55.com, 1 -fffee66.com, 1 -fffee77.com, 1 -fffee88.com, 1 -fffee99.com, 1 -fffgg00.com, 1 -fffgg11.com, 1 -fffgg22.com, 1 -fffgg33.com, 1 -fffgg44.com, 1 -fffgg55.com, 1 -fffgg66.com, 1 -fffgg77.com, 1 -fffgg88.com, 1 -fffgg99.com, 1 -fffhh00.com, 1 -fffhh11.com, 1 -fffhh22.com, 1 -fffhh33.com, 1 -fffhh44.com, 1 -fffhh55.com, 1 -fffhh66.com, 1 -fffhh77.com, 1 -fffhh88.com, 1 -fffhh99.com, 1 -fffii00.com, 1 -fffii11.com, 1 -fffii22.com, 1 -fffii33.com, 1 -fffii44.com, 1 -fffii55.com, 1 -fffii66.com, 1 -fffii77.com, 1 -fffii88.com, 1 -fffii99.com, 1 -fffjj00.com, 1 -fffjj11.com, 1 -fffjj22.com, 1 -fffjj33.com, 1 -fffjj44.com, 1 -fffjj55.com, 1 -fffjj66.com, 1 -fffjj77.com, 1 -fffjj88.com, 1 -fffjj99.com, 1 -fffkk00.com, 1 -fffkk11.com, 1 -fffkk22.com, 1 -fffkk33.com, 1 -fffkk44.com, 1 -fffkk55.com, 1 -fffkk66.com, 1 -fffkk77.com, 1 -fffkk88.com, 1 -fffkk99.com, 1 -fffll00.com, 1 -fffll11.com, 1 -fffll22.com, 1 -fffll33.com, 1 -fffll44.com, 1 -fffll55.com, 1 -fffll66.com, 1 -fffll77.com, 1 -fffll88.com, 1 -fffll99.com, 1 -fffmm00.com, 1 -fffmm11.com, 1 -fffmm22.com, 1 -fffmm33.com, 1 -fffmm44.com, 1 -fffmm55.com, 1 ffhs.ch, 1 ffiec.gov, 1 ffis.me, 0 @@ -55740,7 +55647,6 @@ ffsbgateway.com, 1 ffsociety.nl, 1 fftech.se, 1 -fftechnology.pt, 0 ffty2.com, 1 ffw-zeven.de, 1 ffwd-it.nl, 1 @@ -55749,7 +55655,6 @@ ffzellamsee.at, 1 ffzeven.de, 1 fgalegaciclismo.es, 1 -fgdc.gov, 1 fgeiger.dnshome.de, 1 fggpay.com, 1 fgh-ma.de, 1 @@ -55766,7 +55671,7 @@ fh-wechat.com, 1 fh-x.de, 1 fh-zh.com, 1 -fh.spb.ru, 0 +fh.spb.ru, 1 fh169.cc, 1 fh6lfwyn.com, 1 fh70.com, 0 @@ -55878,6 +55783,7 @@ fidhouriet.ch, 1 fidlar.com, 1 fidloo.com, 1 +fido.gov.au, 1 fidoo.com, 1 fiduciaire-ratio.ch, 0 fiducoldex.com.co, 1 @@ -55886,9 +55792,10 @@ fieggen.net, 1 fieggen.social, 1 fiekeoffringa.nl, 1 -fielackelectric.com, 1 fieldcrafts.com, 1 +fieldday.com, 1 fieldeffect.com, 1 +fieldgroupny.com, 1 fieldsgynroboticsurgery.com, 1 fieldworkbrewing.com, 1 fiemmeimpianti.it, 1 @@ -55909,6 +55816,7 @@ fietsherstel.gent, 1 fietsvakman.nl, 1 fietsvierdaagsen.nl, 1 +fietsvoordeelshop.nl, 1 fifaaddict.com, 1 fifacup.ga, 1 fifadimensions.tk, 1 @@ -55954,6 +55862,7 @@ figliasons.com, 1 figma-gov.com, 1 figma.com, 1 +figma.site, 1 figmalover.com, 1 figshare.com, 1 figswoodfiredbistro.com, 1 @@ -55990,6 +55899,7 @@ filebin.net, 1 filebox.one, 1 filecopa.com, 1 +filedesc.com, 1 filedir.com, 0 filedoom.ml, 1 fileforest.de, 1 @@ -56003,14 +55913,15 @@ fileport.io, 1 filequit.xyz, 1 files.com, 0 -files.from-me.org, 0 files.to, 1 +files4share.com, 1 fileservicios.com.ar, 1 fileshare.party, 1 filesharingshop.com, 1 filesoup.io, 1 filestar.io, 1 filestartest.io, 1 +filesuffix.com, 1 filetransfer.one, 1 filetransparency.com, 1 filezilla-project.org, 1 @@ -56126,7 +56037,6 @@ finalfoursteam.tk, 1 finalfourstream.tk, 1 finalgambit.band, 1 -finalino.de, 1 finalleopard.tk, 1 finalmenteazul.pt, 1 finalonline.tk, 1 @@ -56135,6 +56045,7 @@ finalweapon.net, 1 finalworkdriesstef.tk, 1 finalx.nl, 1 +finanalysis.com, 1 finance-colleges.com, 1 finance-consulting.ga, 1 finance-news.ga, 1 @@ -56188,7 +56099,6 @@ fincent.xyz, 1 finch.am, 1 finch.ga, 1 -finchkeeper.com, 1 finchnest.co.uk, 1 fincities.tk, 1 fincura.com, 1 @@ -56224,12 +56134,12 @@ finditez.com, 1 findity.com, 1 findjeen.com, 1 -findlaws.xyz, 1 findlayohio.gov, 1 findlimitsers.ga, 1 findlocalproduce.co.uk, 1 findmail.ga, 1 findmassmoney.gov, 1 +findmeapp.fr, 1 findmybottleshop.com.au, 1 findmycare.ca, 1 findmyfamily.org, 1 @@ -56286,6 +56196,7 @@ finex.by, 1 finexity.com, 1 finexo.ch, 1 +finfleet.id, 1 finfocus.today, 1 finform.ch, 1 finfowe.com, 1 @@ -56328,7 +56239,6 @@ finnishconsulting.com, 1 finnjumping.tk, 1 finnkupongkoder.no, 1 -finnq.com, 1 finnwea.com, 0 finom.co, 1 finotor.com, 1 @@ -56417,6 +56327,7 @@ firemaker.tk, 1 firenet.gov, 1 firenews.cf, 1 +firenneon.org, 1 firenzetoday.it, 1 fireoakstrategies.com, 1 fireplex.co.uk, 1 @@ -56451,7 +56362,9 @@ firmaautografa.com, 1 firmador.cloud, 1 firmador.online, 1 +firmaet.com, 1 firmale.com, 1 +firmamaja.com, 1 firmament.space, 1 firmament.tk, 1 firmanali.com, 1 @@ -56469,6 +56382,7 @@ firouz.tk, 1 firoza.finance, 1 firozechijewelry.com, 1 +firsattilkisi.com, 1 firsov.gq, 1 first-aid-kit.net, 1 first-education-online.com, 1 @@ -56513,6 +56427,7 @@ firstcontact.cf, 1 firstdry.com.br, 1 firstechpayments.com, 0 +firstenergyservice.com, 1 firstever.eu, 1 firstfederalbath.com, 1 firstfinanceit.com, 1 @@ -56529,7 +56444,6 @@ firstload.tk, 1 firstmall.de, 1 firstmarket.tech, 1 -firstmetro.com, 1 firstname.tk, 1 firstnet.gov, 1 firstnetwork.cf, 1 @@ -56572,7 +56486,7 @@ fischersports.com, 0 fisciences.com, 1 fiscoeconti.it, 1 -fish-hook.ru, 1 +fish-hook.ru, 0 fish-n-chips.uk, 1 fish.lgbt, 1 fish2.me, 1 @@ -56666,7 +56580,6 @@ fitness.gov, 1 fitnessbenefit.com, 1 fitnessbest.com, 1 -fitnessbond.com, 1 fitnessfoodguide.com, 1 fitnesshaber.com, 1 fitnessimage.com.au, 1 @@ -56683,6 +56596,7 @@ fitnetion.com, 1 fitnhot.com, 1 fitnur.com, 0 +fitnutkatie.com, 1 fito.tk, 1 fitodifesa.it, 1 fitotovar.ru, 1 @@ -56690,6 +56604,7 @@ fitrecepty.info, 1 fitspo.net, 1 fitspring.com, 1 +fitssey.com, 1 fitt-together.co.uk, 1 fittar.eu, 1 fittelo.cz, 1 @@ -56762,6 +56677,7 @@ fiyatagel.com, 1 fiyatinedir.net, 1 fizadvocaten.nl, 1 +fizeau.com, 1 fiziktedavi.name.tr, 1 fizjo-strefa.com, 1 fizjonell.pl, 1 @@ -56855,12 +56771,14 @@ flagstone-magazin.ro, 0 flagyl-500-mg.ga, 1 flair.nl, 1 +flaite.com, 1 flakytest.com, 1 flam.lu, 1 flam.studio, 1 flaman-h7a.fr, 1 flamanville.fr, 1 flamehaze.tk, 1 +flamellugano.com, 1 flamencoexplained.com, 0 flamencoshoes.tk, 1 flamengopi.tk, 1 @@ -56874,6 +56792,7 @@ flamingcow.tv, 1 flaminggorgefireandems.gov, 1 flamingkeys.com, 1 +flamingo-shop.nl, 1 flamingogroup.vn, 1 flamingoroute.tk, 1 flamingowomenspavilion.com, 1 @@ -56901,7 +56820,6 @@ flarewalker.eu, 1 flarewalker.net, 1 flarewalker.org, 1 -flareweb.it, 1 flart.studio, 1 flart.tk, 1 flarumtr.com, 1 @@ -56928,6 +56846,7 @@ flashset.tk, 1 flashuk.com, 1 flassetlocators.com, 1 +flaszka.com, 1 flat-cdn.com, 1 flat-embed.com, 1 flat-tire.biz, 1 @@ -56980,6 +56899,7 @@ fldjj.gov, 1 fldsmdfr.nl, 1 flealab.it, 1 +flearfarmcottages.com, 1 fleche-ardennaise.be, 1 flect.net, 1 fleeb.xyz, 1 @@ -57004,6 +56924,7 @@ fleetlinkatlascopco.com, 1 fleetofhope.tk, 1 fleetone.com.au, 1 +fleetserviceoftulsa.com, 1 fleetssl.com, 1 fleettools.tk, 1 fleetwiz.com.au, 1 @@ -57041,7 +56962,6 @@ flevoscouts.nl, 1 flex-one.fr, 1 flex1solutions.com, 1 -flexalert.org, 0 flexapplications.se, 0 flexartsocial.com, 1 flexbpo.com.br, 1 @@ -57098,7 +57018,6 @@ fliesen-waldschmidt.de, 1 fliesenbock.com, 1 fliessendes.mx, 1 -flight.school, 1 flightairport.com, 1 flightcheapfares.com, 1 flightdesign.com, 1 @@ -57114,7 +57033,6 @@ flightschoolbooking.com, 1 flightschoolcandidates.gov, 1 flightschoolxxi.com, 1 -flightsmilesandpoints.com, 1 flightspace.net, 1 flightstimes.com, 1 flightti.com, 1 @@ -57128,7 +57046,6 @@ flikmsg.co, 1 flimnet.tk, 1 flinch.io, 1 -fling.dating, 1 flingflong.co, 1 flinny.org, 1 flintavenue.com, 1 @@ -57146,7 +57063,6 @@ flipperkast.tk, 1 flippers-leuven.be, 1 flipphotography.ga, 1 -flipping.land, 0 flipsidevr.com, 1 flipsidexr.com, 1 flipsnack.com, 1 @@ -57229,6 +57145,7 @@ floralin.se, 1 floralworkshopsers.ga, 1 floranext.com, 1 +florante.com, 1 florasite.tk, 1 florausa.net, 0 floravan.com, 1 @@ -57373,7 +57290,6 @@ flowoodpolice.gov, 1 flowreplicator.com, 1 flowsave-staging.nl, 1 -flowsave.nl, 1 flowscale.com, 1 flowstars.tk, 1 flowstateyoga.com.au, 1 @@ -57388,6 +57304,7 @@ flpd.gov, 1 flpd6.gov, 1 flra.gov, 1 +flrs.co.uk, 1 flsa6.gov, 1 flsbanners.com, 1 flsc.co, 1 @@ -57424,7 +57341,6 @@ fluidsealing.com.au, 1 fluig.com, 1 fluitbeurt.nl, 1 -flukebiomedical.com, 1 flukestar.tk, 1 flukeydudes.org, 1 flumble.nl, 1 @@ -57437,7 +57353,6 @@ fluoxetine.ml, 1 fluoxetine.net, 1 fluoxetine2.ru, 1 -flushlife.com, 1 flusszs.tk, 1 fluteandpianoteaching.co.uk, 1 flutedrinks.com, 1 @@ -57465,6 +57380,7 @@ flybis.net, 1 flyboarder.tk, 1 flyboyfpv.com, 1 +flycolor.com, 1 flycolumbus.com, 1 flyer-homes.com, 1 flyer.tools, 1 @@ -57581,7 +57497,6 @@ fncreameries.com, 1 fndairies.com, 1 fndairies.com.my, 1 -fndho.ca, 1 fndout.com, 1 fneon.eu, 1 fnerk.org, 1 @@ -57606,7 +57521,6 @@ fnrs.nl, 1 fnscatania.tk, 1 fnthaidairies.com, 1 -fnwiki.com, 1 fnz.com, 1 foair.me, 0 foairbus.fr, 0 @@ -57644,7 +57558,6 @@ foerderverein-horrheim.de, 0 foerderverein-rimsg.de, 1 fof-clan.tk, 1 -fogdigitalmarketing.com, 1 foggi.cf, 1 foggi.ml, 1 foggiatoday.it, 1 @@ -57656,6 +57569,7 @@ foia.gov, 1 foiaonline.gov, 1 foixet.com, 1 +fojing.com, 1 fojt.cz, 1 fojtova.cz, 1 fojtovi.cz, 1 @@ -57727,7 +57641,6 @@ fondy.ua, 1 fondzee.cz, 1 foneapk.com, 1 -fonesalesman.com, 1 fonga.ch, 1 fongus.ca, 1 fongus.info, 1 @@ -57813,9 +57726,9 @@ foodexcel.ga, 1 foodfalcon.ga, 1 foodfeature.ga, 1 -foodfirefriends.com, 1 foodflower.ga, 1 foodgecko.ga, 1 +foodgenieai.com, 1 foodglamour.ga, 1 foodglory.ga, 1 foodgoddess.ga, 1 @@ -57925,7 +57838,6 @@ foodwish.ga, 1 foodyankee.ga, 1 foodzpace.com, 1 -foogle.cf, 1 fooishbar.org, 0 fool.im, 1 fooladi.tk, 1 @@ -58097,6 +58009,7 @@ forfeiture.gov, 1 forfortcollins.com, 1 forfunssake.co.uk, 1 +forge.cn, 1 forge.st, 1 forgeary.com, 1 forgemedia.io, 1 @@ -58131,10 +58044,10 @@ formafantasma.com, 1 formalgrammar.tk, 1 formalistgallery.com, 1 -formality.de, 1 formalize.com, 1 formand.ru, 1 formanov.com, 1 +formap.co, 1 formapi.io, 1 formascan.fr, 1 formassembly.com, 1 @@ -58183,7 +58096,6 @@ formweb.de, 1 fornarisandres.com, 1 fornata.it, 1 -fornex.com, 0 fornonardona.com, 1 fornoreason.net.au, 1 foro-coopfuture.tk, 1 @@ -58200,7 +58112,6 @@ forojovensanfernando.tk, 1 forologikidilosi.com.gr, 1 foromasters.tk, 1 -forooshgah.online, 1 forosdelmisterio.tk, 1 forourselves.com, 1 forowarhammer.tk, 1 @@ -58288,7 +58199,6 @@ fortunebazar.tk, 1 fortunedoor.net, 1 fortuneinvestments.ga, 1 -fortunemusic.jp, 1 fortunenames.ga, 1 fortunenamesers.ga, 1 fortunenamesest.ga, 1 @@ -58399,9 +58309,9 @@ fotoallerlei.com, 1 fotoapp.ch, 1 fotoarchiv-niederrhein.de, 1 +fotoballon.com, 1 fotoblog.nrw, 1 fotobodyart.nl, 1 -fotobrb.de, 1 fotobringer.de, 1 fotobrinke.de, 1 fotochip.tk, 1 @@ -58451,6 +58361,7 @@ fotostudio87.nl, 0 fotostudiobasic.tk, 1 fotosubmarina.tk, 1 +fotosyeventos.es, 1 fototjansterkalmar.se, 1 fototutorial.tk, 1 fotov60.com, 1 @@ -58461,6 +58372,7 @@ fotozone.tk, 1 fotp.com, 1 fotrino.com, 1 +fouadvollmergut.de, 1 foucheplumbers.com, 1 foudufafa.de, 0 fougereettralala.fr, 1 @@ -58543,12 +58455,11 @@ foxholehq.net, 1 foxing.club, 1 foxite.me, 1 -foxlawfresno.com, 1 foxly.de, 1 foxmailer.ml, 1 foxmay.co.uk, 1 foxo.blue, 0 -foxontheinter.net, 1 +foxontheinter.net, 0 foxpad.tk, 1 foxpia.no, 1 foxpointwi.gov, 1 @@ -58617,6 +58528,7 @@ fracasados.tk, 1 frack.nl, 0 fractalink.com, 1 +fractallatcarf.org, 1 fractieplanner.nl, 1 fraction-calculations.com, 1 fractionalciso.com, 1 @@ -58702,22 +58614,22 @@ framazic.org, 1 framboise314.fr, 1 framedog.tk, 1 -framedpaws.com, 1 framegame.ch, 1 framemo.org, 1 +framenails.fr, 1 framer.ai, 1 framer.com, 1 framer.live, 1 framer.studio, 1 framer.website, 1 framerjs.com, 1 -framerusercontent.com, 1 framesdirect.com, 1 framesi.cz, 1 framindmap.org, 1 framinetest.org, 1 framinghampd.gov, 1 frammenti.tk, 1 +framotec.de, 1 fran.cr, 1 francabellarsi.tk, 1 france-cartouches.fr, 1 @@ -58778,7 +58690,7 @@ francoislepage.com, 0 franconia.space, 1 francovital.com, 1 -francoz.me, 1 +francoz.me, 0 francs-tireurs.tk, 1 frand.tk, 1 frandor.co.uk, 1 @@ -58791,7 +58703,6 @@ frank-america.com, 1 frank-gcc.com, 1 frank-lastia.tk, 1 -frank-vincent.nl, 1 frank-wendy.tk, 1 frank.asia, 1 frank.fyi, 1 @@ -58834,10 +58745,8 @@ franklinvillagemi.gov, 1 frankly.ch, 1 frankmungoattorney.com, 1 -frankpeoples.com, 1 franksgreatoutdoors.com, 0 franksiler.com, 1 -frankslaughterinsurance.com, 0 frankthetank.biz, 1 frankviola.com, 1 frankviola.info, 1 @@ -58901,6 +58810,7 @@ fraternitynetworkest.ga, 1 fraternityphotosers.ga, 1 fraternityphotosest.ga, 1 +fratia.com, 1 fratiicazanoi.ro, 1 fratreunioners.ga, 1 fratreunionest.ga, 1 @@ -59083,6 +58993,7 @@ freedom35.org, 0 freedomains4all.tk, 1 freedomassistedliving.com, 1 +freedomdiver.org, 1 freedomdujour.com, 1 freedomfinance.eu, 1 freedomfinanceuat.azurewebsites.net, 1 @@ -59094,7 +59005,6 @@ freedomhouse.org, 1 freedomisslavery.tk, 1 freedomkiaparts.com, 1 -freedommunitions.com, 1 freedomonline.bg, 1 freedomonthenet.org, 1 freedomsanctuary.co.uk, 1 @@ -59278,6 +59188,7 @@ freifunk-remscheid.de, 1 freightcenter.com, 1 freightinsightservice.com, 1 +freightscore.net, 1 freinetmiddenschool.gent, 1 freitas.org, 1 freitasbastos.com.br, 1 @@ -59339,7 +59250,6 @@ fresh-networks.net, 1 fresh.co.il, 1 fresh4.co.uk, 1 -fresh4trash.io, 1 freshbean.club, 1 freshbooks.com, 0 freshcar.bg, 1 @@ -59447,7 +59357,6 @@ friendships.org, 1 friendsnew.com, 1 friendsnomore.tk, 1 -friendsofgfwpc.org, 1 friendsofmacdonald.nl, 1 friendsofmagnacarta.tk, 1 friendsofoldstthomas.org, 1 @@ -59486,7 +59395,6 @@ frilima.com.br, 1 friller.com.au, 1 frillip.com, 0 -fringeintravel.com, 1 fringraphics.com, 1 frinkiac.com, 1 frino.de, 1 @@ -59669,6 +59577,7 @@ fruitsfromchile.com, 1 fruittree.com.my, 1 fruittree.com.sg, 1 +fruitware.ae, 1 fruitybeauty.tk, 1 fruitycasinos.com, 1 fruityloop.tk, 1 @@ -59694,6 +59603,7 @@ fs-world.org, 1 fs1.hopto.org, 1 fs22a.de, 1 +fsaddons.net, 1 fsalmeron.tk, 1 fsapubs.gov, 0 fsavc.org.uk, 1 @@ -59802,7 +59712,6 @@ fuchet.fr, 1 fuchs-informatik.de, 1 fuchsnet.ch, 1 -fuchsy.com, 1 fuciam.com.co, 1 fuck-your-false-positive.de, 1 fuck.it, 1 @@ -59825,6 +59734,7 @@ fuckxichina.com, 1 fuckyou.monster, 1 fuckyoupaypal.me, 1 +fudaoyuan.com, 1 fuddittu.tk, 1 fudgeapps.co.uk, 1 fudgeapps.uk, 1 @@ -59857,6 +59767,7 @@ fufu.dance, 1 fugaku.cloud, 1 fuge-manden.dk, 1 +fuge-specialisten.dk, 1 fuglar.tk, 1 fugle.de, 1 fuglede.dk, 1 @@ -59911,6 +59822,7 @@ fujikochan.tk, 1 fujimurado.com, 1 fujitsu, 1 +fujivibe.art, 1 fujiwarashinzo.com, 1 fujiyakimono.com, 1 fukabori-kaidora.com, 1 @@ -60008,6 +59920,7 @@ funchal.ga, 1 funchal.gq, 1 funchal.pt, 1 +functionalmedicinetraining.com, 1 functions-online.com, 1 functionx.io, 1 functori.com, 1 @@ -60046,6 +59959,7 @@ fundraiseup.com, 1 fundraisingbox.com, 1 funds.ddns.net, 1 +fundsincourt.vic.gov.au, 1 fundwave.com, 1 funenhobby.nl, 1 funeral-doom.tk, 1 @@ -60238,7 +60152,6 @@ furniture-warehouse.co.za, 1 furnitureconcept.co.uk, 1 furniturefashion.com, 1 -furnitureforlife.com, 1 furnitureforlifeboulder.com, 1 furnitureplustt.com, 1 furnitureproduction.tk, 1 @@ -60249,6 +60162,7 @@ furoretferrum.tk, 1 furosemide-lasix.tk, 1 furosemide.gq, 1 +furrerhugi.ch, 1 furries.fun, 1 furries.id, 1 furry.codes, 1 @@ -60306,6 +60220,8 @@ fusionas.tk, 1 fusionauth.io, 1 fusionbd.net, 1 +fusioncx.com, 1 +fusiondelave.com, 1 fusiondiagnostics.in, 1 fusionespeluqueria.es, 1 fusionfacades.co.uk, 0 @@ -60316,7 +60232,6 @@ fusionplatter.eu, 1 fusions.co.jp, 1 fusionstudios.tk, 1 -fusiontaxes.com, 1 fuso.net, 1 fussball.pt, 1 fussballmanager.de, 1 @@ -60427,6 +60342,7 @@ fuzenet.net, 1 fuzigames.com, 1 fuzion.co.th, 1 +fuzoku-h.com, 1 fuzoku-sodan.com, 1 fuzoku.jp, 1 fuzzbucket.tk, 1 @@ -60439,7 +60355,8 @@ fvdm.com, 1 fveevaete.com, 1 fvg.io, 1 -fvr-concept.be, 0 +fvledilizia.it, 1 +fvr-concept.be, 1 fw-einsatz.de, 1 fwaux.de, 1 fwba.hopto.org, 1 @@ -60501,7 +60418,6 @@ fxcmvn.com, 1 fxcmzh.com, 1 fxcmzhs.com, 1 -fxcopierpro.com, 1 fxembed.com, 1 fxeuropa.com, 1 fxexplained.co.uk, 1 @@ -60522,6 +60438,7 @@ fxstrategics.com, 1 fxtalk.cn, 0 fxtwitter.com, 1 +fxzj.com, 1 fydjbsd.cn, 1 fyers.in, 1 fyfywka.com, 1 @@ -60613,13 +60530,14 @@ g7campdavid.gov, 1 g7liveseafood.com.sg, 1 g7usa.gov, 1 -g82365.com, 1 g8energysolutions.co.uk, 1 g9297.co, 1 g9728.co, 1 +g9kingnine.xyz, 1 ga-digitazion.com, 1 ga-part.ru, 1 ga.fr, 1 +ga4wp.com, 1 gaaog.com, 1 gaasuper6.com, 1 gabaldon.eu, 1 @@ -60628,7 +60546,6 @@ gabare-loire.com, 1 gabbeh.jp, 1 gabby-online.tk, 1 -gabby.vn, 0 gabbyer.ga, 1 gabbyer.gq, 1 gabbyer.ml, 1 @@ -60736,6 +60653,7 @@ gafachi.com, 1 gafan.cf, 1 gaff-rig.co.uk, 1 +gafisa.com.br, 1 gaflooring.com, 1 gag101.com, 1 gaganenterprises.in, 0 @@ -60785,7 +60703,7 @@ gala.kiev.ua, 0 galabands.info, 1 galact.tk, 1 -galacticashirts.com, 1 +galacticmedallion.com, 1 galaksidot.tk, 1 galaktika-znakomstv.tk, 1 galaltosalento.it, 1 @@ -60816,6 +60734,7 @@ galaxy.edu.pe, 1 galaxyaudiobook.com, 1 galaxymedia.tk, 1 +galaxymusicpromo.com, 1 galaxyofebooks.com, 1 galaxypersonnel.com.au, 1 galaxyplex.tk, 1 @@ -60898,6 +60817,8 @@ galpsafetytalks-portal-preprod.azurewebsites.net, 1 galpsafetytalks-portal-production.azurewebsites.net, 1 galtelligence.com, 1 +galton.sk, 1 +galtonbrands.com, 1 galtonbrands.es, 1 galvincdn.com, 1 galvingao.com, 1 @@ -60932,7 +60853,7 @@ gamcore.com, 1 game-club.me, 1 game-designers.net, 1 -game-developers.org, 0 +game-developers.org, 1 game-dominion.tk, 1 game-files.net, 0 game-gentle.com, 1 @@ -60945,6 +60866,7 @@ game88play.com, 1 gameanalytics.com, 0 gameapexlegends.com, 1 +gameapps.hk, 1 gamebase.tk, 1 gamebillingcentre.com, 1 gamebits.net, 0 @@ -61036,8 +60958,8 @@ gamerkings.tk, 1 gamers-community.tk, 1 gamers-paradise.tk, 1 +gamers4funchannel.it, 1 gamersedge.tk, 1 -gamersgrill.com, 1 gamersheaven.tk, 1 gamerspawn.tv, 1 gamersplace.tk, 1 @@ -61106,7 +61028,6 @@ gaming.cz, 1 gamingaccessories.in, 1 gamingaktier.com, 1 -gamingalmanac.com, 1 gamingblogx.com, 1 gamingboard.eu, 1 gamingdirectory.com, 1 @@ -61157,9 +61078,10 @@ gandalfcz.tk, 1 gandalfservice.com, 1 gandhiashramsabarmati.org, 1 +gandioli.com, 1 gandmfamilydental.com, 1 gandmltd.co.uk, 1 -gandour.com, 1 +gandour.com, 0 gangbangs.tk, 1 ganggalbichler.at, 1 ganglioslinfaticos.com, 1 @@ -61174,6 +61096,7 @@ gannett-cdn.com, 1 gannettinnovation.com, 1 ganoderma4in1coffee.com, 1 +ganodermacoffee.com, 1 ganodermatiendaonline.com, 1 gansevoorthotelgroup.com, 1 gant.tk, 1 @@ -61224,12 +61147,12 @@ garbuszus.de, 1 garbuz.ga, 1 garcia-leplus.com, 1 -garciacarrion.com, 0 garciaconstruction.com, 1 garcialeplus.com, 1 garciam.gt, 1 garcity.com, 1 garco.co, 0 +gard.no, 1 garda-see.mobi, 1 gardarika.tk, 1 garden-land.ga, 1 @@ -61244,7 +61167,6 @@ gardengusto.ie, 1 gardeniaorganic.com, 1 gardeningchores.com, 1 -gardenofads.com, 1 gardenplantslife.com, 1 gardenroomsdirect.co.uk, 1 gardensuperstore.com.au, 1 @@ -61342,8 +61264,10 @@ gas-online.cz, 1 gas-proekt.tk, 1 gas.tn, 1 +gasar.com, 1 gasb87leaseaccounting.com, 1 gasbarkenora.com, 1 +gasdetect.com.br, 1 gasenergy.kz, 1 gasesdelaguajira.com, 1 gasfitermaipu.cl, 1 @@ -61353,7 +61277,6 @@ gashtline.ir, 1 gasigasy.mg, 1 gasinstallationsjohannesburg.co.za, 1 -gasiorek.com.pl, 1 gasketech.com.au, 1 gasmar.cl, 1 gasometria.com, 1 @@ -61396,6 +61319,7 @@ gate-tower-eye-clinic.com, 1 gate.sc, 1 gate2home.com, 1 +gate4you.com, 1 gatechhotel.com, 1 gategroup.com, 1 gatehub.net, 1 @@ -61415,6 +61339,7 @@ gatewayp.com, 1 gatewayplanning.org, 1 gatewaytire.com, 1 +gatewaytrust.org.uk, 1 gathegi.ga, 1 gatherling.com, 1 gatherthebride.com, 1 @@ -61464,7 +61389,6 @@ gaw.sh, 1 gay-jays.com, 1 gay-personal-ads.com, 1 -gay.com.co, 1 gay.systems, 1 gayanalysing.co.uk, 1 gayauthors.org, 1 @@ -61498,7 +61422,6 @@ gaytubec.com, 1 gayukai.net, 1 gaz-connect.ru, 1 -gaz-tarif-reglemente.fr, 1 gazapos.ga, 1 gazaryan.tk, 1 gazbit.ru, 1 @@ -61564,10 +61487,8 @@ gc.ru.net, 1 gc4hr.org, 1 gcaccountants.co.nz, 1 -gcaresolutions.com, 1 gcautodeals.com, 1 gcc-globalclimatechange.com, 1 -gcchelp.com, 1 gcclsa.org, 1 gcdamp.gov, 1 gcfadvisors.com, 1 @@ -61575,6 +61496,7 @@ gchp.ie, 0 gchq.wtf, 1 gclegal.com.au, 0 +gclpower.com, 1 gcmrc.gov, 1 gcmsnotes.com, 1 gcmsnotesrequest.ca, 1 @@ -61606,7 +61528,6 @@ gdacs.org, 1 gdandb.com, 1 gdax.com, 1 -gdb.re, 1 gdba.com, 1 gddzqg.com, 1 gdefilm.com, 1 @@ -61619,7 +61540,6 @@ gdkn0.gq, 1 gdm.cl, 1 gdngs.de, 1 -gdoce.es, 0 gdomusicaeventi.tk, 1 gdpr-pohotovost.cz, 1 gdpr.fr, 1 @@ -61629,6 +61549,7 @@ gdtd.info, 0 gdtw.org, 1 gdufe.top, 1 +gdwtowbars.com, 1 gdz.tv, 1 gdz4you.com, 1 ge1.me, 0 @@ -61658,6 +61579,7 @@ gearset.com, 1 gearsupply.com, 0 geaskb.nl, 0 +geasrl.com.ar, 1 geass.xyz, 1 geauxdns.com, 1 geba-online.de, 1 @@ -61731,6 +61653,7 @@ geekport.net, 1 geekpost.net, 1 geeks.berlin, 1 +geeks.gay, 1 geekscircuit.com, 1 geekshirts.cz, 1 geeksontap.com.au, 1 @@ -61758,7 +61681,6 @@ geemprestimos.com, 1 geenspam.net, 1 geentsefeesten.be, 1 -geeq.ch, 1 geerdsen.net, 1 geertdegraaf.nl, 1 geertjanvanhest.nl, 1 @@ -61786,7 +61708,6 @@ geigr.de, 1 geilefrauen.pics, 1 geileverhalen.tk, 1 -geilmail.de, 1 geipert.eu, 1 geiriadur.ac.uk, 1 geiser-family.ch, 1 @@ -61794,6 +61715,7 @@ geislingen.de, 1 geisten.net, 1 geitenijs.com, 1 +geitex.com, 1 gekko.tk, 1 gekkoldprom.ru, 1 gekleurdverleden.be, 1 @@ -61808,7 +61730,6 @@ gelderlander.nl, 1 geldmaat.nl, 1 geldoderleben.tk, 1 -geldspelletjes.net, 1 geldteveel.eu, 1 geldvoorelkaar.nl, 1 geleenbeekdal.nl, 1 @@ -61868,12 +61789,12 @@ gemonite.com, 1 gemooi.com, 1 gemquery.com, 1 +gemsen.com, 1 gemstn.com, 1 gemstones.com, 1 gemwerx.com, 1 gen.cn.eu.org, 1 gen.net.eu.org, 1 -gen3marketing.com, 1 gen53.org, 1 genbars.jp, 1 genbrugge.tk, 1 @@ -61924,13 +61845,11 @@ general-directorate-of-administration.gov.lb, 1 general-insurance.tk, 1 generalassemb.ly, 1 -generalautocheck.com, 1 generalcustomshop.com.br, 1 generali-investments-portal.cz, 1 generali-worldwide.com, 1 generalinsuranceagencies.com.au, 1 generalinsuranceservices.com, 1 -generalitravelinsurance.com, 1 generalliabilityinsure.com, 1 generalpsych.cf, 1 generalshale.com, 1 @@ -62049,7 +61968,6 @@ genome.eu, 1 genome.gov, 0 genomedia.jp, 1 -genomelink.io, 1 genomequestlive.com, 1 genomereference.org, 1 genomesoft.systems, 1 @@ -62151,6 +62069,7 @@ genutax.ca, 1 genuxtsg.com, 1 genxreviewest.ga, 1 +genyo.com.br, 1 genz.co.nz, 1 genzia.ga, 1 geo-bohr.de, 1 @@ -62160,7 +62079,6 @@ geo-portale.it, 1 geo-television.de, 1 geoactivism.org, 1 -geoapps.nl, 1 geoarchive.tk, 1 geocaching.hu, 1 geocar.com, 1 @@ -62194,6 +62112,7 @@ geographique.tk, 1 geography-schools.com, 1 geohashing.site, 1 +geohunt-tokyo.com, 1 geoinformation.com, 1 geoip-js.com, 1 geoip.fedoraproject.org, 1 @@ -62240,7 +62159,6 @@ georgecolgrove.com, 1 georgecushen.com, 1 georgedesign.ch, 1 -georgefilgate.com, 1 georgegachara.tk, 1 georgeh005.one, 1 georgehotz.tk, 1 @@ -62329,7 +62247,6 @@ gerardmccabe.com.au, 1 gerardozamudio.mx, 1 gerardpropertygroup.com, 1 -gerardroofnet.eu, 1 gerards-abenteuer.de, 1 gerbang-singkolo.ga, 1 gerber-construction.com, 1 @@ -62363,6 +62280,9 @@ germaniumsoft.com, 1 germanmasterpainters.nz, 1 germanophobia.tk, 1 +germanpavilion.com, 1 +germanpay.com, 1 +germanpest.pro, 1 germanrhymes.de, 1 germanrojas.ga, 1 germantolobis.lt, 1 @@ -62370,6 +62290,8 @@ germantownwi.gov, 1 germantrip.tk, 1 germanyague.com, 1 +germanymade.com, 1 +germanypay.com, 1 germanytravel.ga, 1 germanytravelguide.ml, 1 germfr.ee, 1 @@ -62389,6 +62311,7 @@ gerteis.com, 1 gertjan-tamerus.tk, 1 gertrudentor.de, 1 +geruestbau-grupp.de, 1 gerum.dynv6.net, 0 gerwinvanderkamp.nl, 1 gesamenvat.nl, 1 @@ -62416,7 +62339,6 @@ gestaoclub.com.br, 1 gestcoelho.com, 1 gestion-optimum.com, 1 -gestionadministrativevirtuelle.ca, 1 gestionaleamica.com, 1 gestione-certificazioni.it, 1 gestionth.com, 1 @@ -62441,6 +62363,7 @@ get-your-business.tk, 1 get.gov, 1 get.how, 1 +get2career.com, 1 get2mod.com, 1 getabear.com, 1 getacrane.co.uk, 1 @@ -62461,6 +62384,7 @@ getbalitour.com, 1 getbellhop.co, 1 getboomerangwater.com, 1 +getboost.social, 1 getbootstrap.com, 1 getboubou.com, 1 getbox.me, 1 @@ -62476,6 +62400,7 @@ getcancer.net, 1 getcare.com, 1 getcarina.com, 1 +getcerta.com, 1 getchip.cc, 1 getcleanworx.co.uk, 1 getcloak.com, 1 @@ -62558,7 +62483,7 @@ getment.io, 1 getmerch.eu, 1 getmimo.com, 0 -getmojito.com, 1 +getmojito.com, 0 getmonero.cz, 1 getmybosslife.com, 1 getmylink.online, 1 @@ -62572,7 +62497,6 @@ getnexar.com, 1 getnib.com, 1 getnikola.com, 1 -getontop.club, 1 getonyx.com, 1 getoxley.com, 1 getpagespeed.com, 1 @@ -62612,7 +62536,6 @@ getsimone.online, 1 getsmartcue.com, 1 getsmartlife.in, 1 -getsmileapi.com, 1 getsomemaction.com, 1 getspaces.com, 1 getsprout.co, 1 @@ -62635,8 +62558,8 @@ getticker.com, 1 gettingsmarteraboutthesmartgrid.org, 1 gettingtvers.ga, 1 -gettodoing.com, 1 gettopquality.com, 1 +gettrust.com, 1 getts.ro, 1 getts.shop, 1 gettwo.ml, 1 @@ -62650,6 +62573,7 @@ getwashed.net, 1 getwatchy.com, 1 getwemap.com, 1 +getword.com, 1 getwork.tk, 1 getworkshopmanuals.com, 1 getwsodo.com, 1 @@ -62697,7 +62621,6 @@ gezginsolar.com, 1 gezinnenhilton.com, 1 gezondetips.nl, 0 -gezondheidscentrumkoolhoven.nl, 1 gezondheidszorg-ict.nl, 1 gezondheidszorg-it.nl, 1 gf-franken.de, 1 @@ -62708,7 +62631,6 @@ gfahnen.de, 1 gfairchild.com, 1 gfast.ru, 1 -gfc.scot, 1 gfcleisure.co.uk, 1 gfcnieuws.com, 1 gfcorp.jp, 1 @@ -62728,7 +62650,6 @@ gfoss.gr, 1 gfourmis.co, 1 gfournier.ca, 1 -gfox.hu, 0 gfpress.it, 1 gfrevenge.com, 1 gfronline.tk, 1 @@ -62751,6 +62672,7 @@ gg9728.co, 1 ggb.world, 1 ggchamber.com, 1 +ggcp.com, 1 ggddrenthe.nl, 1 ggdrop.com, 1 ggdrop.top, 1 @@ -62880,7 +62802,6 @@ gianproperties.com, 1 giant-panda.com, 1 giant-tortoise.com, 1 -giantleap.tech, 1 giantmagellan.org, 1 giantratesers.ga, 1 giantratesest.ga, 1 @@ -62903,6 +62824,7 @@ giardiniere.roma.it, 1 giardinoperfetto.com, 1 giat-infotech.com.my, 1 +giatrakos.com, 1 gibabertin.com, 1 gibberfish.org, 1 gibbon.tk, 1 @@ -62931,6 +62853,7 @@ giebel.it, 1 giedrioukis.lt, 1 gielectrical.com.au, 0 +giemsa.com, 1 gierds.de, 1 gieschke.de, 1 giesela.io, 1 @@ -62939,9 +62862,7 @@ gif.tips, 0 gifbook.io, 1 giff.com.mx, 1 -giffard.com, 1 gifhelittlestars.co.uk, 1 -gifini.com, 1 gifsonline.tk, 1 gift.me, 1 gift4ever.tk, 1 @@ -63004,6 +62925,7 @@ gigatron.tk, 1 gigawa.lt, 1 gigawattz.com, 1 +gigaway.com, 1 giggear.com.au, 1 gigharborsound.com, 1 gigharborwa.gov, 1 @@ -63017,9 +62939,9 @@ gigwise.com, 1 giigle.cf, 1 gijonshiro.tk, 1 +gikids.org, 1 gikovatelojavirtual.com.br, 1 gil.gg, 1 -gil.re, 1 gilandrad.tk, 1 gilangcp.com, 1 gilbert-schmalriede.de, 1 @@ -63055,6 +62977,7 @@ giltedge.travel, 1 gim-app.tk, 1 gim.ac.in, 1 +gimahhot.com, 1 gimbal.ca, 1 gimme.money, 1 gimmickbots.com, 1 @@ -63074,8 +62997,8 @@ ginecomastiatratamento.com.br, 1 ginen.xyz, 0 ginepolice.gov, 1 +ginesenergy.com, 1 ginev.tk, 1 -gingerray.co.uk, 1 gingersutton.com, 1 gingerxumd.com, 1 ginionusedcars.be, 0 @@ -63086,6 +63009,7 @@ ginosfiredup.ca, 1 ginospizza.com, 1 gintaresdental.lt, 1 +gintian.com, 1 gintonic.tk, 1 ginv.us, 1 ginx.tv, 1 @@ -63101,6 +63025,7 @@ giomi.com.tr, 1 gion-ent.co.jp, 1 giopiu.it, 1 +giordan.com, 1 giordano.com, 1 giordanomultiservice.it, 1 giorgi.us, 1 @@ -63124,6 +63049,7 @@ gippert-klein.de, 1 gipsplitka.ru, 1 gipuzkoabasket.tk, 1 +giradiscos.com, 1 giraffe.net, 1 giraffeduck.com, 1 giraffenland.de, 1 @@ -63172,6 +63098,7 @@ girsedesign.de, 1 girskii.com, 1 girtby.net, 1 +giryatrija.hr, 1 gis.ee, 1 gisa.gv.at, 1 gisac.org, 1 @@ -63316,7 +63243,6 @@ gkoenig-innenausbau.de, 1 gkralik.eu, 1 gkrru4v.xyz, 1 -gks-bildung.ch, 1 gkstyle.net, 0 gku-winterling.de, 1 gkv-gorinchem.nl, 1 @@ -63361,6 +63287,8 @@ glamur-video.com, 1 glanzodergarnicht.com, 0 glas-systeme.eu, 1 +glascentro-gmbh.de, 1 +glascentro.de, 1 glasdon.com, 1 glase.shop, 1 glasengel.de, 1 @@ -63376,7 +63304,6 @@ glass.google.com, 1 glass.photo, 1 glassact.com, 1 -glassboxtech.com, 0 glasschmuck-millefiori.de, 1 glasscometro.com.au, 1 glassellparkschool.org, 0 @@ -63400,6 +63327,7 @@ glasswall.com, 1 glassworld.tk, 1 glaston.com, 1 +glastuershop24.de, 1 glaswerk-mellenbach.de, 1 glaswolsite.tk, 1 glattbach.de, 1 @@ -63410,6 +63338,7 @@ glavny-yurist.ru, 1 glavred.info, 0 glazedmag.fr, 1 +glazenschuifwandenoutlet.nl, 1 glazkova.ga, 1 glbaumaulwurf.de, 1 glbins.com, 1 @@ -63418,6 +63347,7 @@ gld.re, 1 gle, 1 gleam.tk, 1 +glean.com, 1 gleanview.com, 1 glebov.tk, 1 gleesongs.tk, 1 @@ -63474,12 +63404,12 @@ glitchcity.wiki, 1 glitchcomic.tk, 1 glitched.online, 1 +glitery.com, 1 glitterblast.uk, 1 glitteringmariah.tk, 1 glitzerstuecke.de, 1 glitzybingo.co.uk, 1 glixee.com, 1 -glk.academy, 1 glm.io, 1 glnpo.gov, 1 global-assistance.eu, 1 @@ -63490,6 +63420,7 @@ global-factory.co.jp, 1 global-fh.com, 1 global-monitoring.com, 1 +global-motherboard.com, 1 global-qanoon.gq, 1 global-scg.org, 1 global-topsecret.tk, 1 @@ -63596,13 +63527,13 @@ globalseo.ga, 1 globalseo.ml, 1 globalseostrategy.com, 1 +globalservice-am.com.br, 1 globalservice.co.id, 1 globalshippinglimited.ga, 1 globalsign.com.ru, 1 globalspeed.tk, 1 globalstrategygroup.com, 1 globalstrike.tk, 1 -globalsupermarketnews.com, 1 globalthermoforming.com, 1 globalthinktank.org, 1 globaltiendat.com, 1 @@ -63671,6 +63602,7 @@ gloriaavina.com, 1 gloriousfoods.co.uk, 1 gloryhealthcarellc.com, 1 +glorymark.com, 1 glorynonprofit.org, 1 gloryofloveband.tk, 1 gloryofmusic.tk, 1 @@ -63691,6 +63623,7 @@ glotwpnjpd.gov, 1 gloucesterva.gov, 1 glovementor.com, 1 +gloverscast.co.uk, 1 glowfic.com, 1 glpreparation.com, 1 glreit.com, 1 @@ -63700,7 +63633,7 @@ gluechapter.ga, 1 glueck-im-norden.de, 1 gluecksgriff-taschen.de, 1 -glueckskindter.de, 1 +glueckskindter.de, 0 gluecksmomente.boutique, 1 gluek.info, 1 glueup.com, 1 @@ -63708,6 +63641,7 @@ gluit.de, 1 glumac.com, 1 glumcasaepet.com.br, 1 +glutenfreeandtasty.com, 1 glutenfreehomemaker.com, 1 glutenfreelife.co.nz, 1 glutenfreeonashoestring.com, 1 @@ -63720,6 +63654,7 @@ glykofridis.nl, 1 glyph.ws, 1 glyphobet.net, 1 +glyphosat.com, 1 glyptodon.com, 1 glyptoteket.com, 0 glz-egg.de, 1 @@ -63730,11 +63665,11 @@ gm207.com, 0 gm5.com.br, 1 gmaetk.com, 1 +gmageorgia.com, 1 gmail, 1 gmail.com, 0 gman.bot, 1 gmanlabs.com, 1 -gmanukyan.com, 1 gmao.com, 1 gmasil.de, 1 gmavsg.org, 1 @@ -63772,7 +63707,7 @@ gmta.nl, 1 gmtelectrical.com.au, 1 gmtm.com, 1 -gmtplus.co.za, 1 +gmtplus.co.za, 0 gmuh.fr, 0 gmv.com, 1 gmw-hannover.de, 1 @@ -63833,6 +63768,7 @@ gnzsnz.com, 1 go-away.xyz, 1 go-cqhttp.org, 1 +go-datasecurity.de, 1 go-dove.com, 1 go-down.tk, 1 go-embedded.de, 1 @@ -63852,8 +63788,10 @@ go.microsoft.com, 1 go.ne, 1 go2archive.nl, 1 +go2biz.com, 1 go2mob.tk, 1 go2sh.de, 1 +go2store.com, 1 go2ubl.nl, 1 go4games.ro, 0 go4it.ro, 0 @@ -63874,18 +63812,18 @@ goanalyse.co.uk, 1 goang.com, 1 goapunks.net, 0 -goarnlms.org, 1 goarsmarket.com, 1 goatbot.xyz, 1 goatbots.com, 1 goathub.io, 0 goatlord.tk, 1 goatstore.ca, 1 +goaudits.com, 1 gobarrelroll.com, 1 gobebra.com, 1 gobeline.com, 1 gobetweenfilms.com, 1 -gobeyond.ai, 1 +gobeyond.ai, 0 gobi.tk, 1 gobiernousa.gov, 1 goblintears.com, 1 @@ -63893,7 +63831,6 @@ gobouncy.com, 1 gobrec.cz, 1 gobsn.com, 1 -gobugfree.com, 1 gobus.ee, 1 gobytedesign.uk, 1 gocar.ie, 1 @@ -63907,7 +63844,6 @@ gockelsee.de, 1 gockhuatsuky.tk, 1 goclark.at, 1 -gocleanandsafe.nz, 1 goclinic.com.br, 1 goclix.ml, 1 goconow.com, 1 @@ -63921,6 +63857,7 @@ godark.uk, 1 godating.tk, 1 godaxen.tv, 1 +godblessus.com, 1 godbo9.com, 0 godclan.hu, 1 goddamnwinnebago.com, 1 @@ -63936,6 +63873,7 @@ godish.com, 1 godles.pl, 1 godlovechristchurch.com, 1 +godloveme.com, 1 godmusicapp.com, 1 godnathistorie.dk, 1 godns.ru, 1 @@ -63957,7 +63895,6 @@ godswila.be, 1 godswill.tk, 1 godwithusalinaitwefoundation-ugandalimited.com, 1 -godyo.com, 1 godzillaencastellano.tk, 1 goecart.net, 1 goecomp.com, 1 @@ -64003,6 +63940,7 @@ goforward.ee, 1 gofree.co, 1 gofriends.cf, 1 +gofront.com, 1 gofundhourly.tk, 1 gofundme.com, 1 goge.ml, 1 @@ -64014,6 +63952,7 @@ gogleapis.com, 1 gogo.mn, 1 gogocarto.fr, 1 +gogocharters.com, 0 gogoguest.com, 1 gogolino.tk, 1 gogomail.ga, 1 @@ -64024,9 +63963,7 @@ gogs.ca, 1 gogsat.com, 1 gogu.ma, 1 -goguarded.com, 1 gohanrecords.tk, 1 -gohhaksu.sg, 1 gohin.org, 1 gohon.org, 1 gohongi-clinic.com, 1 @@ -64077,14 +64014,13 @@ goldcoastplumbingcompany.com.au, 1 goldcreek.tk, 1 golddealer.com, 1 +golddeer.com, 1 golden-earring.nl, 1 golden-kamuy.com, 1 golden-sea.tk, 1 goldenage.tk, 1 goldenagefoundation.tk, 1 goldenbadger.de, 0 -goldenbelt-desa.biz, 1 -goldenbelt.biz, 1 goldenberg.tk, 1 goldenblacknutra.com, 0 goldencavalier.com, 1 @@ -64095,12 +64031,15 @@ goldendogs.tk, 1 goldeneggs.club, 1 goldeneyesantafe.com, 1 +goldenfashion.co.za, 1 +goldenfawz.com, 1 goldengatexpress.org, 1 goldenglow.fans, 1 goldenhillsoftware.com, 1 goldenhost.ca, 1 goldenhouse.ga, 1 goldeninvestmentbarcelona.com, 1 +goldenjoy.com, 1 goldenkeys.io, 1 goldenmunchbakeshop.com, 1 goldenoaksgolfclub.com, 1 @@ -64110,9 +64049,7 @@ goldenretrieverspets.com, 1 goldenruleemail.com, 1 goldenshiny.com, 1 -goldenstatefire.com, 1 goldenstatetrailers.com, 1 -goldensunmfg.com, 1 goldentech.ca, 1 goldentechelectronics.net, 1 goldentip.cf, 1 @@ -64129,14 +64066,17 @@ goldfingermusic.tk, 1 goldfm1031.tk, 1 goldfmromania.ro, 1 +goldhabour.com, 1 goldheartassembly.com, 1 goldhill.ml, 1 +goldkid.com, 1 goldkrupp.com, 1 goldloeckchen159.net, 1 goldmanpropertygroup.com, 1 goldminer.ga, 1 goldpreisfinder.at, 1 goldregen.net, 1 +goldround.com, 1 goldrushenergy.com, 1 goldschmiede-suessenguth.de, 1 goldsilver.org.ua, 1 @@ -64152,6 +64092,7 @@ goldwater.gov, 1 goldwaterfoundation.gov, 1 goldwaterscholarship.gov, 1 +goldwish.com, 1 goldysoptic.bg, 1 goldytechspecialists.com, 1 goldzilla.eu, 1 @@ -64175,6 +64116,7 @@ golfcabrio.de, 1 golfcartrentals.gr, 1 golfcarttips.com, 0 +golfcastillayleon.com, 1 golfcleanerers.ga, 1 golfcleanerest.ga, 1 golfcleanersers.ga, 1 @@ -64233,6 +64175,7 @@ gommers.org, 1 gommista.roma.it, 1 gomods.link, 1 +gomoon.com, 1 gomorrabeach.tk, 1 gomovein.com, 1 gomtz.gq, 1 @@ -64257,6 +64200,7 @@ gongjuhao.com, 1 gongyouhui.com, 1 gonitro.com, 0 +gonlinesites.com, 1 gonoodle.com, 1 gonortheast.co.uk, 1 gontagro.com.ua, 1 @@ -64272,28 +64216,35 @@ good-cd.ml, 1 good-course.ga, 1 good-know.gq, 1 -good-life-pt.com, 1 good-linux.cf, 1 good-luck3500.ga, 1 good-wishes-4-u.ga, 1 gooday.life, 1 +goodbargin.com, 1 goodbeast.com, 1 +goodbenefit.com, 1 goodbits.tech, 1 goodbriar.com, 1 +goodcarbons.com, 1 goodchoiceflowers.com, 1 +goodcoat.com, 1 +goodcollection.com, 1 gooddatingsites.ml, 1 gooddayatwork.co.uk, 1 -gooddomain.co, 1 gooddomain.com, 1 gooddomainna.me, 1 goodearth.com.tw, 1 +goodeditor.com, 1 goodees.com, 1 goodenglish.ga, 1 +goodenvironment.com, 1 goodesign.su, 1 +goodface.com, 1 +goodfame.com, 1 +goodfarm.com, 1 goodfarms.com, 1 goodfeels.net, 1 goodfundsgateway.com, 1 -goodfundslending.com, 1 goodhealthgateway.com, 1 goodhopemedical.com, 1 goodhotel.co, 1 @@ -64315,7 +64266,9 @@ goodold.se, 1 goodopportunity.ga, 1 goodpeople.tk, 1 +goodproof.com, 1 goodryb.top, 1 +goodschain.com, 1 goodseed.nl, 1 goodsex4all.com.br, 1 goodsey.com, 1 @@ -64326,6 +64279,7 @@ goodsrepublic.com, 1 goodstories.fr, 1 goodsync.com, 1 +goodteach.com, 1 goodth.ink, 1 goodtotell.nl, 1 goodtrader.tk, 1 @@ -64336,7 +64290,9 @@ goodwillnfp.org, 1 goodwillnne.org, 1 goodwin43.ru, 0 +goodydoggy.com, 1 goodyearsotn.co.uk, 1 +goodyphotography.com, 1 goofy.gr, 1 google, 1 google-analytics.com, 1 @@ -64366,6 +64322,7 @@ gooodnews.ga, 1 goooo.info, 1 goorm.io, 1 +gooseberries.ch, 0 goosecreeksc.gov, 1 goosementor.com, 1 goosepondfarm609.com, 1 @@ -64404,6 +64361,7 @@ gorbilet.com, 1 gorbov.tk, 1 gorby.tk, 1 +gorce.com, 1 gorchakov.org, 1 gordas.cf, 1 gordeijnsbouw.nl, 1 @@ -64548,6 +64506,7 @@ gotoexam.tk, 1 gotohomerepair.com, 1 gotolinux.ru, 1 +gotomap.com, 1 gotomi.info, 0 gotomojo.com, 1 gotonet.tk, 1 @@ -64557,14 +64516,12 @@ gotovilekovi.tk, 1 gotovka.ga, 1 gotovka.tk, 1 -gotowebstore.com, 1 gotoxy.at, 1 gotoyoume.info, 1 gotpainarizona.com, 1 gotrail.fr, 1 gotravel.blog, 1 gotravel.us, 1 -gotravelmexico.com.mx, 1 gotreaux.com, 1 gotrek.com.au, 1 gotrendier.com.co, 1 @@ -64597,10 +64554,13 @@ gourmetspalencia.com, 1 gourmetstars.cz, 1 gourmetvitamins.ga, 1 +goushuang.com, 1 gousto.co.uk, 1 goutsmits-tegelwerken.nl, 1 +goutui.com, 1 gouvernement.ga, 1 gouwdata.nl, 0 +gouwen.com, 1 gov-online.go.jp, 1 gov.exposed, 1 gov.md, 1 @@ -64618,7 +64578,6 @@ govet.international, 1 govgrants.au, 1 govindagiri.tk, 1 -govinfosecurity.com, 1 goviralnow.ml, 1 govloans.gov, 1 govmi.gov, 1 @@ -64652,6 +64611,7 @@ gowv.com, 1 goxyshuk.duckdns.org, 0 goyahkles-spirit-to.tk, 1 +goyoyo.com, 1 goz.net.tr, 1 goz.tr, 1 gozenhosting.com, 1 @@ -64665,7 +64625,7 @@ gpcmicro.com, 1 gpcp.org, 1 gpcs.ml, 1 -gpcsolutions.fr, 1 +gpcsolutions.fr, 0 gpdp.it, 0 gpfclan.de, 1 gpforum.tk, 1 @@ -64696,6 +64656,7 @@ gps4net.com, 1 gps4net.eu, 1 gpsarena.ro, 1 +gpsbag.com, 1 gpsblackbox.com, 1 gpsfix.cz, 1 gpskoordinaten.de, 1 @@ -64716,6 +64677,7 @@ gpwmd-portal.org, 1 gpz500s.tk, 1 gq-magazine.co.uk, 1 +gqms.com, 1 gqyyingshi.com, 0 gr.pn, 1 gr.search.yahoo.com, 0 @@ -64744,7 +64706,6 @@ gracedonors.com, 1 gracefuljourneys.ca, 1 graceharborapps.net, 1 -gracehousecall.ae, 1 gracelawoffice.com, 1 graceradio.tk, 1 gracereminder.com, 1 @@ -64793,7 +64754,6 @@ grafia.ink, 1 graficaboavista.com.br, 1 graficagesa.com.br, 1 -graficasantana.com.br, 1 graficoywebvalencia.tk, 1 grafik.gq, 1 grafimagenpublicidad.com, 1 @@ -64805,7 +64765,6 @@ grafologia.tk, 1 grafos.ml, 1 grafoterapia.tk, 1 -grafphoto.com, 1 graft.community, 1 graft.spb.ru, 1 grafton9.net, 1 @@ -64843,6 +64802,7 @@ grammarcheck.net, 1 grammarhouse.me, 0 grammofono.gr, 0 +grampage.ru, 1 gramtarang.org.in, 1 gran-hermano.tk, 1 grana.top, 1 @@ -64887,15 +64847,16 @@ grandfootball.tk, 1 grandhomemx.com, 1 grandhotelbrno.cz, 1 +grandhoteltynemouth.co.uk, 1 grandi-books.gq, 1 grandiegames.com, 1 grandisco.tk, 1 grandiscontionline.com, 1 grandislandne.gov, 1 grandislevt.gov, 1 -grandkidsmatter.org, 1 grandmarine.es, 1 grandmasfridge.org, 0 +grandmass.com, 1 grandmasternetwork.com, 1 grandmusiccentral.com.au, 1 grandpachy.tk, 1 @@ -64914,6 +64875,7 @@ grandviewgynecology.ca, 1 grandviewheights.gov, 1 grandwailea.com, 1 +grandwill.com, 1 grandworldnghiduong.com, 0 granfort.es, 0 granfutbol.com, 1 @@ -64963,6 +64925,7 @@ grantsmasters.com, 1 grantsolutions.gov, 1 granttwpstclairmi.gov, 1 +granulate.io, 1 graonatural.com.br, 0 grape33.com, 1 grapee.jp, 1 @@ -64972,6 +64935,8 @@ graph.org, 1 graphe.gq, 1 graphene.software, 1 +graphenecompany.com, 1 +grapheneenergy.com, 1 grapheneengine.com, 1 grapheneos.ca, 1 grapheneos.com, 1 @@ -64981,9 +64946,9 @@ grapheneos.org, 1 grapheneos.ovh, 1 grapheneos.social, 1 +graphenepower.com, 1 graphic-schools.com, 1 graphic-shot.com, 0 -graphicalsystemsusa.com, 1 graphicatwork.com, 1 graphicaudio.net, 1 graphicbuffet.co.th, 1 @@ -65001,6 +64966,7 @@ grapholio.net, 1 graphpaper.studio, 1 graphviewer.tk, 1 +grapixo.com, 1 grapplinginsider.com, 1 grasboom35plus.nl, 1 grasdealer.com, 1 @@ -65039,6 +65005,7 @@ grattecenne.com, 1 gratuitweb.tk, 1 graumeier.de, 1 +gravat.ar, 1 gravatar.com, 1 gravedad-zero.tk, 1 gravedigger.tk, 1 @@ -65057,7 +65024,6 @@ gravitational.co, 1 gravitational.com, 1 gravitational.io, 1 -gravitco.com, 1 gravitechthai.com, 1 gravitlauncher.ml, 1 graviton.work, 1 @@ -65065,6 +65031,8 @@ gravity-inc.net, 1 gravityformspdfextended.com, 1 gravityinvestments.com, 1 +gravitylab.fr, 0 +gravityledger.com, 1 gravitypdf.com, 1 gravityresearchgroup.cf, 1 gravityresearchgroup.ga, 1 @@ -65075,6 +65043,7 @@ gray.network, 1 grayarrow.com, 1 graycat.ml, 1 +graydaze.com, 1 grayduck.mn, 1 grayhatter.com, 1 grayingrainbows.com, 1 @@ -65246,6 +65215,7 @@ greengorych.io, 1 greengov.gov, 1 greengrocery.tk, 1 +greenhandy.com, 1 greenhats.de, 1 greenhillhosting.com, 1 greenholiday.tk, 1 @@ -65254,6 +65224,7 @@ greeningsremovalsandstorage.co.uk, 1 greenislandgroupny.com, 1 greenislemn.gov, 1 +greenit.eco, 0 greenkey.gent, 1 greenkitchen.tk, 1 greenlakecountywi.gov, 1 @@ -65310,9 +65281,7 @@ greentea.gq, 1 greentea.ml, 1 greentea.tk, 1 -greentechhvac.in, 1 greenthought.tk, 1 -greentitleagent.com, 1 greentop.tk, 1 greenupchdky.gov, 1 greenux.cloud, 1 @@ -65339,7 +65308,6 @@ greetica.com, 1 greetingcdsers.ga, 1 greetingcdsest.ga, 1 -greffierguide.xyz, 1 greg-gaar.com, 1 greg.red, 1 gregans.ie, 1 @@ -65354,7 +65322,6 @@ gregmarziomedia.com, 1 gregmc.ru, 1 gregmckeown.com, 1 -gregmcleod.com, 1 gregmilton.com, 1 gregmilton.org, 1 gregmiraglia.com, 1 @@ -65420,6 +65387,7 @@ greyheads.cat, 0 greyline.tk, 1 greymatteroffline.tk, 1 +greymouthkiwi.co.nz, 1 greymuzzlemanor.org, 1 greypanel.com, 1 greyrectangle.com, 1 @@ -65432,7 +65400,6 @@ greywolf.cz, 1 grfinefoods.co.uk, 1 grfnhousing.org, 1 -grg.de, 1 grh.am, 0 grhhosting.com, 1 grhotels.gr, 1 @@ -65496,7 +65463,6 @@ grindgore.tk, 1 grinmore.com, 1 grinned.tk, 1 -grinnellksroots.com, 1 grinnellplanes.com, 1 grinnellplans.com, 1 grinpis.tk, 1 @@ -65664,7 +65630,6 @@ growbydata.com, 1 growbyrabbit.com, 1 growcodile.com, 1 -growcredit.com, 1 growebmarketing.com, 0 growers.social, 1 growery.org, 1 @@ -65681,14 +65646,12 @@ growthandrenewal.ca, 1 growthbutton.in, 1 growthlab.com.my, 1 -growthlytics.co.uk, 1 growthoutpatient.com, 1 growthseedconsulting.com, 1 growthservicesinc.com, 1 growthsimulationest.ga, 1 growthtoysers.ga, 1 growthtoysest.ga, 1 -growwithdaylight.co.uk, 1 growy.ch, 0 grozdanov.tk, 1 grozny-news.net, 1 @@ -65759,8 +65722,10 @@ grupodecoroinhaspnsa.tk, 1 grupodepasajeros.tk, 1 grupodes.com.br, 1 +grupodesbrave.com.br, 1 grupoeitb.eus, 1 grupoellatu.tk, 1 +grupoentregas.com, 1 grupoeurodesign.com, 1 grupofarmavip.pt, 1 grupoharbour.com, 1 @@ -65768,6 +65733,7 @@ grupoicp.pt, 1 grupoimb.pt, 1 grupoiwana.tk, 1 +grupokls.com, 1 grupolegalsgf.com, 1 grupomacroex.com, 1 grupomanquecura.tk, 1 @@ -65803,7 +65769,6 @@ gruslic.org.mx, 1 gruveo.com, 1 gruver.de, 1 -gruz0.ru, 1 gruzchiki.ml, 1 gruzchiki74.tk, 1 gruzinfo.tk, 1 @@ -65817,6 +65782,7 @@ gryphzia.cf, 1 gryte.tk, 1 grzegorzchomutowski.pl, 1 +grzesiak.com, 1 gs-pflege.de, 1 gs-schlossberg.de, 1 gs93.de, 1 @@ -65861,9 +65827,9 @@ gspcreations.com, 1 gspilar.tk, 1 gsplast.com, 1 +gsrank.org, 1 gsrc.io, 1 gst.name, 1 -gst.priv.at, 1 gstackrankers.com, 1 gstehlik.com, 1 gstrans.bg, 1 @@ -65875,16 +65841,17 @@ gt14.com, 1 gt14.com.br, 1 gta-arabs.com, 1 +gta.to, 1 +gta.vi, 1 gta5modaz.com, 1 gta5redux.com, 1 gtacoop.com, 1 gtacty.co, 1 gtaforum.nl, 1 gtagames.nl, 1 -gtalenders.ca, 1 +gtalenders.ca, 0 gtanalytics.com, 1 gtapg.net, 1 -gtarestoration.com, 1 gtb-nsn.gov, 1 gtbeyes.com, 1 gtbgames.com, 1 @@ -65905,7 +65872,7 @@ gtonline.ml, 1 gtopala.com, 1 gtowizard.com, 1 -gtreasury.com, 1 +gtrtc.com, 1 gtrwebdesign.nl, 0 gts-tradgard.se, 1 gts-varmepumpar.se, 1 @@ -65916,6 +65883,7 @@ gtupgrade.eu, 1 gtxmail.de, 1 gtxthere.tk, 1 +gtzq.com, 1 gu153gx.uk, 1 guachinchestenerife.com, 1 guadagnare.info, 1 @@ -65929,6 +65897,7 @@ guamcourts.gov, 1 guanggaonet.com, 1 guangjiangk.com, 1 +guangquan.com, 1 guanzhong.ca, 1 guapcoinswap.finance, 1 guapi.ml, 1 @@ -65944,8 +65913,10 @@ guardiabermellon.tk, 1 guardian-codex.tk, 1 guardian-heliotrope.tk, 1 +guardian360.nl, 1 guardianangelportraits.com, 1 guardianapp.com, 1 +guardiancappartners.com, 1 guardiancodewebservices.com, 1 guardiancross-forum.com, 1 guardiandigital.com, 1 @@ -66086,9 +66057,11 @@ guilded.gg, 1 guildgearscore.cf, 1 guildnet.tk, 1 +guildofbookworkers.org, 1 guilfordct.gov, 1 guilfordian.com, 1 guilfordvt.gov, 1 +guilhom.com, 1 guillaume-briand.fr, 1 guillaumecote.me, 1 guillaumematheron.fr, 1 @@ -66158,11 +66131,11 @@ gunauc.net, 1 gunbot.com, 1 gunbroker.com, 1 +guncreed.com, 1 gundemguncel.tk, 1 gunerds.com.br, 1 gunfighterj.com, 1 gunghoworks.jp, 1 -gunhunter.com, 1 guninstructionsers.ga, 1 guninstructionsest.ga, 1 gunisifiyatlari.com, 1 @@ -66179,7 +66152,6 @@ gununsesi.info, 1 gununsesi.org, 1 gununsesiaz.info, 1 -gunwatch.co.uk, 1 gunworld.com.au, 1 gunz.net, 1 gunziefolleto.tk, 1 @@ -66188,12 +66160,15 @@ guochanren.com, 1 guoda.art, 1 guogetv.com, 1 +guoke.com, 1 guolaoban.xyz, 1 guolaw.ca, 1 +guomai.com, 1 guoman.com, 1 guopin.com.cn, 1 guozeyu.com, 1 guozhenhao.com, 0 +guozu.com, 1 gupy.io, 1 gura.moe, 1 gurbetilan.com, 0 @@ -66212,6 +66187,7 @@ gurunanakdarvar.tk, 1 gurunpa.com, 1 gururi.com, 1 +gurusewa.net, 1 guruworld.tk, 1 gus.ca, 1 gus.expert, 1 @@ -66290,7 +66266,6 @@ guypearce.co.uk, 1 guyretreaters.ga, 1 guyretreatest.ga, 1 -guyrofe.net, 0 guys-reviews.ml, 1 guysauto.com, 1 guysroulette.com, 1 @@ -66406,6 +66381,7 @@ gymnasticbodies.com, 1 gymnastikfitness.se, 1 gymnchod.cz, 1 +gymnertia.com, 1 gymonlondon.com, 1 gympap.de, 1 gymvilla.nl, 1 @@ -66434,6 +66410,7 @@ gz-bmw.com, 1 gz514.top, 1 gz99.top, 1 +gz999.top, 1 gzitech.com, 1 gzitech.net, 1 gzitech.org, 1 @@ -66458,7 +66435,6 @@ h09.eu, 1 h0r.st, 1 h0stb3rry.org, 1 -h0u5er.com, 1 h10l.com, 1 h10s.net, 1 h11.io, 1 @@ -66466,6 +66442,7 @@ h18.nl, 1 h1ctf.com, 1 h2.com.sg, 1 +h2.ee, 1 h2020faros.eu, 1 h24.org, 1 h2b.cz, 1 @@ -66475,6 +66452,7 @@ h2gonc.gov, 1 h2hc.email, 1 h2insaat.com, 1 +h2o-securities.com, 1 h2oinnovation.com, 1 h2ole.com, 1 h2omusic.tk, 1 @@ -66508,6 +66486,7 @@ ha3.eu, 1 ha34.com, 1 ha6.ru, 1 +haaglandenglas.nl, 1 haagsebubbel.tk, 1 haakonbecker.de, 1 haakonhaug.com, 1 @@ -66561,6 +66540,7 @@ habitark.es, 1 habitat-domotique.fr, 1 habitatberks.org, 1 +habitationsfontaine.com, 1 habitiss.be, 1 habitville.com, 1 hable.kr, 1 @@ -66607,7 +66587,6 @@ hackdown.eu.org, 1 hackdown.tech, 1 hackdra.com, 1 -hackdra.io, 1 hackeado.tk, 1 hacked.be, 1 hacked.com, 1 @@ -66644,6 +66623,7 @@ hackeronte.tk, 1 hackers-networks.tk, 1 hackersclothing.com, 1 +hackersgurukul.in, 1 hackerspace.rocks, 1 hackerstory.tk, 1 hackersw0rld.tk, 1 @@ -66688,10 +66668,10 @@ hacquemand.co, 1 hacsapp.co.uk, 1 hadaly.fr, 1 +hadan-it.com, 0 hadanoshika.com, 1 hadassah.moscow, 1 haddos.tk, 1 -haderecker.me, 0 hades-black.biz, 1 hades-black.com, 1 hades-black.net, 1 @@ -66761,6 +66741,7 @@ hahapo.com, 1 hahn-trafo.com, 1 haibara-ai.cn, 1 +haichuang.com, 1 haiduc.tk, 1 haifaworld.tk, 1 haifengz.com, 0 @@ -66818,6 +66799,7 @@ hairywomenpics.com, 1 haislipcorp.com, 1 haitaka.cc, 1 +haitang.com, 1 haitangsoshu.com, 0 haitangsoushu.com, 0 haitou.tk, 1 @@ -66966,6 +66948,7 @@ hamali.bg, 1 hamarimarriage.tk, 1 hamartrophy.cf, 1 +hamasu.com, 1 hambook.org, 1 hamburg1.de, 1 hamburgcode.com, 1 @@ -67043,6 +67026,7 @@ hamtwpfcoh.gov, 1 hamwan.nl, 0 hamzahamry.ga, 1 +hamzahlabs.my.id, 1 han-dahyun.co.kr, 1 han-nas.com, 1 hana-groupsac.com, 1 @@ -67050,6 +67034,7 @@ hanaandlily.com.au, 1 hanabi.fan, 0 hanakaru.tk, 1 +hanakat.fi, 1 hanako-health.com, 1 hanako-health.de, 1 hanakohealth.com, 1 @@ -67074,7 +67059,7 @@ handballinside.de, 1 handballmania.tk, 1 handbrake.fr, 1 -handcraftedinvirginia.us, 1 +handcity.com, 1 handcuffedgirls.me, 1 handelsbanken.co.uk, 1 handelsbanken.com, 1 @@ -67092,16 +67077,27 @@ handicraftsman.tk, 1 handigehannie.nl, 1 handinhandhrd.eu, 1 +handler.lt, 1 +handler.lv, 1 +handlerparts.com, 1 +handlerparts.de, 1 +handlerparts.fi, 1 +handlerparts.fr, 1 +handlerparts.no, 1 +handlerparts.pl, 1 +handlerparts.se, 1 handles.tech, 1 handlingcosters.ga, 1 handlingcostest.ga, 1 handlungsleitfaden.de, 1 handmade-club.tk, 1 handmade-workshop.de, 1 +handmadebyblueberry.pl, 1 handmadehechoamano.com, 1 handmadeselling.com, 1 handmadetutorials.ro, 1 handphones.tk, 1 +handpiece.com, 1 handpresso.com, 1 handsender-express.com, 1 handsome-samurai.jp, 1 @@ -67140,6 +67136,7 @@ hangarbox.de, 1 hangardasaves.com.br, 1 hangargeek.ml, 1 +hangkei.com, 1 hangout, 1 hangouts.google.com, 1 hangryum.com, 1 @@ -67148,6 +67145,7 @@ hanhardt.org, 1 haniasitek.com, 1 haniha.com, 1 +hanimazhar.com, 1 haninasolo.com, 1 hanisirfan.cf, 1 haniwadogu-kindai.jp, 1 @@ -67157,10 +67155,10 @@ hanketoke.com, 1 hankoreas.com, 1 hanksservice.com, 1 -hanky2.com, 1 hankyu-square.jp, 1 -hanlonhouse.us, 0 +hanlonhouse.us, 1 hanmandalu.com, 1 +hanmandao.com, 0 hanmandaohang.com, 1 hanmanxia.com, 1 hanming.li, 1 @@ -67193,6 +67191,7 @@ hansbruis.tk, 1 hanschconsulting.com, 1 hanschventures.com, 1 +hansee.com, 1 hansen-kronshagen.de, 1 hansen.hn, 1 hanseyachtsag.com, 1 @@ -67227,8 +67226,10 @@ hanzcollection.online, 1 hanzi-trainer.org, 1 hao-zhang.com, 1 +haofeng.com, 1 +haoke.com, 1 +haoming.com, 1 haorenka.co, 1 -haos01.cc, 1 haoskin.com.tw, 1 haoskin.tw, 1 haoyu-nas.ddns.net, 1 @@ -67236,10 +67237,12 @@ haozhexie.com, 1 haozi.me, 1 hapfox.de, 1 +hapiao.com, 1 hapijs.cn, 1 hapissl.com, 1 hapivm.com, 1 hapless.tk, 1 +happennino.net, 1 happeopleindonesia.id, 1 happiestoutdoors.ca, 1 happii.dk, 1 @@ -67256,6 +67259,7 @@ happy-wans.com, 1 happy.academy, 1 happy2hub.eu, 1 +happy5thwheelers.com, 1 happyagain.se, 1 happyandrelaxeddogs.com, 1 happyanimalsshop.com, 1 @@ -67400,6 +67404,7 @@ hardnet.cz, 1 hardnode.org, 1 hardnoiser.tk, 1 +hardpay.com, 1 hardrain980.com, 0 hardrock.tk, 1 hardrocksportsbook.com, 1 @@ -67411,6 +67416,7 @@ hardtfrieden.de, 1 hardtime.tk, 1 hardtimeszine.tk, 1 +hardtodo.org, 1 hardwake.tk, 1 hardwareforum.ga, 1 hardwarelog.in, 1 @@ -67422,13 +67428,14 @@ hardwickvt.gov, 1 hardwiredmagazine.com, 1 hardworm.tk, 1 -hardyhaberland.com, 1 hardzone.es, 1 harem.tk, 1 harery.com, 1 harfordpark.org, 1 harfordvotes.gov, 1 hargamobilmu.com, 0 +harghita.com, 1 +hargita.com, 1 hari-katha.tk, 1 hari-tech.com, 1 haribilalic.com, 1 @@ -67597,6 +67604,7 @@ hasalittle.wang, 1 hasandeniz.uk, 1 hasandurmus.com, 1 +hasankayra04.com, 1 hasas-automatizari.ro, 1 hasas-cnc.ro, 1 hasbara.tk, 1 @@ -67629,7 +67637,6 @@ hashru.nl, 1 hashsters.com, 1 hashsters.io, 1 -hashtagfoundation.org, 1 hashti.tn, 1 hashulchan.co.il, 1 hashworks.net, 1 @@ -67667,7 +67674,6 @@ hasudashika.com, 1 hasx.me, 1 hasznosithato.tk, 1 -haszon.hu, 1 hatake.tk, 1 hatakekaigi.com, 1 hataonline.tk, 1 @@ -67682,7 +67688,6 @@ hatematerial.tk, 1 hatesz.hu, 1 hatethe.uk, 1 -hathai.org, 1 hathawaydinwiddie.com, 1 hatierchinois.fr, 1 hatori.tk, 1 @@ -67816,6 +67821,7 @@ hay.email, 1 hayai.space, 1 hayalgucu.net, 1 +hayalhanephotography.com, 1 hayalmeyal.com, 1 hayashi-rin.net, 1 hayatmurat.tk, 1 @@ -67825,6 +67831,7 @@ haydenjames.io, 1 haydockusedtrucks.co.uk, 1 hayes-solicitors.ie, 1 +hayesfusion.com, 1 hayestwpclaremi.gov, 1 hayestwpotsegomi.gov, 1 hayfordoleary.com, 1 @@ -67885,6 +67892,7 @@ hbh.sh, 1 hbility.eu, 0 hbl-stahl.de, 1 +hblbb.com, 1 hblwrk.de, 1 hbo-center.com, 1 hboeck.de, 1 @@ -67901,7 +67909,6 @@ hbussmann.com, 1 hbvip.com, 1 hbweb.io, 1 -hbxianghang.com, 0 hby.cx, 1 hc-sc.gc.ca, 0 hc.ws, 1 @@ -67917,7 +67924,6 @@ hccnet.org, 1 hcdatn.gov, 1 hcdonbass.com, 1 -hcfeye.com.au, 1 hcfl.gov, 1 hcfoodpantry.org, 1 hcg-injections.com, 1 @@ -68032,6 +68038,7 @@ headlinepublishing.be, 1 heado.de, 1 headofhair.pl, 1 +headpats.eu, 1 headphonesinear.tk, 1 headshotharp.de, 1 headsmackskatepark.tk, 1 @@ -68109,7 +68116,6 @@ healthbrite.ga, 1 healthbrochures.info, 1 healthbunny.ga, 1 -healthcalculator.site, 1 healthcanal.ga, 1 healthcaptive.ga, 1 healthcare.gov, 0 @@ -68122,7 +68128,6 @@ healthcaredrugs.tk, 1 healthcareera.tk, 1 healthcareinfonews.tk, 1 -healthcareinfosecurity.com, 1 healthcaremedicine.tk, 1 healthcarenutrition.tk, 1 healthcareresearch.tk, 1 @@ -68239,7 +68244,6 @@ healthloco.ga, 1 healthlongwood.tk, 1 healthlowprice.ga, 1 -healthlucid.com, 1 healthlucky.ga, 1 healthmagazines.tk, 1 healthmanager.ml, 1 @@ -68293,6 +68297,7 @@ healthpeace.ga, 1 healthpeach.ga, 1 healthpersonal.ga, 1 +healthpert.com, 1 healthphase.ga, 1 healthpickup.ga, 1 healthpirates.ga, 1 @@ -68364,8 +68369,10 @@ healthvariety.tk, 1 healthveedersburg.tk, 1 healthvision.ml, 1 +healthvitalzone.com, 1 healthwarior.tk, 1 healthwausau.tk, 1 +healthwaymedicalnetwork.com.ph, 1 healthwealthtime.org, 1 healthwichita.tk, 1 healthy-map.com, 1 @@ -68385,6 +68392,7 @@ healthyclinic.tk, 1 healthycolorado.tk, 1 healthycompetition.gov, 1 +healthyeatingbenefits.com, 1 healthyfamilies.org.uk, 1 healthyfeet.gr, 1 healthyfitfood.com, 1 @@ -68435,6 +68443,7 @@ heartbound.wiki, 1 heartcard.tk, 1 heartchating.tk, 1 +heartcodelabs.com, 1 heartgames.pl, 1 hearthealing.ca, 1 hearthstonehungary.hu, 1 @@ -68445,7 +68454,6 @@ heartlandcu.com, 1 heartlandmosaic.com, 1 heartlandtownandcountry.tk, 1 -heartofenglandfirstaidtraining.com, 1 heartofgod.tk, 1 heartoftexaseye.com, 1 heartofthemidlands.co.uk, 1 @@ -68492,6 +68500,7 @@ heathrowairportparking24.co.uk, 1 heatingequipment.tk, 1 heatingupdates.com, 1 +heatwrap.de, 1 heaven-boutique.de, 0 heavenlybeauty.tk, 1 heavenlyseals.com, 1 @@ -68541,7 +68550,6 @@ hedd.audio, 0 hedefhalk.com, 1 hedenskrig.tk, 1 -hederaconsulting.com, 1 hederatech.us, 1 hederawinkel.nl, 0 hedge.fi, 1 @@ -68584,7 +68592,6 @@ heg.ge, 1 hegdahl.tk, 1 hegdahl.xyz, 1 -hegebo.de, 1 hegocre.com, 1 heh.ee, 1 heha.co, 0 @@ -68606,7 +68613,6 @@ heic.nz, 1 heictoany.com, 1 heid.ws, 1 -heidarilawgroup.com, 1 heidegg.ch, 1 heidelbergengineering.com, 1 heidelberglintels.com.au, 1 @@ -68630,6 +68636,7 @@ heijmans.pm, 1 heijmans.tech, 1 heikal.tk, 1 +heike-koltermann.de, 1 heikegastmann.com, 0 heikki-mikkola.tk, 1 heiko-zimmermann.com, 1 @@ -68713,7 +68720,7 @@ helenelefauconnier.com, 1 helenevanwunnik.tk, 1 helenkellersimulator.org, 1 -helenmarie.ie, 0 +helenmarie.ie, 1 helenmcguinness.online, 1 helensmithpr.co.uk, 1 helenssjoholm.cf, 1 @@ -68816,6 +68823,7 @@ hellomouse.tk, 1 hellomunnar.in, 1 hellomyword.tk, 1 +hellonest.se, 1 hellonews.cf, 1 hellonews.ga, 1 helloo.com.br, 1 @@ -68840,6 +68848,7 @@ hellovillam.com, 1 helloworldhost.com, 0 helloyubo.com, 1 +hellpc.net, 0 hellraid.com, 1 hellseeker.tk, 1 hellsinkivampires.tk, 1 @@ -68853,6 +68862,7 @@ helmethouse.com, 1 helmholtz.cloud, 1 helminger-lrs.at, 1 +helmondautoschade.nl, 1 helmsbriscoe.com, 1 helmscapital.co.uk, 1 heloisamarra.com, 1 @@ -68861,6 +68871,7 @@ help207.me, 1 help24.be, 0 help911.com, 1 +helpadmin.net, 0 helpamericavote.gov, 1 helpatmyhome.com, 1 helpc.eu, 1 @@ -68872,7 +68883,7 @@ helpcrm.co.uk, 1 helpekwendenihospital.com, 1 helpfulcash.com, 1 -helpinghandspartners.org, 1 +helpguru.eu, 1 helpkoil.com, 1 helplightning.com, 1 helpline.com.ua, 1 @@ -68923,7 +68934,6 @@ hematoonkologia.pl, 1 hemdal.se, 0 hemdian.com, 1 -hemelrijk2.nl, 1 hemi.xyz, 1 hemkop.se, 1 hemmens.eu, 1 @@ -68933,10 +68943,8 @@ hemorroi.ga, 1 hemp.com, 1 hemphopper.eu, 1 -hempoffset.com, 1 hempsteadcitytx.gov, 1 hemrin.com, 1 -hems.si, 1 hemtest.com, 1 hen.ee, 1 hen.ne.ke, 1 @@ -68992,6 +69000,7 @@ henriksachse.de, 1 henriksoderlund.com, 1 henrilammers.nl, 1 +henrimalhas.pt, 1 henriquediogo.com, 1 henrri.net, 1 henry.gg, 1 @@ -69016,6 +69025,7 @@ henrys.glass, 1 henryveraonline.com, 1 henselphelps.com, 1 +hensiek.com, 1 hentai-paradise.fr, 1 hentai.it, 1 hentaigirls.net, 1 @@ -69035,6 +69045,7 @@ hentschke-invest.de, 1 henzenhoning.nl, 1 henzy.cloud, 1 +heos.it, 1 hepfree.nyc, 1 hepg.hu, 1 hephzibahga.gov, 1 @@ -69058,12 +69069,12 @@ heratnews.tk, 1 herba-belgie.be, 1 herbacom.ro, 1 -herbaldunyasi.com, 1 herbalhouse.tk, 1 herbalife.ru, 1 herbalifereport.tk, 1 herbalist-alchemist.com, 1 herbalkanker.tk, 1 +herbalmusings.net, 1 herbalproducts.com, 1 herbarex.bg, 1 herbarium.cf, 1 @@ -69091,6 +69102,7 @@ herdwilliam.ml, 1 herdwilliam.tk, 1 herealways.tk, 1 +herecafe.com, 1 heredapoxetine.gq, 1 hereditary.us, 1 herefordlighthouse.org, 0 @@ -69158,7 +69170,6 @@ heroco.xyz, 1 herod.tk, 1 heroes3stat.tk, 1 -heroesofthenorth.com, 1 heroesoftomorrow.nl, 0 heroesorchestra.com, 1 herofil.es, 1 @@ -69173,6 +69184,7 @@ heronhallacademy.org.uk, 1 heroofkings.com, 1 heroplusgroup.com, 0 +heroway.com, 1 heroxin.com, 1 herp.careers, 1 herpderpderpderp.com, 1 @@ -69220,7 +69232,6 @@ herzwacht.de, 1 herzzuherz.de, 1 hes.com.cy, 1 -hesabcenter.com, 1 hesabraslaw.com, 1 hesabtube.com, 1 hesama.tk, 1 @@ -69323,7 +69334,6 @@ hexo.io, 0 hexobind.com, 1 hexoff.com, 1 -hexony.com, 1 hexr.org, 1 hexsafe.io, 1 hexstream.expert, 1 @@ -69384,6 +69394,7 @@ hfxtwppa.gov, 1 hg.eu, 1 hg.fo, 1 +hg.python.org, 1 hg0086.la, 0 hg71839.com, 1 hgb.club, 1 @@ -69435,6 +69446,7 @@ hi4you.de, 1 hialatv.com, 1 hiatoconteudodigital.com.br, 1 +hiattlawaz.com, 1 hibanaworld.com, 1 hibari-dent.jp, 1 hibbingmn.gov, 1 @@ -69452,6 +69464,7 @@ hicksvilleohio.gov, 1 hicl.org, 1 hicomtecksee.com.my, 1 +hicopy.jp, 1 hicoria.com, 1 hicts.nl, 1 hiczp.com, 1 @@ -69566,6 +69579,7 @@ highlevelwoodlands.com, 1 highlightsfootball.com, 1 highline-contracts.com, 1 +highmans.com, 1 highnation.ml, 1 highperfection.com, 1 highpressuretech.com, 1 @@ -69576,6 +69590,7 @@ highrank.tk, 1 highschooldublin.com, 1 highship-industries.com, 1 +highskillacademy.com, 1 highskilled.tk, 1 highsky.ir, 1 highspeed-arnsberg.de, 1 @@ -69583,6 +69598,7 @@ highspenfc.tk, 1 highspire.gov, 1 highsprings.gov, 1 +highstage.com, 1 highstakesdb.com, 1 hightech.construction, 1 hightechbrain.net, 1 @@ -69771,7 +69787,6 @@ hirerecruiters.io, 1 hireright.com, 1 hireshield.com, 1 -hiresteve.ca, 1 hirevets.gov, 1 hirevo.eu, 1 hirevue.com, 1 @@ -69784,7 +69799,6 @@ hiringprocess.careers, 1 hirisejanitorial.com, 0 hirnstiftung.org, 1 -hirobbie.com, 1 hirocoffee.com, 1 hiromi-dental.tokyo, 1 hiromi.eu.org, 1 @@ -69919,7 +69933,6 @@ hiveopolis.eu, 1 hiverhq.com, 1 hiverlune.net, 0 -hivesigner.com, 1 hiwebsite.tk, 1 hiwiki.tk, 1 hix.fi, 1 @@ -69960,7 +69973,7 @@ hjosh.com, 1 hjoworld.tk, 1 hjphoto.co.uk, 1 -hjyl.org, 1 +hjyl.org, 0 hjyl.xn--fiqs8s, 0 hjyl1999.com, 0 hjyl2828.com, 0 @@ -69973,8 +69986,8 @@ hk.search.yahoo.com, 0 hkamran.com, 1 hkas.org.hk, 1 -hkbn.xyz, 1 hkconcept.lu, 1 +hkd.cn, 1 hkedquity.org, 1 hkgix.net, 1 hkl-gruppe.de, 1 @@ -70048,7 +70061,6 @@ hmshost.com, 1 hmsplatform.tk, 1 hmtransfer.ir, 1 -hmv.com, 1 hmx.org, 1 hmy.com, 1 hn.search.yahoo.com, 0 @@ -70099,7 +70111,6 @@ hoby-tech.com, 1 hoccovua.vn, 1 hochatown.gov, 1 -hochdruckliga.at, 1 hochhaus.us, 1 hochheimer-zeitung.de, 1 hochimins.org, 1 @@ -70221,6 +70232,7 @@ holadinero.mx, 0 holainternet.tk, 1 holandacastro.com, 1 +holanuevayork.com, 1 holbrookaz.gov, 1 holdengreene.com, 1 holdenmaine.gov, 1 @@ -70233,7 +70245,6 @@ holdmymeme.com, 1 holdperson.tk, 1 holebedeljek.hu, 1 -holeboom.com, 1 holeinthesky.no, 1 holgapanama.tk, 1 holger-schwarze.de, 1 @@ -70315,7 +70326,6 @@ holmq.dk, 1 holmqvist.tk, 1 holmr.eu, 1 -holo.host, 1 holo.ovh, 1 holocentric.com, 1 holocron.one, 1 @@ -70401,7 +70411,6 @@ homeadvice.ga, 1 homeadvice.tk, 1 homeaffairslesotho.com, 1 -homeandliving.it, 1 homebank.kg, 1 homebar.ml, 1 homebasedbusinessopportunity.tk, 1 @@ -70612,6 +70621,7 @@ homelion.ga, 1 homelove.tk, 1 homelovehome.tk, 1 +homelykw.com, 1 homemadetips.ga, 1 homemadetipsers.ga, 1 homemadetipsest.ga, 1 @@ -70645,6 +70655,7 @@ homeover.ga, 1 homeownersinsurancenv.com, 1 homepage-nach-preis.de, 1 +homepage.help, 1 homepal.cf, 1 homepal.ga, 1 homepal.gq, 1 @@ -70708,6 +70719,7 @@ homewinner.ga, 1 homewish.ga, 1 homewoodpathfinder.com, 1 +homewoodworkplans.com, 1 homeworld.ga, 1 homeyou.com, 1 homeyx.cf, 1 @@ -70737,7 +70749,7 @@ honatec.tech, 1 honbin.tw, 1 honda2wheelerparts.com, 1 -honda2wheelersindia.com, 1 +honda2wheelersindia.com, 0 honda2wheelersindia.in, 1 hondaactivindia.com, 1 hondadigitalevent.com, 1 @@ -70754,6 +70766,7 @@ hondudiario.tk, 1 honedigital.co.uk, 1 honeit.com, 1 +honess-water.cn, 1 honest.ga, 1 honestblogers.ga, 1 honestblogest.ga, 1 @@ -70881,11 +70894,12 @@ hoppenr.xyz, 1 hopperoofing.com, 1 hoppinjohn.org, 1 +hoppy.com, 1 hoppygo.com, 1 hops-and-ashes.de, 1 hopscotchmodel.com, 1 hopsfeatherfest.at, 1 -hopsmaus-shop.de, 1 +hopsmaus-shop.de, 0 hopted.com, 1 hor.rent, 1 hor.website, 1 @@ -70909,6 +70923,7 @@ horgenberg.com, 1 horiconwi.gov, 1 horiedental.com, 1 +horizon.com, 1 horizon.ne.jp, 1 horizondds.com, 1 horizoneurope.ie, 1 @@ -70981,7 +70996,6 @@ horsewithnoname.com, 1 horsky.me, 1 horstfuchs.tk, 1 -horstmanshof.eu, 1 horstmanshof.nl, 1 hortencollection.com, 1 hortico.rs, 1 @@ -71005,11 +71019,9 @@ hosieryexpoers.ga, 1 hosieryexpoest.ga, 1 hosifuri.net, 1 -hosimiyasio.com, 0 hosoi-tax.com, 1 hospiceandcommunitycare.com, 1 hospiceandcommunitycare.net, 1 -hospiceandcommunitycare.org, 1 hospicecommunity.net, 1 hospicecommunity.org, 1 hospicelights.org, 1 @@ -71046,9 +71058,10 @@ hostalk.net, 1 hostalog.com, 1 hostalsanmarcos.tk, 1 -hostanalytics.com, 0 +hostanalytics.com, 1 hostarea51.com, 1 hostathome.fr, 1 +hostaz.net, 1 hostbility.com, 1 hostboxonline.com, 1 hostcloud.ml, 1 @@ -71063,6 +71076,7 @@ hostedghost.net, 1 hostedghost.nl, 1 hostedghost.org, 1 +hostedincanada.com, 1 hostedtalkgadget.google.com, 1 hosteko.com, 1 hosteleriauno.es, 1 @@ -71073,7 +71087,7 @@ hostesstrainingers.ga, 1 hostesstrainingest.ga, 1 hostfact.nl, 1 -hostfi.com.br, 0 +hostfi.com.br, 1 hostfission.com, 1 hostfree12.tk, 1 hostgreet.com, 1 @@ -71093,7 +71107,6 @@ hostingdiario.com, 1 hostingdirect.nl, 1 hostingdirectory.ga, 1 -hostingedominio.com, 1 hostingelite.tk, 1 hostingfirst.nl, 1 hostinghaus.tk, 1 @@ -71154,7 +71167,6 @@ hotblondepussy.com, 1 hotbox.fun, 1 hotbustymoms.com, 1 -hotcamsreview.com, 1 hotcandlestick.com, 1 hotcars.com, 1 hotchillibox.co.za, 1 @@ -71204,7 +71216,6 @@ hotelalpino.com, 1 hotelancoraecuador.com, 1 hotelandplace.com, 1 -hotelastor.com, 1 hotelbird.com, 1 hotelbiz.cf, 1 hotelbiz.ga, 1 @@ -71223,11 +71234,9 @@ hoteldvorik.ml, 1 hotelelaphusabrac.com, 1 hoteleldhestar.is, 1 -hotelesterobeach.com, 1 hotelfloresta.tk, 1 hotelfloridachaco.com, 1 hotelflow.com.br, 1 -hotelhartness.com, 1 hotelident.de, 1 hotelitalia.tk, 1 hotelite.tk, 1 @@ -71239,7 +71248,6 @@ hotelmariasas.it, 1 hotelmelograno.eu, 1 hotelmirage-bg.com, 1 -hotelmonal.in, 1 hotelnagarkotparadise.tk, 1 hotelparqcentral.com, 1 hotelpenzance.com, 1 @@ -71268,7 +71276,7 @@ hotelsrit.tk, 1 hotelsthisweekend.com, 1 hotelsvetaekaterina.com, 1 -hotelv.com, 1 +hotelv.com, 0 hotelvalena.com, 1 hotelvillafiorita.com, 1 hotelvisegrad.hu, 1 @@ -71285,7 +71293,6 @@ hothub.net, 1 hotiii.ga, 1 hotiks.tk, 1 -hotjasmingirls.com, 1 hotlinenum.com, 1 hotlinetohell.cf, 1 hotlog.tk, 1 @@ -71318,12 +71325,10 @@ hotpussytube.com, 1 hotrender.com, 1 hotroviettel.vn, 1 -hotrowordpress.com, 0 hotschneckchen.net, 1 hotscripting.tk, 1 hotsex.tv, 1 hotsexvids.net, 1 -hotsexxxcams.com, 1 hotshira.com, 1 hotshotsleeves.com, 1 hotsmi.cf, 1 @@ -71351,6 +71356,7 @@ houghcovidtest.com, 1 houghcovidtest.com.au, 1 houghtonstatebank.com, 1 +houhuayuan.com, 1 houlang.ac.cn, 1 hourai.gg, 1 houraiteahouse.net, 1 @@ -71366,6 +71372,7 @@ houseareaitaly.tk, 1 housebar.tk, 1 housecarty.com, 1 +housecleanerslongmont.com, 1 housedesigninfo.tk, 1 housedesignnews.tk, 1 houseepropiedadraiz.com, 1 @@ -71377,7 +71384,6 @@ housekeep.com, 1 houselocal.co.uk, 1 housemart.company, 1 -housemates.uk.com, 1 housemouse.tk, 1 houseofaceonline.com, 1 houseoffilters.com, 1 @@ -71530,6 +71536,7 @@ howunadeydoam.ng, 1 howwhy.tw, 1 hoxo.fr, 1 +hoyabit.com, 1 hoychivilcoy.tk, 1 hoyenapple.com, 1 hoyerfamilysaffron.com, 1 @@ -71567,9 +71574,11 @@ hpscb.com, 1 hpsdigital.hu, 1 hpsldc.com, 1 +hpthealing.com, 1 hpvtimmerwerken.nl, 1 hqblog.cn, 0 hqlines.me, 1 +hqproductreviews.com, 1 hqsy.net, 1 hqteas.com, 1 hqtrannytube.com, 1 @@ -71602,6 +71611,7 @@ hrchronicle.com, 1 hrchronicle.net, 1 hrcigroup.com, 1 +hrcp.ge, 1 hrcrew.com.au, 1 hrd-sec.com, 1 hrd.pl, 1 @@ -71609,10 +71619,10 @@ hreflang.info, 1 hrej.eu, 1 hrejterzy.com, 1 -hrexchangenetwork.com, 1 hrgt.eu, 1 hristijanspirovski.tk, 1 hristos.com, 1 +hriveralaw.com, 1 hrizer.com, 0 hrjfeedstock.org, 1 hrjob.ml, 1 @@ -71657,6 +71667,7 @@ hrzblt.eu, 1 hs-flensburg.de, 1 hs-group.net, 1 +hs-hire.co.uk, 1 hs-mainz.de, 1 hs7imports.com.br, 1 hsappstatic.net, 1 @@ -71665,6 +71676,7 @@ hsbcnet.com, 1 hsbte.com, 1 hsbuild.com, 1 +hsc.com.vn, 1 hschen.top, 0 hscomposites.co.nz, 1 hse-dev.com, 1 @@ -71718,7 +71730,6 @@ ht.mk, 1 ht04.org, 1 htaccessbook.com, 1 -htaps.com, 1 htb-email.co, 1 htb-email.com, 1 htb-email.uk.com, 1 @@ -71779,7 +71790,7 @@ http.gs, 1 http.pizza, 1 http2.com.cn, 1 -http2.pro, 1 +http2.pro, 0 http3-hosting.de, 1 http3.ch, 1 http3.info, 1 @@ -71817,6 +71828,7 @@ hu.search.yahoo.com, 0 hua-in.net, 1 huabianwa.com, 0 +huachuang.com, 1 huagati.co.th, 1 huagati.com, 1 huakai.es, 1 @@ -71846,9 +71858,9 @@ huanqiu1988.com, 1 huanta.tk, 1 huanvm.com, 1 +huanwei.com, 1 huapood.com, 1 huaqian.art, 1 -huarantee.com, 1 huarenda.com, 0 huashan.co.uk, 1 huashang.tk, 1 @@ -71938,9 +71950,11 @@ hugebeasters.ga, 1 hugebeastest.ga, 1 hugetits.tv, 1 +huggies.com, 1 huggies.com.au, 1 huggy.moe, 1 hughescountyok911.gov, 1 +hugheshandymanservices.co.uk, 1 hughfitzgerald.com, 1 hugi.is, 1 huglen.info, 1 @@ -71965,8 +71979,12 @@ huhao.tk, 1 huhu.cf, 1 huibrotladen.com, 1 +huicui.com, 1 +huiguniang.com, 1 huiketang.com, 1 huiles-et-olives.fr, 1 +huimin.com, 1 +huimou.com, 1 huininga.com, 1 huininga.nl, 1 huininga.org, 1 @@ -71986,7 +72004,7 @@ huislijn.nl, 1 huissier-vosges.com, 1 huit.re, 1 -huitaodang.com, 1 +huitaodang.com, 0 hukkatavara.com, 1 hukuhauchi.com, 1 hukukiayna.com, 1 @@ -72038,6 +72056,7 @@ humanrights-geneva.info, 1 humanrights.gov.au, 1 humanrights.tk, 1 +humanrightscareers.com, 1 humanrightseducation.cn, 1 humanrightswatch.org, 1 humanshiftpaper.com, 1 @@ -72081,7 +72100,6 @@ humboldtcountyca.gov, 1 humboldtcountynv.gov, 1 humboldtcsi.com, 1 -humboldthomeguide.com, 0 humboldtmfg.com, 1 humdata.org, 1 humdruma-recordingz.tk, 1 @@ -72112,9 +72130,9 @@ humphreyscountytn.gov, 1 humphreystnsheriff.gov, 1 humpydumpy.tk, 1 -humuluslupulus.de, 1 humus.tk, 1 huna.viajes, 1 +hunanbank.com, 1 hunaniinfotech.com, 1 hund.io, 1 hund.ml, 1 @@ -72137,6 +72155,7 @@ hungaromedia.at, 1 hungaryz.ml, 1 hungnm.me, 1 +hungphatlaptop.com, 1 hungryas.tk, 1 hungryginie.com, 1 hungrygowhere.com, 1 @@ -72190,9 +72209,12 @@ huon.fyi, 1 huonit.com.au, 0 huoyankan.com, 1 +huoyou.com, 1 +huozhen.com, 1 hup.hu, 0 hupoyunlar.com, 1 hurbascooter.com, 1 +hurbo.com, 1 hurdafiyatlari.site, 1 hurinkazan2020.com, 1 hurling.net, 1 @@ -72222,7 +72244,6 @@ husky-in-nood.tk, 1 huskyadvisor.com, 1 huskyeye.de, 1 -huskygifts.com, 1 huskyinc.us, 0 huskytaildigital.com, 1 husna.ae, 1 @@ -72236,7 +72257,6 @@ hutchinsonmn.gov, 1 huthacks.com, 1 huto.ml, 1 -huttcityfm.co.nz, 1 huttotxedc.gov, 1 huurwoordenaar.nl, 1 huuto.tk, 1 @@ -72278,7 +72298,6 @@ hvr.world, 1 hvrint.de, 1 hvtuananh.com, 1 -hvvmg.com, 1 hvylya.net, 1 hw.online, 1 hw.site, 1 @@ -72309,8 +72328,6 @@ hxp.io, 1 hxr404.cf, 1 hxsrz.eu.org, 1 -hxtival.com, 1 -hxtival.nl, 1 hy1.com, 1 hyacinthus.tk, 1 hyatt.com, 1 @@ -72382,6 +72399,7 @@ hydroturbine.info, 0 hydrozen.io, 1 hydrozone.fr, 1 +hyds.com, 1 hyec.jp, 1 hyex.com.au, 1 hyfood.it, 1 @@ -72412,6 +72430,7 @@ hyper-text.org, 0 hyper.ai, 1 hyper.lol, 1 +hyperalgesia.com, 1 hyperautomotive.com.au, 1 hyperblast-universe.tk, 1 hyperblocks.tech, 1 @@ -72421,6 +72440,8 @@ hyperd.sh, 1 hyperdesign.com, 1 hyperemesis.ie, 1 +hyperfuse.net, 1 +hyperfuze.co.uk, 1 hyperfuze.net, 1 hypergurl.com, 1 hyperhidrose.tk, 1 @@ -72428,6 +72449,7 @@ hyperion.gmbh, 0 hyperion.io, 1 hyperionms.com, 1 +hyperjewel.com, 1 hyperlaunch.co, 1 hyperlocal.co.za, 1 hypermonkey.tk, 1 @@ -72538,8 +72560,10 @@ hyzy.fr, 1 hz601.org, 1 hzbk.org, 0 +hzib.com, 1 hzmpower.com, 1 hzqdl.com, 1 +hzsx.com, 1 hztgzz.com, 1 hzuuuz.top, 1 i--b.com, 1 @@ -72548,7 +72572,7 @@ i-am-cjc.tech, 1 i-am-seo.co.uk, 1 i-buy-caravans.net, 1 -i-click.com, 1 +i-click.com, 0 i-cyber.gov.ua, 1 i-experts.nl, 1 i-fastnet.net, 1 @@ -72618,12 +72642,9 @@ i6957.co, 1 i7.io, 1 i7sas.tk, 1 -i82365.com, 1 i88i.gq, 1 -i8cp.com, 1 i9297.co, 1 i9728.co, 1 -i9assessoria.com.br, 1 i9s.in, 1 ia-tools.com, 1 ia.net, 1 @@ -72632,7 +72653,6 @@ iaabc.org, 1 iaata.info, 1 iabot.tk, 1 -iacc.cl, 1 iacee.org, 1 iaco.li, 1 iacono.com.br, 0 @@ -72640,6 +72660,7 @@ iactu.info, 1 iadb.org, 1 iadore.tk, 1 +iadschool.com, 1 iadttaveras.com, 1 iae.one, 1 iaedjournal.org, 1 @@ -72682,7 +72703,6 @@ iamtheib.me, 1 iamthelife.io, 1 iamtp.com, 1 -iamtrainsafe.co.uk, 1 ian-barker.co.uk, 1 ian.sh, 0 ian678.com, 1 @@ -72764,6 +72784,7 @@ ibericarmovilsur.es, 1 ibericarreicomsa.es, 1 ibericartechnik.es, 1 +ibesa.com, 1 ibetora.com, 1 ibex.co, 1 ibexmultiday.com, 1 @@ -72793,6 +72814,7 @@ ibmreturns.gov.in, 1 ibmsonline.org, 1 ibo-chemnitz.de, 1 +iboat.eu, 1 ibodyiq.com, 1 ibon.org, 1 iboplayer.de, 1 @@ -72827,6 +72849,7 @@ ibvv.cz, 1 ibwc.gov, 1 ibwil.com, 1 +ibyen.com, 1 ibz.be, 1 ic3.gov, 1 ica.coop, 1 @@ -72837,7 +72860,6 @@ icams-portal.gov, 1 icanbecreative.com, 1 icanhazpass.com, 1 -icanrelateto.com, 1 icanseeyou.tk, 1 icap.my, 1 icardistry.com, 1 @@ -72909,6 +72931,7 @@ icetiger.eu, 1 icewood-bois.com, 1 icfre.org, 1 +icfree.com, 1 ich-finde-wikipedia-toll.tk, 1 ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de, 1 ich-tanke.de, 1 @@ -72957,11 +72980,11 @@ iclinic.ua, 1 icliniq.com, 1 icloud.com, 1 +icmarket.com, 1 icmtx.com, 1 icnagenda.fr, 1 icnc.ga, 1 icnsoft.org, 1 -icocoon.ch, 1 icojapan.tokyo, 1 icolabo.yokohama, 1 icolc.net, 1 @@ -73030,10 +73053,10 @@ iculture.nl, 1 icusignature.com, 1 icustomboxes.com, 1 +icy.cn, 1 icyapril.com, 1 icycanada.com, 1 icydestiny.com, 0 -icyeurope.com, 1 icyhealth.com, 0 icyheroes.com, 1 icyrock.com, 1 @@ -73051,6 +73074,7 @@ id-blog.ch, 0 id-conf.com, 1 id-fxcm.com, 1 +id-strategies.com, 1 id.atlassian.com, 0 id.et, 1 id.fedoraproject.org, 0 @@ -73072,6 +73096,7 @@ idaspis.com, 1 idatownshipmi.gov, 1 idawallen.com, 1 +idaz09.au, 1 idblab.tk, 1 idbm.ch, 1 idbs.com, 1 @@ -73201,6 +73226,7 @@ idf64.org, 1 idfc.gov, 1 idgr.de, 1 +idh.agency, 1 idhl.fr, 1 idhosts.co.id, 1 idhproductions.com.au, 1 @@ -73230,13 +73256,11 @@ idnic.net, 1 idnpacific.com, 1 ido.nl.eu.org, 1 -idoctoril.com, 1 idohost.tk, 1 idol-bikes.ru, 1 idolf.dk, 1 idolfap.com, 1 idolish7.fun, 0 -idoljp.com, 1 idomoo.com, 1 idonthaveawebsite.tk, 1 idontplaydarts.com, 1 @@ -73272,8 +73296,8 @@ idyl.fr, 1 idysse.com, 1 ie.search.yahoo.com, 0 +ieach.com, 1 ieap.it, 1 -iec-telecom.com, 1 iedr.ie, 1 ieduex.com, 1 ieeesb.nl, 1 @@ -73354,8 +73378,8 @@ iforced.net, 1 ifort.fr, 1 ifoss.me, 1 -ifpe.edu.br, 1 ifpi.se, 1 +ifpma.com, 1 ifrabb.fr, 1 iframefinancement.be, 1 ifreemax.ml, 1 @@ -73383,6 +73407,7 @@ ig.me, 1 iga-semi.jp, 1 igad.int, 1 +igaku.com, 1 igame.ml, 1 igamingaffiliateprograms.com, 1 igamingdirectory.com, 1 @@ -73426,7 +73451,6 @@ igloodigitalworkplaces.ca, 1 igloopartnerportal.com, 1 igloopreview.ca, 1 -igloosandbox.com, 1 iglosujemy.pl, 1 iglus.org, 1 igmus.org, 1 @@ -73434,11 +73458,13 @@ ignace72.eu, 1 ignaciolacruz.com, 1 ignacjanskiednimlodziezy.pl, 1 +ignacy.com, 1 ignat-mag.com, 1 ignat-torcov.tk, 1 ignatij.tk, 1 ignatovich.by, 1 ignatovich.me, 1 +ignca.gov.in, 1 ignet.gov, 1 ignite-reading.com, 1 ignite.cz, 1 @@ -73478,7 +73504,6 @@ igrinka.ua, 1 igrivi.com, 1 igrodrom-kvest.tk, 1 -igroft.xyz, 1 igromasikov.tk, 1 igrovoi-klub.tk, 1 igrun.com, 1 @@ -73502,6 +73527,7 @@ iha6.com, 1 ihacares.com, 1 ihacker.ai, 1 +ihainan.com, 1 ihakkitekin.com, 1 ihatethissh.it, 1 ihazurip.com, 1 @@ -73545,7 +73571,6 @@ ii6729.co, 1 ii6957.co, 1 ii9297.co, 1 -ii9728.co, 1 iia.no, 1 iibarizona.com, 1 iicontario.ca, 1 @@ -73566,6 +73591,7 @@ iiipublishing.com, 1 iiit.pl, 1 iimarckus.org, 1 +iimpress.com, 1 iinehp.com, 1 iinf.in, 1 iinfin.org, 1 @@ -73590,6 +73616,7 @@ ij.rs, 1 ijceo.org, 1 ijdc.org.in, 1 +ijemin.com, 1 ijianli.cn, 1 ijji.tv, 1 ijk.nl, 1 @@ -73608,7 +73635,7 @@ ijzerwarenhandel.nu, 1 ika.monster, 1 ikachalife.com, 1 -ikacode.com, 1 +ikacode.com, 0 ikall.com, 1 ikama.cz, 1 ikara.social, 1 @@ -73616,7 +73643,6 @@ ikaria.com.gr, 1 ikaros.tk, 1 ikarus-itkurs.de, 1 -ikasgela.com, 1 ikazumitsu.tk, 1 ikbear.me, 1 ikbenrichie.nl, 0 @@ -73655,7 +73681,6 @@ iknowd.org, 1 iknowthatgirl.com, 1 iknowthatgirlpremium.com, 1 -ikoreg.nl, 1 ikra24.in.ua, 1 ikrab.club, 1 iks.moe, 1 @@ -73672,7 +73697,6 @@ ikvts.de, 1 ikwildjworden.com, 1 ikwileendomein.tk, 1 -ikwilscheiden.nl, 1 ikx.me, 1 ikzoekeengoedkopeauto.nl, 1 ikzoektim.nl, 1 @@ -73748,6 +73772,7 @@ ilitchcompanies.com, 1 iljadr.be, 1 ilkeston.cc, 1 +ilkmat.com, 1 illaadventure.com, 1 illadrodimerendine.it, 1 illambias.ch, 0 @@ -73765,7 +73790,6 @@ illinoiscaselaw.com, 1 illinoiscourtscommission.gov, 1 illinoiseagle.com, 0 -illinoisequipmentdistributors.com, 1 illinoishealth.tk, 1 illinoistitlesearch.com, 1 illiweb.com, 1 @@ -73777,6 +73801,7 @@ illu.ee, 1 illubel.com, 1 illumed.net, 1 +illumepgh.com, 1 illuminated-security.com, 0 illuminatelife.tk, 1 illuminaten.tk, 1 @@ -73792,7 +73817,6 @@ illustrate.digital, 1 illustratedteacup.com, 1 illuxat.com, 1 -illuzionclothing.com, 0 ilmaestro.net, 1 ilmainensanakirja.fi, 1 ilmanifesto.it, 0 @@ -73804,38 +73828,31 @@ ilondres.es, 1 ilonewolfs.com, 1 ilonpolku.fi, 0 -iloveasiancams.com, 1 -iloveawardcams.com, 1 -iloveboycams.com, 1 +ilosaarirock.com, 1 +ilovebee.com, 1 ilovecomputering.com, 1 ilovefanyi.win, 1 ilovefun.tk, 1 ilovegrowingmarijuana.com, 1 iloveherb.ru, 1 -ilovejoycams.com, 1 -ilovelivecams.com, 1 ilovelwy.com, 1 -ilovematurecams.com, 1 -ilovemycams.com, 1 iloveporn.ml, 1 -iloveprivatecams.com, 1 ilovesamara.tk, 1 ilovesnow.ml, 1 ilovestickers.gr, 1 ilovetaveuni.com, 1 -ilovetranniescams.com, 1 ilovewallpaper.tk, 1 iloveyoutoo.tk, 1 ilovias-farm.fr, 1 ilpescara.it, 1 ilpiacenza.it, 1 +ilpuntomagazine.it, 1 ilpuntosano.it, 1 ilrg.com, 1 ilrovescio.info, 1 ils-savaient.fr, 1 ils.lt, 1 ilsalvagente.it, 1 -ilsaperedelgusto.it, 1 ilsedelangeforum.tk, 1 iltec.ru, 1 iltis.live, 1 @@ -73876,12 +73893,18 @@ image.hosting, 1 image.tf, 1 image4arab.tk, 1 +imageagent.com, 1 imagealbums.tk, 1 imagebin.ca, 1 +imageboom.com, 1 imagecom.tk, 1 imageconsultingmalta.com, 1 imagecurl.com, 1 +imagefort.com, 1 imagefu.com, 1 +imagegarden.com, 1 +imagehood.com, 1 +imageink.com, 1 imagelr.com, 1 imagen891.tk, 1 imagenesdedibujosalapizfacilesdehacer.com, 1 @@ -73892,6 +73915,7 @@ imagerecall.tk, 1 imagerestorationcenter.com, 0 imagerive.ch, 0 +imagesbank.com, 1 imagetostl.com, 1 imageurs.com, 1 imagevillage.ir, 1 @@ -73944,10 +73968,12 @@ imawasn-consulting.com, 1 imaya.tk, 1 imb.com.au, 1 +imba.com, 1 imbd-pro.net, 1 imbianchino.roma.it, 1 imbit.tk, 1 imboom.tk, 1 +imboxing.co.uk, 1 imbrian.org, 1 imbunatatiri-logan.tk, 1 imbushuo.net, 1 @@ -73978,7 +74004,6 @@ imesh-light.tk, 1 imex-dtp.com, 1 imfacademy.com, 1 -imfblog.com, 1 imforza.com, 0 img.mg, 1 img.ovh, 1 @@ -74017,6 +74042,7 @@ imjo.in, 1 imjustcreative.com, 1 imkan.tours, 1 +imkerei-bad-oldesloe.de, 1 imkero.net, 1 imkerverein-moenchswald.de, 1 imkindofabigdeal.com, 1 @@ -74031,6 +74057,7 @@ imlonghao.com, 1 imls.gov, 1 imlwalking.org, 1 +immanuellutheranmedia.org, 1 immarypoppinsyall.tk, 1 immaterieelerfgoed.nl, 1 immaterium.de, 1 @@ -74340,11 +74367,11 @@ imsace.tk, 1 imstocker.com, 1 imtec-rohr.de, 1 -imtest.io, 1 imthi.com, 1 imtikai.ml, 1 imtikaib.ml, 1 imtools.gq, 1 +imtqy.com, 1 imttech.co, 1 imumed.cz, 1 imunify360.com, 1 @@ -74404,7 +74431,6 @@ inboxen.org, 1 inboxsms.tk, 1 inboxxme.com, 1 -inbudejovice.cz, 1 inc.studio, 1 incarceratedwombats.com, 1 incarter.ga, 1 @@ -74414,16 +74440,22 @@ incels.is, 1 incels.wiki, 1 inceneritore.ga, 1 +incenfit.com, 1 incent-fit.co, 1 incent-fit.com, 1 incent.fit, 1 incent.fitness, 1 incentafit.co, 1 +incentafit.com, 1 +incentbit.com, 1 incentea.com, 1 incentefit.co, 1 +incentefit.com, 1 incentehealth.com, 1 +incentfit.co, 1 incentfitness.com, 1 incentifit.co, 1 +incentifit.com, 1 incentihealth.com, 1 incentivefit.com, 1 incentivi.it, 1 @@ -74451,6 +74483,7 @@ incn.pp.ua, 1 incn.su, 1 incnjp.com, 1 +incntfit.com, 1 incognito.org.uk, 1 incoherent.ch, 1 income-earnings.tk, 1 @@ -74490,6 +74523,7 @@ indatable.com, 1 indecente.tk, 1 indeco.com.ec, 1 +indecofurniture.com, 1 indecomm.com, 1 indegene.com, 1 indeika.ml, 1 @@ -74579,6 +74613,7 @@ indianwomen.cf, 1 indiapostgdsonline.gov.in, 1 indiascience.in, 1 +indiasec.com, 1 indiatechblogger.cf, 1 indiatourhelp.tk, 1 indiatravel.ml, 1 @@ -74614,6 +74649,7 @@ indigosakura.com, 1 indigterms.com, 1 indihome.co.id, 1 +indihomeofficial.com, 1 indilens.com, 1 indimike.tk, 1 indinet.co.in, 1 @@ -74663,7 +74699,6 @@ indramdhani.net, 1 indranesia.tk, 1 indraq.tk, 1 -indreams.me, 1 indretningmedplanter.dk, 1 indst.eu, 1 indstocks.com, 1 @@ -74676,6 +74711,7 @@ indumentaria-arabe.tk, 1 induoloog.nl, 1 indusfastremit-us.com, 1 +indushospital.org.pk, 1 indust.me, 1 industreiler.com.br, 1 industriafranchini.com, 1 @@ -74702,6 +74738,7 @@ ineedtocheck.com, 1 ineffect.net, 1 inefin.tk, 1 +ineight.com, 0 inentertainment.com, 1 inertianetworks.com, 1 inesnutricion.com, 1 @@ -74774,6 +74811,7 @@ infinitenews.cf, 1 infinitenews.ml, 1 infiniteserieslabs.com, 1 +infinitewealth.com.au, 1 infinitiofallentownparts.com, 1 infinitiofaugustaparts.com, 1 infinitiofmarinparts.com, 1 @@ -74841,6 +74879,7 @@ info.go.th, 1 info.gov, 1 info2all.nl, 1 +info4all.com, 1 info4camper.com, 1 infoamin.com, 1 infoapis.net, 1 @@ -74849,6 +74888,7 @@ infobalkans.com, 1 infobanglanet.tk, 1 infobasquet.tk, 1 +infobellit.com, 1 infobiografi.com, 1 infobiznes.cf, 1 infobiznes.ga, 1 @@ -74870,7 +74910,6 @@ infocrypto.pl, 1 infocus.company, 1 infocusvr.net, 1 -infodesigners.eu, 1 infodesk.at, 1 infodis.com, 1 infoduv.fr, 1 @@ -74898,13 +74937,13 @@ infoland.ml, 1 infolead.tk, 1 infolibertaire.net, 1 -infolinks.top, 1 infomail-online.ml, 1 infomalin.fr, 1 infomarradi.it, 1 infomate360.com, 1 infomatricula.pt, 1 infomax.gr, 1 +infomeddnews.com, 1 infomega.fr, 1 infomexico.tk, 1 infomikulcice.cz, 1 @@ -74928,7 +74967,7 @@ inforeole.fr, 1 inforge.tk, 1 inforges.es, 1 -inforisktoday.com, 1 +inform.kz, 1 informa-his.de, 1 informace-zbozi.cz, 1 informaciondeciclismo.com, 1 @@ -75091,6 +75130,8 @@ infruction.com, 1 infstudios.nl, 1 infuse-mn.gov, 1 +infusemedia.com, 1 +infyz.com, 1 infyztoms.com, 1 ing, 1 ing-buero-junk.de, 1 @@ -75139,8 +75180,8 @@ inglessantacruz.tk, 1 inglestotal.tk, 1 ingo-schlueter.de, 1 -ingo-struck.com, 1 -ingo-struck.de, 1 +ingo-struck.com, 0 +ingo-struck.de, 0 ingoldingen.de, 1 ingolfsskali.is, 1 ingoschlueter.de, 1 @@ -75182,6 +75223,7 @@ init.ink, 1 init3.cn, 1 initblogger.com, 1 +initializeai.com, 1 initiative-2mai.de, 1 initiative-gegen-die-todesstrafe.de, 1 initiative20x20.org, 1 @@ -75211,7 +75253,6 @@ inkdawgz.com, 1 inkedin.com, 1 inkedindarkness.com, 1 -inkerotic.com, 1 inkerz.com.br, 1 inkflaremagazine.com, 1 inkforall.com, 1 @@ -75235,7 +75276,7 @@ inkubatori.tk, 1 inkurz.de, 1 inkvisual.tk, 1 -inkywanderer.com, 1 +inkywanderer.com, 0 inl.gov, 1 inl.int, 1 inlabo.de, 1 @@ -75261,6 +75302,7 @@ inmemoria.tk, 1 inmemorium.tk, 1 inmemoryofdaniella.com, 1 +inmigracionjusta.com, 1 inmo3.com.ec, 1 inmobanking.com.gt, 1 inmobiliaria-sanpablo.cl, 1 @@ -75283,6 +75325,7 @@ innatocol.com, 1 inncoaching.nl, 1 innectsphere.ca, 1 +innenraumgestaltung.com, 1 innenstadtkirche.de, 1 inner-change-mastery.com, 1 inner-vision.tk, 1 @@ -75349,7 +75392,6 @@ innovativeplumbingpros.com, 1 innovativetrials.com, 1 innovativeunderwriters.com, 1 -innoventity.in, 1 innover.se, 1 innoviafilms.com, 0 innoviahome.com, 1 @@ -75388,11 +75430,13 @@ inovalon.com, 1 inovalon.global, 1 inovangroup.com.tr, 1 +inovarmetaisonline.com.br, 1 inovasirumahku.tk, 1 inovatec.ca, 1 inovatec.com, 1 inovatecapi.com, 1 inovatecsystems.com, 1 +inovigo.eu, 1 inovigo.ro, 1 inovitec.ro, 1 inox-deurtrekkers.be, 1 @@ -75403,6 +75447,7 @@ inpas.co.uk, 1 inpdp.tk, 1 inpector.de, 1 +inphima.de, 1 inpresso.pl, 1 inprode.com, 1 inpulsetech.io, 1 @@ -75426,6 +75471,7 @@ insanedevs.com, 1 insanepyro.tk, 1 insanity.zone, 1 +insankamil.com, 1 insblauehinein.nl, 1 inscape.tv, 1 inschrijfformulier.com, 1 @@ -75461,7 +75507,6 @@ insideevs.com.tr, 1 insideevs.de, 1 insideevs.fr, 1 -insideevs.ru, 1 insidegnss.com, 1 insidehook.com, 1 insideperu.tk, 1 @@ -75476,7 +75521,7 @@ insiderx.com, 1 insidethefirewall.tk, 1 insidetheigloo.com, 1 -insideuniversal.net, 1 +insideuniversal.net, 0 insideview.com, 1 insightfulpsychics.com, 1 insighti.com, 1 @@ -75498,7 +75543,6 @@ insono.no, 1 insouciant.org, 1 insource.org, 1 -inspektre.io, 0 inspirascholen.be, 1 inspiration.gr, 1 inspirationallight.com, 1 @@ -75518,6 +75562,7 @@ inspiredology.com, 1 inspiremenow.top, 0 inspireplanner.com, 1 +inspiresandinnovate.com, 1 inspiresurgery.com, 1 inspiringhandsmassage.com, 1 inspiringtips.com, 1 @@ -75596,16 +75641,13 @@ instics.com, 1 instinctive-archery.de, 0 institutchroma.fr, 1 -instituteofabracadabra.nl, 1 instituto18denoviembre.tk, 1 institutoaccesibilidadweb.com, 1 institutoclaro.org.br, 1 institutoessencia.com, 1 institutofacial.com, 1 -institutogiuseppe.com, 1 institutogiuseppe.com.ar, 1 institutoliderar.edu.co, 1 -institutopensi.org.br, 1 institutovinton.com, 1 instocktho.cc, 1 instride.com, 1 @@ -75712,6 +75754,7 @@ integrisaviation.com, 1 integritet.com.se, 1 integrity.gov, 1 +integritydetail.com, 1 integrityfirstloans.com, 1 integrityglobal.com, 1 integrityhomecontractors.com, 1 @@ -75728,7 +75771,6 @@ intel.im, 1 intel69.cf, 1 intelalumni.org, 1 -intelbtc.com, 1 intelcapital.com, 1 intelekta.es, 1 intelhost.com.br, 1 @@ -75743,16 +75785,15 @@ intellego.de, 1 intellek.io, 1 intellektuaalomand.ee, 1 +intellesense.com, 1 intelliance.eu, 1 intellibill.io, 1 intellicore.cl, 1 intellicus.com, 1 -intellicyb.com, 1 intelligence-explosion.com, 1 intelligenetics.com, 0 intelligentglo.fi, 1 intelligentgo.org, 1 -intelligentlegalsolutions.co.uk, 0 intelligentnegotiator.com, 0 intelligentrics.com, 1 intelligentwaves.com, 1 @@ -75931,7 +75972,6 @@ internetbloger.tk, 1 internetbugbounty.com, 1 internetbugbounty.org, 1 -internetbusiness-howto.com, 1 internetcom.jp, 1 internetdagarna.se, 1 internetface.tk, 1 @@ -75980,7 +76020,7 @@ interplex.com, 1 interpol.gov, 1 interpoolme.com, 1 -interpretacjawynikowbadan.info.pl, 1 +interpret.cn, 1 interprete.tk, 1 intersectionconsultancy.co.uk, 1 intersein-landshut.de, 1 @@ -75991,7 +76031,6 @@ intersolute.de, 1 interspar.at, 1 interspence.com, 1 -intersport.com.kw, 1 interspot.nl, 1 interssl.com, 1 interstateautomotiveinc.com, 0 @@ -76011,7 +76050,6 @@ interverv.com, 0 interview-suite.com, 0 interview-test-taker.com, 1 -interviewme.pl, 1 interviewpipeline.co.uk, 1 interviewstarsers.ga, 1 interviewstarsest.ga, 1 @@ -76038,6 +76076,7 @@ intimat.it, 1 intimidad.tk, 1 intimznakomstvo.tk, 1 +intiverf.nl, 1 intl.pp.ua, 1 intl.su, 1 intlib.cn, 1 @@ -76064,6 +76103,7 @@ intraedge.com, 1 intrafi.com, 1 intralan.nl, 1 +intranasal.com, 1 intranet.dvag, 1 intranetcity.ch, 1 intranetconsultant.au, 1 @@ -76079,7 +76119,7 @@ intrepidmedia.tk, 1 intrepy.com, 1 intrigue3d.com, 1 -intrixgroup.com, 1 +intrixgroup.com, 0 intrnl-api.ru, 1 intro.co, 0 intro.management, 1 @@ -76090,6 +76130,7 @@ intrum-credit-information-ws.ch, 1 intstyle.com.ua, 1 intsys.fi, 1 +intuitionmedicine.org, 1 intux.be, 0 intvonline.com, 1 intxt.net, 1 @@ -76139,6 +76180,7 @@ inventos.tk, 1 inventoseinventores.com, 1 inventum.cloud, 1 +inveny.fr, 1 inveris.de, 1 inverness.gov, 1 inversegravity.net, 1 @@ -76232,7 +76274,6 @@ invictuscapital.com, 1 invictuscustodia.com, 1 invictuspharmacy.com, 1 -invidious.rocks, 1 invidis.de, 1 invisacore.com, 1 invisia.com.br, 1 @@ -76286,13 +76327,13 @@ inzichtmeditatie.nl, 1 inzidenz.eu, 1 inzite.com, 1 +io-markets.com, 0 io.kg, 1 io.nl.eu.org, 1 io88.win, 1 ioanamateas.ro, 1 ioanavisan.tk, 1 iobint.com, 1 -iochen.com, 1 iochicago.net, 1 iocorp.jp, 1 iocp.org, 0 @@ -76329,6 +76370,7 @@ ionhowto.com, 1 ionicframework.com, 0 ionicshop.xyz, 1 +ionita.com, 1 ionize.cloud, 1 ionlabs.kr, 1 ionline.ml, 1 @@ -76362,6 +76404,7 @@ iotjenik.eu, 1 iotmu.com, 1 iotportal.tk, 1 +iotrasloco.it, 1 iotsec.site, 1 iotsms.io, 1 ioville.com, 1 @@ -76408,6 +76451,7 @@ ipadizate.es, 1 ipadkaitori.jp, 0 ipadr.is, 1 +ipadresse.de, 1 ipal.im, 1 ipal.name, 1 ipal.tel, 1 @@ -76476,7 +76520,6 @@ ipmsdeutschland.de, 1 ipnoze.com, 1 ipnrt.net, 1 -ipo.inf.br, 1 ipoac.be, 1 ipoac.nl, 1 ipofferings.com, 1 @@ -76493,6 +76536,7 @@ ipplans.com, 1 ippo-juku.com, 1 ippo.org.uk, 1 +ippudo.com.cn, 1 iprcenter.gov, 1 iprep.it, 0 ipresent.com, 1 @@ -76533,7 +76577,6 @@ iptvfriend.ga, 1 iptvmasters.fr, 1 iptvmiro.com, 1 -iptvsmartersfr-pro.com, 1 iptvsubscriptiontv.com, 1 iptvzoom.xyz, 1 ipty.de, 1 @@ -76564,7 +76607,6 @@ iqcybersolutions.com, 1 iqor.com, 1 iqos.ml, 1 -iqpc.com, 1 iqphone.cf, 1 iqphone.ga, 1 iqr2.com, 1 @@ -76667,6 +76709,8 @@ irgat.net.tr, 1 irgendwiejuedisch.com, 1 irgit.pl, 1 +irian.com, 1 +iridium-patrimoine.fr, 1 iriemag.com, 1 irina-beauty.de, 1 irinaf.tk, 1 @@ -76700,6 +76744,7 @@ irismq.fr, 1 irisnk.me, 1 irisopenspace.co.uk, 1 +irissoftware.com, 1 irisws-development.co.uk, 1 irisws-staging.co.uk, 1 irisws-testing.co.uk, 1 @@ -76708,7 +76753,6 @@ irkutsk-studygood.ga, 1 irkutsk38.tk, 1 irland-firma.com, 1 -irlandatambascio.com, 1 irlfp.com, 1 irlpack.pl, 1 irlprable.tk, 1 @@ -76760,6 +76804,7 @@ ironwaytransport.com, 1 ironwind.ga, 1 ironwolftechnology.com, 1 +ironwoodlabs.net, 1 ironwoodmi.gov, 1 ironycats.net, 1 iroomz.co.uk, 1 @@ -76774,6 +76819,7 @@ irscouponsers.ga, 1 irscouponsest.ga, 1 irse.org, 1 +irstaxforumonline.com, 1 iruca.co, 1 iruniruten.tk, 1 iruoy.com, 1 @@ -76795,6 +76841,7 @@ is-and.com, 1 is-cloud.ddns.net, 1 is-coming-for-you.run, 1 +is-fund.com, 1 is-in-hyper.space, 1 is-news.today, 1 is-real.xyz, 1 @@ -76895,7 +76942,6 @@ ishibashi-shitamachiclub.com, 1 ishigurodo.com, 1 ishiharaken.com, 1 -ishii.blog, 1 ishii.de, 1 ishikawadc.jp, 1 ishimen.co.jp, 1 @@ -76999,9 +77045,9 @@ islief.com, 1 islightdown.today, 1 islikimas.lt, 1 +islipny.gov, 0 islykaithecutest.cf, 1 islykaithecutest.ml, 1 -ismaeltech.com, 1 ismail-biber.tk, 1 ismailtoraman.com, 1 ismailtoraman.com.tr, 1 @@ -77028,6 +77074,7 @@ isolation-exterieure-facade.com, 1 isolation-exterieure-thermique.fr, 1 isolation-par-exterieur.net, 1 +isolation-thermique-exterieur.net, 1 isolation-thermique-exterieure.fr, 1 isolation-thermique.maison, 1 isolde.com, 1 @@ -77128,7 +77175,6 @@ ista-vdm.at, 1 istagb.ga, 1 istanbul.systems, 1 -istanbulairportassistme.com, 1 istanbulblog.tk, 1 istanbuleskort.tk, 1 istanbulhaberleri.tk, 1 @@ -77225,6 +77271,7 @@ it-service24.com, 1 it-stack.de, 1 it-stek.ru, 1 +it-support-schmid.ch, 1 it-tainment.de, 1 it-tekniker.nu, 1 it-ti.me, 1 @@ -77244,6 +77291,7 @@ itabenar.tk, 1 itactiq.com, 1 itactiq.info, 1 +itaguai.com, 1 itaiferber.net, 1 itaja.com, 1 itakunai-shika.com, 1 @@ -77260,7 +77308,6 @@ italianerd.it, 1 italianettepizza.com, 1 italianfoodonlinestores.com, 1 -italianforkids.com.au, 1 italianhelper.com, 1 italianhospitalitycollection.com, 1 italianluxuryinter.cf, 1 @@ -77282,6 +77329,7 @@ italk.ml, 1 italyinspires.com, 1 italyisbeautiful.com, 1 +italymade.com, 1 italyspecialty.coffee, 1 itamservices.nl, 1 itap.gov, 1 @@ -77292,6 +77340,9 @@ itascacountymn.gov, 1 itaseguroviagem.com.br, 1 itasolution.it, 1 +itbar.com, 1 +itbfrance.fr, 1 +itbj.com, 1 itbn.hu, 1 itbog.org, 1 itbolagmedipv6.se, 1 @@ -77326,6 +77377,7 @@ itds-consulting.eu, 1 itdutchie.com, 1 itechfast.tk, 1 +itechhacks.com, 1 itechpros.com.au, 1 itecor.net, 0 itecusa.org, 1 @@ -77360,6 +77412,8 @@ itfh.eu, 0 itfirmaet.dk, 1 itfix.org.uk, 1 +itfj.com, 1 +itfounder.com, 1 itg.com.pl, 1 itg.net.pl, 1 itgadgetsonline.com, 1 @@ -77404,6 +77458,7 @@ itmedicinai.lt, 1 itmg.co, 1 itmindscape.com, 1 +itmoto.com, 1 itms.co.jp, 1 itnet.com.ua, 1 itnota.com, 1 @@ -77421,6 +77476,7 @@ itparty.tk, 1 itpaukku.tk, 1 itpedia.nl, 1 +itpeox.com, 1 itperm.tk, 1 itplace.bg, 1 itpol.dk, 1 @@ -77434,10 +77490,10 @@ itraffic.tk, 1 itraincalisthenic.com, 1 itraveille.fr, 1 -itravelbg.com, 0 itraveller.net, 1 itreboot.co.nz, 1 itrendbuzz.com, 1 +itreply.com, 1 itrezzo.com, 1 itrio.pet, 1 itrodeo.com, 1 @@ -77482,6 +77538,7 @@ itsecrnd.com, 1 itsecuritycoach.com, 1 itseeze.com, 1 +itself.com, 1 itservis.org, 1 itsevann.com, 1 itsevident.com, 1 @@ -77493,9 +77550,11 @@ itshka.rv.ua, 1 itsig-faq.de, 1 itslife.in, 1 +itslolly.com, 1 itsloution.tk, 1 itsm.tools, 1 itsmeaxel.ovh, 1 +itsmeit.co, 1 itsmyparty.ie, 1 itsnotnot.tk, 1 itsnotquitethehilton.com, 0 @@ -77527,6 +77586,7 @@ itt-shop.com, 1 itt-us.com, 1 ittgame.tk, 1 +ittm.com, 1 ittreservations.com, 1 ittykins.com, 1 itunesgiftcard.in.th, 1 @@ -77562,11 +77622,11 @@ itzamnaxelahomestay.tk, 1 itzap.com.au, 1 itzer.de, 1 -itzgeek.com, 1 -itzine.ru, 0 +itzine.ru, 1 itzkavin.tk, 1 itzlive.tk, 1 iubuniversity.tk, 1 +iune.com, 1 iupibaby.pt, 1 iuppiter-ssd.it, 1 iusedtobelieve.com, 1 @@ -77587,6 +77647,7 @@ ivandafish.net, 1 ivanderevianko.com, 1 ivanesalud.com, 1 +ivaniglesias.es, 1 ivanilla.org, 1 ivanime.com, 1 ivankuchin.tk, 1 @@ -77664,6 +77725,7 @@ ivyseeds.cf, 1 iw.net.sa, 1 iwaidental.jp, 1 +iwaiting.com, 1 iwalton.com, 1 iwant.cz, 1 iwantexchange.com, 1 @@ -77693,7 +77755,6 @@ iwf.sport, 1 iwhite.tk, 1 iwiki.net, 1 -iwm.digital, 1 iwmf.ir, 1 iwonder.tw, 1 iwp.ch, 1 @@ -77747,7 +77808,6 @@ izbansaatleri.com, 1 izbirateli.com, 1 izecubz.me, 1 -izemporium.com, 1 izeno.com, 1 izhevsk-news.net, 1 izi-agency.com, 1 @@ -77798,6 +77858,7 @@ j-ph.ovh, 1 j-robertson.com, 1 j-step.or.jp, 1 +j-storm.com, 1 j.ac, 1 j.wtf, 1 j00228.com, 1 @@ -77834,7 +77895,6 @@ j70333.com, 0 j70444.com, 0 j70555.com, 0 -j82365.com, 1 j8jp.com, 1 j9297.co, 1 j9514.com, 0 @@ -78020,6 +78080,7 @@ jafarmehdipor.ga, 1 jag-meccar.tk, 1 jagadhatrionline.co.in, 0 +jagaimo.works, 0 jagan.be, 1 jagar.com.pl, 1 jagbouncycastles.co.uk, 1 @@ -78276,6 +78337,7 @@ janmischo.it, 1 jann.is, 1 jannehonkonen.tk, 1 +jannekekaasjager.nl, 0 jannes-althoff.de, 1 jannesmeyer.com, 0 jannetaflorist.com, 1 @@ -78321,6 +78383,7 @@ japan-forum.nl, 1 japan-tent.com, 1 japan-xxxtube.com, 1 +japanactivationcapital.com, 1 japanasonic.ru, 1 japancarts.ru, 1 japanchiropractic.com.br, 1 @@ -78433,8 +78496,6 @@ jasminetroll.net, 1 jasminka.cz, 1 jasminlive.cam, 1 -jasminsangels.com, 1 -jasminslife.com, 1 jasminum.uk, 1 jasmyn.tk, 1 jasomill.at, 1 @@ -78517,11 +78578,11 @@ javiscoffee.com, 1 javitron.tk, 1 javleech.com, 1 +javlin.com, 1 javna.com, 1 javorina.tk, 1 javsod.top, 1 jawharati.tk, 1 -jawo2008.pl, 1 jaxfstk.com, 1 jaxxnet.co.uk, 1 jay4.is, 1 @@ -78552,9 +78613,9 @@ jaysanart.com, 0 jaysaw.me, 1 jayschulman.com, 0 +jayshettycoaching.com, 1 jayspage.tk, 1 jayspov.net, 1 -jaytauron.xyz, 1 jaytx.com, 1 jayveel.nl, 1 jayxon.com, 1 @@ -78582,7 +78643,6 @@ jb0.de, 1 jb138.cc, 1 jbarzoutfitters.com, 0 -jbayetsecretariat.be, 1 jbbd.fr, 1 jbbdev.com, 1 jbc88.cc, 1 @@ -78608,7 +78668,6 @@ jbsoftware.ca, 1 jbt-stl.com, 1 jc.org, 1 -jc0b.computer, 1 jc6.xyz, 1 jcadg.com, 1 jcaicedo.com, 1 @@ -78617,6 +78676,7 @@ jcatechnologies.com, 1 jcb.com, 1 jcbank.com, 1 +jcbank.com.jo, 1 jcbaterias.com.br, 1 jcbgolfandcountryclub.com, 1 jccars-occasions.be, 1 @@ -78624,9 +78684,9 @@ jcchouinard.com, 1 jccomunicaciones.net, 1 jcdenast.tk, 1 -jcegs.com, 1 jcelectronics.com.au, 1 jcf-office.com, 1 +jcgp.com, 1 jchn.be, 1 jci.bio, 1 jci.care, 1 @@ -78689,7 +78749,6 @@ jcouncil.org, 1 jcphotography.dk, 1 jcra.net, 1 -jcrer.com.tr, 1 jcrhcdwy.gov, 1 jcrobin56.fr, 1 jcrooke.net, 1 @@ -78701,6 +78760,7 @@ jcvignoli.com, 1 jcwebtechnologies.com, 1 jcwodan.nl, 1 +jcx.se, 1 jd-group.co.uk, 0 jd-trust.com, 1 jd1.de, 1 @@ -78780,6 +78840,7 @@ jecjacshop.com, 1 jecnetwork.gq, 1 jed.site, 1 +jeda.ch, 1 jeda.im, 1 jedatw.com, 1 jedayoshi.me, 1 @@ -78880,7 +78941,6 @@ jellypepper.com, 1 jellysquid.me, 1 jelmer.co.uk, 1 -jelmer.uk, 1 jelmyto.com, 0 jelo.tk, 1 jelobox.tk, 1 @@ -78893,7 +78953,6 @@ jemezsprings-nm.gov, 1 jemnezymy.com, 1 jemoreng.tk, 1 -jemputan-karyawan.site, 1 jems-il.gov, 1 jemshoes.com, 1 jemyzdrowo.pl, 1 @@ -78915,6 +78974,7 @@ jenileephotographyphotos.com, 1 jenin.ml, 1 jeniusbank.com, 1 +jenkins.digital, 1 jenkinscountyga.gov, 1 jenkinsry.fi, 1 jenn-pro-graphics.com, 1 @@ -78990,6 +79050,7 @@ jeroened.be, 1 jeroenensanne.wedding, 1 jeroengui.be, 1 +jeroenstekelenburg.nl, 1 jerome-r.tk, 1 jerome.to, 1 jeromecountyid.gov, 1 @@ -79056,7 +79117,6 @@ jessieabraham.tk, 1 jessiecharlie.com, 1 jessihod.com, 1 -jessika-atelier.nl, 1 jessitrigg.com, 1 jesslynfietje.com, 1 jessnitz.com, 1 @@ -79090,7 +79150,6 @@ jetcraft.tk, 1 jetdrywallinteriors.com, 1 jetedhumain.fr, 1 -jetfirenetworks.com, 1 jetflex.de, 1 jethash.io, 1 jetkittens.co.uk, 1 @@ -79127,6 +79186,7 @@ jevel-mag.tk, 1 jeveuxchoisir.fr, 1 jevisite.ca, 1 +jevremovic.org, 1 jewadianmitra.co.id, 1 jewadvert.ml, 1 jewaedv.de, 1 @@ -79149,9 +79209,9 @@ jezero.tk, 1 jezura.cz, 1 jezzicat.org, 1 -jf-beco.pt, 1 +jf-beco.pt, 0 jf-fotos.de, 1 -jf-igrejanovadosobral.pt, 1 +jf-igrejanovadosobral.pt, 0 jf-madalena.tk, 1 jf-sulpice.notaires.fr, 1 jf886.cc, 1 @@ -79166,10 +79226,12 @@ jfhr.me, 1 jfjtransport.com, 1 jfklibrary.gov, 1 +jfkvirtual.com.co, 1 jflmsan.pt, 1 jfmdevelopment.ml, 1 jfml.lu, 1 jfon.no, 1 +jforest.com, 1 jforma.it, 1 jforums.org, 1 jfr.im, 1 @@ -79214,12 +79276,12 @@ jhaveri.net, 1 jhbgroup.nl, 1 jhburton.co.uk, 1 +jhby.com, 1 jhcommunitysports.co.uk, 1 jhdindustrialsolution.com, 1 jhe.li, 1 jhellings.nl, 1 jhenwei.com.tw, 1 -jhfunerals.com.au, 1 jhill.de, 1 jhj.jp, 1 jhmrcm.com, 1 @@ -79256,8 +79318,10 @@ jianyuan.art, 1 jianyuan.pro, 1 jianyv.com, 1 +jianzhan.com, 1 jiaoliuben.com, 1 jiaoyu8.cn, 1 +jiaozhun.com, 1 jiaqiang.vip, 1 jiatingtrading.com, 1 jiaty.com, 1 @@ -79278,14 +79342,18 @@ jidlosro.info, 1 jidlosro.sk, 1 jidlosromanem.cz, 1 +jiechu.com, 1 +jiedao.com, 1 jiehun.com.cn, 1 jiehunlifu.com, 0 +jieli.com, 1 jieli.wang, 1 jieshangwei.com, 0 jieyang2016.com, 1 jif.gc.ca, 1 jigidi.com, 1 jigsawplanet.com, 1 +jiguang.com, 1 jigyoushoukei.co.jp, 1 jiheng.tk, 1 jiid.ga, 1 @@ -79371,6 +79439,7 @@ jingbo.fan, 1 jinglebugs.co.nz, 1 jingmi.com.tw, 1 +jingtu.com, 1 jinhaagency.com, 1 jinhaagency1.com, 1 jinja.ai, 1 @@ -79384,6 +79453,7 @@ jinng.org, 1 jino.gq, 1 jinshabu.net, 1 +jinspace.net, 1 jintaiyang123.org, 1 jinzai-ikusei.org, 1 jiogo.com, 1 @@ -79403,9 +79473,11 @@ jiserack.com, 1 jisnashville.gov, 1 jitendrapatro.me, 1 +jitkamahdalova.cz, 1 jitprod.com, 1 jitsipatapoe.ddns.net, 0 jittruckparts.com, 1 +jiudao.com, 1 jix.im, 1 jixing.one, 1 jixun.eu, 1 @@ -79501,6 +79573,8 @@ jmb-jetshades.com, 1 jmb.lc, 1 jmbaxi.com, 1 +jmbaxico.com, 1 +jmbaximarineservices.com, 1 jmbproject.ga, 1 jmburgos.es, 1 jmcataffo.com, 1 @@ -79541,7 +79615,6 @@ jmsquall.tk, 1 jmssg.jp, 1 jmstfv.com, 1 -jmsystems.sk, 1 jmtk.co, 1 jmwsquared.com, 1 jmy.fyi, 1 @@ -79616,6 +79689,7 @@ jobit.gr, 1 joblife.co.za, 1 joblover.ml, 1 +joblyconnect.com, 1 jobmacon.com, 1 jobmonkey.com, 1 jobnmadu.com, 1 @@ -79733,6 +79807,7 @@ joeyhoer.com, 1 joeysglassbaytown.com, 1 joeysmith.com, 0 +joeysslimeventure.com, 1 joeyvanvenrooij.nl, 1 joeyvilaro.com, 1 jofel-kinderkleding.tk, 1 @@ -79810,7 +79885,6 @@ johnlockepainting.com, 1 johnlowryspartancapital.com, 0 johnmalloneemd.com, 0 -johnmcc.net, 1 johnmcintosh.pro, 1 johnmichel.org, 1 johnmillerdesign.com, 1 @@ -79823,6 +79897,7 @@ johnnydoe.tk, 1 johnnyinscatola.it, 1 johnnyofans.com, 1 +johnnyrelease.de, 1 johnnysandaire.com, 1 johnocallaghan.tk, 1 johnopdenakker.com, 1 @@ -79840,6 +79915,7 @@ johnsonroofingltd.co.nz, 1 johnsons-wellfield.co.uk, 1 johnsons.tk, 1 +johnsonsca.com, 1 johnsonscorporate.com.au, 1 johnsonsexpress.com, 1 johnspion.tk, 1 @@ -79880,7 +79956,6 @@ jointheconversationnotl.org, 1 jointherlworld.com, 1 jointheunseen.com, 1 -jointlearningnetwork.org, 1 jointotem.com, 1 jointsache.com, 1 joinupguard.com, 1 @@ -79894,6 +79969,7 @@ jokertv.ovh, 1 jokesbykids.com, 1 jokewignand.nl, 1 +jokinglybad.tech, 1 joksara.tk, 1 jolette-hernandez.tk, 1 joletteperu.tk, 1 @@ -79919,6 +79995,7 @@ jomjohor.my, 1 jomla.ae, 1 jomo.tv, 1 +jomslot.com, 1 jomsolat.tk, 1 jon.es, 1 jonadamich.tk, 1 @@ -79943,6 +80020,7 @@ jonaskoeritz.de, 1 jonaskruckenberg.de, 0 jonaslovatouniverse.tk, 1 +jonasvildmark.com, 1 jonaswitmer.ch, 1 jonatan.gq, 1 jonathan-apps.com, 1 @@ -80016,7 +80094,7 @@ jonslife.tk, 1 jonssheds.com, 1 jonstar.tk, 1 -jonvemo.com, 1 +jonvemo.com, 0 jony.tk, 1 joo.ru, 1 joodari.fi, 1 @@ -80031,7 +80109,6 @@ joomla-ua.org, 1 joomladeveloper.ru, 1 joomlaguru.pl, 0 -joompress.biz, 1 joona.pw, 1 joone.org, 1 joonstudios.com, 1 @@ -80051,6 +80128,7 @@ jordan-jungk.de, 1 jordancards.com, 1 jordanhamilton.me, 1 +jordanjherrera.com, 1 jordanlys.com, 1 jordanmetal.tk, 1 jordanmlu.nl, 1 @@ -80264,6 +80342,7 @@ joyousisle.com, 1 joysinventingblog.com, 1 joystickblog.tk, 1 +joytoday.com, 1 jozefkvasnica.tk, 1 jozefmichalmintal.com, 1 jozefmutis.com, 1 @@ -80296,7 +80375,6 @@ jplennard.com, 1 jpmguitarshop.com.br, 1 jpmorganaccess.com, 1 -jpope.org, 1 jppc.net, 1 jppcadvertising.com, 1 jpr.io, 1 @@ -80310,6 +80388,7 @@ jpshop.ru, 1 jpsinflatables.co.uk, 1 jpst.it, 1 +jptv4.us, 1 jpvermogensregie.com, 1 jpvisual.com, 1 jqlin.com, 1 @@ -80361,7 +80440,6 @@ js-webcoding.de, 1 js5203344.com, 1 js6868.cc, 1 -js889.com, 1 js93029.com, 1 jsautomation.co.za, 1 jsbentertainment.nl, 1 @@ -80385,7 +80463,7 @@ jsfloydlaw.com, 0 jsg.hk, 1 jsgr.ca, 1 -jsh.marketing, 1 +jsh.marketing, 0 jsh918.com, 1 jsheard.co.uk, 1 jsheard.com, 1 @@ -80435,7 +80513,6 @@ jtafla.com, 1 jtcat.com, 1 jtconsultancy.sg, 1 -jtech.com.br, 1 jtfew.co.uk, 1 jtglobal.com, 1 jtkconstructiongroup.com, 1 @@ -80468,7 +80545,6 @@ juancatalangomez.es, 1 juanfrancisco.tech, 1 juanitia.com, 1 -juanitofatas.com, 1 juanjomontecinos.tk, 1 juanmanuel.tk, 1 juanmapauso.tk, 1 @@ -80520,6 +80596,7 @@ judykatura.pl, 1 juegos-play.com, 1 juegosycodigos.mx, 1 +juejin.com, 1 juergaperu.tk, 1 juergen.tk, 1 juergenhecht.de, 1 @@ -80529,8 +80606,10 @@ juergmeier.ch, 1 jufem.tk, 1 juffalow.com, 1 +jugendfrei.com, 1 jugendhackt.de, 1 jugendhackt.org, 1 +jugendpresse-hessen.de, 1 jugh.de, 1 juhakoho.com, 1 juhanihakala.fi, 1 @@ -80609,7 +80688,6 @@ juliekoubova.cz, 1 juliekoubova.name, 1 juliekoubova.net, 1 -juliekproperties.com, 1 juliemaurel.fr, 1 julien-demare.com, 0 julien-noyelle.com, 1 @@ -80661,7 +80739,6 @@ jumparoundbouncycastles.co.uk, 1 jumparty.co.uk, 1 jumpbuttonnorth.com, 1 -jumpcloud.com, 1 jumpeasy.com.au, 1 jumperke.be, 1 jumperweb.tk, 1 @@ -80732,6 +80809,7 @@ junjun-web.net, 0 junkcarbin.com, 1 junkcarboys.ca, 1 +junkcarremovalbrampton.ca, 1 junkdrome.org, 0 junkersparadise.tk, 1 junkfoodcafe.com, 1 @@ -80793,6 +80871,7 @@ juschek.net.au, 1 juschekantigentest.com.au, 1 juschekrapid.au, 1 +jusdocs.com, 1 jusdos.cz, 1 jusfitness.com.au, 1 jusha.cz, 1 @@ -80864,7 +80943,6 @@ justice.gc.ca, 1 justice.gov, 1 justicedoll.org, 1 -justiceforjameela.org, 1 justifinetwork.com, 1 justin-tech.com, 1 justin3d.nl, 1 @@ -80936,7 +81014,7 @@ jvbouncycastlehire.co.uk, 1 jvdham.nl, 1 jvega.me, 1 -jvenglishtutor.com, 1 +jvenglishtutor.com, 0 jvetter.net, 1 jvianes.ddns.net, 1 jvlfinance.cz, 1 @@ -80973,7 +81051,6 @@ jwpoore.com, 1 jwr.me, 1 jwroberts.com, 1 -jwschuepfheim.ch, 1 jwz.org, 1 jxcad.com.cn, 1 jxdsp.com, 1 @@ -81015,6 +81092,7 @@ k-system.de, 1 k-will.tk, 1 k.sh, 1 +k.sk, 1 k.tt, 1 k1024.org, 1 k123123.com, 1 @@ -81069,7 +81147,6 @@ k87131.com, 0 k87133.com, 0 k87136.com, 0 -k87210.com, 1 k875.co, 0 k88107.com, 0 k88116.com, 0 @@ -81087,6 +81164,7 @@ k8dalao.com, 1 k8didi.com, 1 k8gege.com, 0 +k8ja.co.ke, 1 k8jiejie.com, 0 k8laosiji.com, 1 k8meimei.com, 1 @@ -81173,7 +81251,6 @@ kadence.tk, 1 kadenlegion.com, 1 kader-platform.nl, 1 -kadeshcdc.org, 0 kadestate.ru, 1 kadet.net.ru, 1 kadett-c-club-limburg.tk, 1 @@ -81341,10 +81418,10 @@ kalaspuffar.se, 1 kalastus.com, 1 kaldewei.com, 1 -kaldi.com, 1 kaleidoscope.co.uk, 1 kaleidoscopepsychology.co.nz, 1 kalek.eu, 1 +kalendar.com.hr, 1 kalendarabiturienta.tk, 1 kalender.com, 1 kalender.goip.de, 1 @@ -81422,6 +81499,7 @@ kamata-saisyuusyou.com, 1 kamata-shinkyu-seikotsu.jp, 1 kamataryo.com, 1 +kamataworks.com, 1 kamatoycleaner.com, 1 kamazuri.art, 1 kambistories.com, 1 @@ -81470,7 +81548,6 @@ kampanyaradar.com, 1 kampffische.tk, 1 kampfsportschule-einherjar.de, 1 -kampioenwebsites.nl, 1 kampkoetter.de, 1 kampova.sk, 1 kamppailusali.fi, 1 @@ -81523,7 +81600,6 @@ kanduit.live, 1 kanduit.tech, 1 kandwliquor.com, 1 -kandycoated.com, 0 kanecastles.com, 1 kanecountyhospitalut.gov, 1 kanecountyil.gov, 1 @@ -81538,7 +81614,9 @@ kangaroos.org, 1 kangaroosgardencentre.ca, 1 kangavar.tk, 1 +kangbo.com, 1 kangdaniel.cn, 1 +kangde.com, 1 kangia.gl, 1 kangkai.me, 1 kangkang.net, 1 @@ -81580,6 +81658,7 @@ kansasvoterinfo.gov, 1 kanshuluo.com, 1 kansspel.nu, 1 +kantai.com, 1 kantankye.nl, 1 kantoorboel.nl, 1 kantora-ivanova.eu, 1 @@ -81599,10 +81678,13 @@ kaodata.com, 1 kaohongshu.blog, 1 kaora.cz, 1 +kaoshi.com, 1 kaosintesta.tk, 1 kap-kirche.de, 1 kap.pe, 1 +kapaci.com, 1 kapageridis.com, 1 +kapakinig.org, 1 kapamed.ro, 1 kapanlagi.gq, 1 kapelya.gq, 1 @@ -81675,10 +81757,12 @@ karateclub-waregem.tk, 1 karatepunkslaroca.tk, 1 karatesamurai.tk, 1 +karavan-ua.vip, 0 karawane.tk, 1 karayollarimisafirhanesi.com, 1 karaz.ps, 1 karbox.de, 1 +kardac.com, 1 kardia-bordeauxdoggen.tk, 1 kardize24.pl, 1 kardjali.bg, 1 @@ -81712,7 +81796,6 @@ karimsaadati.tk, 1 karimunsejahtera.com, 1 karin-ewald.de, 1 -karinagallagher.com, 1 karinahh.net, 1 karinheinenmaassen.nl, 1 karinov.co.id, 1 @@ -81721,7 +81804,6 @@ karit.nz, 1 kariyermemur.com, 1 kariyeryolu.com.tr, 1 -karkkainen.com, 1 karkkilandemarit.fi, 1 karl-klein.de, 1 karlamouracortinas.com, 1 @@ -81758,7 +81840,6 @@ karmil.tk, 1 karneid.info, 1 karniz.ml, 1 -karo.pc.pl, 1 karoche.ga, 1 karodos.pl, 1 karol.gay, 1 @@ -81769,6 +81850,7 @@ karosello.com, 0 karoverwaltung.de, 1 karpanhellas.com, 0 +karpatinfo.net, 1 karpaysa.com, 1 karperontspanning.tk, 1 karperpagina.tk, 1 @@ -81800,6 +81882,7 @@ kartenplanet.ch, 1 kartikmohta.com, 1 karting-normandie.fr, 0 +kartingzone.ru, 1 kartoffel-stampfer.com, 1 kartoffel-tobi.de, 1 kartonki.tk, 1 @@ -81818,6 +81901,7 @@ kasasaprotect.com, 1 kasaysayan.tk, 1 kasbahofpeace.com, 1 +kasc.finance, 1 kasei.im, 1 kasepuhan.com, 1 kaserne-basel.ch, 1 @@ -81871,7 +81955,6 @@ kastelruth.biz, 1 kastemperaturen.ga, 1 kastgroup.com, 1 -kastmedia.com, 1 kastorsky.ru, 0 kastrup.is, 1 kastrupvinduet.dk, 1 @@ -81885,7 +81968,6 @@ kat.tf, 0 kat4at.tk, 1 katabump.com, 1 -katachistore.com, 1 katagena.com, 1 kataiszilveszter.hu, 0 katalog-parfyum.tk, 1 @@ -82005,6 +82087,7 @@ kauperwood.ovh, 1 kaushal.tk, 1 kausharach.tk, 1 +kaushikparui.com, 1 kausta.me, 1 kaustubhk.com, 1 kava.io, 1 @@ -82031,7 +82114,6 @@ kawaii.su, 1 kawaiicon.org, 1 kawaiifashionshop.com, 1 -kawaiiku.com, 1 kawaiiku.de, 1 kawaiilo.li, 1 kawaitomato.com, 1 @@ -82085,7 +82167,6 @@ kaznice.art, 1 kaznur.tk, 1 kazoohr.com, 0 -kazpolis.ru, 1 kaztest.tk, 1 kazu-techlab.com, 1 kazu.click, 1 @@ -82132,6 +82213,7 @@ kbizoom.com, 1 kbleventhire.co.uk, 1 kbmhawaii.com, 1 +kbobath.com, 1 kboosting.com, 1 kbsinflatablekingdom.co.uk, 1 kbst.se, 0 @@ -82185,6 +82267,7 @@ kdistech.nz, 1 kdizain.ru, 1 kdk.com.my, 1 +kdm.pw, 1 kdn-dc.com, 1 kdo-vola.cz, 1 kdonkers.com, 1 @@ -82216,12 +82299,14 @@ kebabbesteld.nl, 1 kebabbruce.com, 0 kebabsanfior.it, 1 +kebiao.com, 1 kebo.xyz, 1 keca.ca, 1 kech-immobilier.com, 1 kecht.at, 1 keckmedicine.org, 1 kecrily.me, 1 +kedao.com, 1 kedero.com, 1 kedhtm.us.kg, 1 kedi.tk, 1 @@ -82239,7 +82324,6 @@ keechain.io, 1 keeckee.ml, 1 keeforcecloud.com, 1 -keek.info, 1 keekee.tk, 1 keekmix.nl, 1 keelandlong.com, 1 @@ -82260,6 +82344,7 @@ keepa.com, 1 keepagree.gq, 1 keepclean.me, 0 +keepcoolnewmom.com, 1 keeperapp.com, 1 keepersecurity.com, 1 keepersecurity.com.au, 1 @@ -82269,9 +82354,9 @@ keepiteasy.eu, 1 keepitsecure24.com, 1 keepitsimplebitcoin.com, 1 -keepitweedy.com, 1 keepleft.gr, 1 keepsight.org.au, 1 +keepsmyrnabeautiful.com, 1 keepsolid.com, 1 keesmartens.tk, 1 keesslop.nl, 1 @@ -82379,7 +82464,6 @@ kellyswordshop.com, 1 kellyvoice.tk, 1 kellywebcam.tk, 1 -kelme.com, 1 keln.net, 1 kelp.agency, 0 kelsa.io, 0 @@ -82411,6 +82495,7 @@ kempercountysheriff.com, 1 kempkens.io, 1 kempnertx.gov, 1 +kemppi.com, 1 kempportraits.com, 1 kemptechnologies.com, 0 kemptonparkplumbing.co.za, 1 @@ -82438,8 +82523,10 @@ kendermore.it, 1 kendernet.com, 1 kendev.com, 1 +kendier.com, 1 kendigawards.com, 1 kendle.tk, 1 +kendo-ueda.com, 1 kendrick.tk, 1 kendu.si, 0 kenduct.net, 1 @@ -82457,7 +82544,6 @@ kennebec.gov, 1 kennedy.cf, 1 kennedy.ie, 1 -kennedyinsurancesolutions.com, 1 kenners.org, 0 kennethaasan.no, 1 kennethandersen.com, 1 @@ -82469,6 +82555,7 @@ kennisknooppuntparticipatie.nl, 1 kennisnetwerkparkeren.nl, 1 kennispleinzingeving.nl, 1 +kennt.com, 1 kenny-peck.com, 1 kenny.technology, 1 kennychan.xyz, 1 @@ -82512,7 +82599,6 @@ kenzelmann.name, 1 kenzie.com.br, 0 keops-spine.fr, 1 -keops-spine.us, 1 keos.ga, 1 keos.tk, 1 kep-sbt.hu, 1 @@ -82532,6 +82618,7 @@ kerdry.com, 1 kerebro.com, 1 kerenzedakah.org, 1 +kergall.com, 1 keridos.de, 1 keritial.eu.org, 1 kerjoo.com, 1 @@ -82626,11 +82713,12 @@ keurigbestprice.tk, 1 keuvelaar.nl, 1 keuze.nl, 1 +keuzehelper.nl, 1 kevansizemore.com, 1 -kevay.nl, 1 +kevay.nl, 0 kevchia.com, 1 kevertje.net, 1 -kevhealy.com, 1 +kevhealy.com, 0 kevhosting.com, 1 kevin-darmor.eu, 1 kevin-emo.com, 1 @@ -82638,6 +82726,7 @@ kevin-ta.com, 1 kevin.eu, 1 kevin.tw, 0 +kevinackford.uk, 1 kevinapease.com, 1 kevinaud.io, 1 kevinbardot.alwaysdata.net, 1 @@ -82681,6 +82770,7 @@ key1111.com, 1 key4.com.ua, 1 keyacademy.bg, 1 +keyandswirl.com, 1 keybase.io, 1 keyblock.ga, 1 keyblock.gq, 1 @@ -82716,7 +82806,6 @@ keys.fedoraproject.org, 1 keyscore.me, 1 keyserver.sexy, 0 -keysigma.co.uk, 1 keysix.com, 1 keysmedspa.com, 1 keysofart.com, 1 @@ -82735,7 +82824,6 @@ kezmanweb.tk, 1 kezrenbeeming.com, 1 kezrenbeeming.com.au, 1 -kf-slot.com, 0 kf2525.com, 1 kf66888.com, 0 kf688.com, 1 @@ -82768,10 +82856,10 @@ kg-regenbogen.de, 1 kg7.pl, 1 kgb.com, 1 +kgd.digital, 1 kgdev.fr, 1 kgk-cgc.ch, 1 kgk.gov.tr, 1 -kgky.cc, 0 kgm-irm.be, 1 kgmediafactory.com, 0 kgnk.ru, 0 @@ -82838,10 +82926,10 @@ khmerlive.cf, 1 khmissajewels.com, 1 khoasweb.tk, 1 +khobor.ca, 1 khodrobaraneshiraz.com, 1 khodromedic.com, 1 khonaka.com, 1 -khord-kon.ir, 1 khorne.me, 1 khoteyev.tk, 1 khotinhnhuma.com, 1 @@ -82931,7 +83019,7 @@ kidify.co.uk, 1 kidis.lt, 1 kidisov.tk, 1 -kidm4k.com, 1 +kidm4k.com, 0 kidney.ca, 1 kidonng.me, 1 kids-castles.com, 1 @@ -82965,6 +83053,7 @@ kidstraysest.ga, 1 kidswear.ml, 1 kidswear.tk, 1 +kidsweek.nl, 1 kidswithguns.tk, 1 kidtoyshop.ru, 1 kidwater4ut.gov, 1 @@ -83120,7 +83209,7 @@ kimoo.co, 1 kimoo.net, 1 kimoota.net, 1 -kimootoko.net, 1 +kimootoko.net, 0 kimotodental.com, 1 kimotrip.com, 1 kimphattai.vn, 1 @@ -83167,12 +83256,9 @@ kinandleisure.com, 1 kinautas.com, 1 kincai.de, 1 -kind.fish, 1 kindan.net, 1 kindapoth.com, 1 kinde.com, 1 -kinden-giankyou.jp, 1 -kinden-kizuna.com, 1 kinder-garten.tk, 1 kinderarzt-berlin-zia.de, 1 kinderarzt-traunstein.de, 1 @@ -83215,6 +83301,7 @@ kinebioquimica.com, 1 kinecenter.ec, 1 kinecle.com, 1 +kinegun.cl, 1 kinencoin-tv.com, 1 kinepolis-studio.ga, 1 kinerehabqro.com, 1 @@ -83224,9 +83311,8 @@ kinesiologiodense.dk, 1 kinesiologiskolen-syd.dk, 1 kinesiologiuddannelsen.dk, 1 -kinesportbruxelles-maghfour.com, 0 +kinesportbruxelles-maghfour.com, 1 kineticengineeringnsw.com.au, 1 -kineticsdrive.com, 1 kinetikos.com.au, 1 kinetiq.com, 1 kinetofit.ro, 1 @@ -83249,6 +83335,7 @@ kingfast.eu.org, 1 kingfin.com, 1 kingfisherhallacademy.org.uk, 1 +kinghope.com, 1 kingiescastles.co.uk, 1 kingjamesbibleonline.org, 1 kingkongxo.com, 1 @@ -83260,6 +83347,7 @@ kingofthecastlesentertainments.co.uk, 1 kingofthecastlesouthwales.co.uk, 1 kingofthecastlesrhyl.co.uk, 1 +kingpay.com, 1 kingpin.pro, 1 kingpincages.com, 1 kings-potong.com, 1 @@ -83272,7 +83360,6 @@ kingsfordmi.gov, 1 kingshome.gr, 1 kingsicecream.com, 1 -kingsilkvn.com, 1 kingsley.cc, 1 kingsolomoncages.com, 1 kingsound.tk, 1 @@ -83286,6 +83373,7 @@ kingstream.uk, 1 kingsvetcentre.com, 1 kingsvilletexas.com, 1 +kingswinehaus.com, 1 kingtech8.tk, 1 kingtreeexperts.com, 1 kingyo-bowl.com, 1 @@ -83348,7 +83436,6 @@ kinschots.eu, 1 kinsei.jp, 1 kinsellamedia.com, 1 -kinshipnd.com, 1 kintanalodge.fr, 1 kintawifi.com, 1 kinter.media, 1 @@ -83455,7 +83542,6 @@ kisel.org, 1 kish-takhfif.com, 1 kishcar.co, 1 -kishenya.ua, 1 kishonti.net, 1 kisiselveri.com, 1 kiskeedeesailing.com, 0 @@ -83500,8 +83586,6 @@ kitchenlove.tk, 1 kitchenpad.biz, 1 kitchenpad.co.uk, 1 -kitchenpad.net, 1 -kitchenpad.org, 1 kitchenpad.us, 1 kitchenpadtimer.com, 1 kitchentoke.com, 1 @@ -83514,7 +83598,6 @@ kitdealoevera.com, 1 kite-surf.tk, 1 kite-surfen.tk, 1 -kite-uhn.com, 1 kiteboard-selbstbau.tk, 1 kitebowl.ru, 1 kitenation.com, 1 @@ -83630,7 +83713,6 @@ kkaramela.eu, 1 kkc.com, 1 kkcomcon.com, 1 -kkdesignsco.com, 1 kke8tt.top, 1 kkforwarding.com, 1 kkgn.nl, 1 @@ -83653,7 +83735,7 @@ kkmzt.com, 1 kkn.moe, 1 kknapredak-rubin.tk, 1 -kkpig.cn, 0 +kkpig.cn, 1 kkpp.ga, 1 kkr-bridal.net, 1 kkren.me, 0 @@ -83726,7 +83808,6 @@ kleidertauschpartys.de, 1 kleim.fr, 1 klein.paris, 1 -klein.run, 1 klein.yt, 1 kleine-dingen.nl, 1 kleine-strandburg-heringsdorf.de, 0 @@ -83816,6 +83897,7 @@ klinikum-stuttgart.de, 1 klinkenberg.ws, 1 klinkenbergschoenen.nl, 1 +klinkens.de, 1 klinkersnab.ru, 1 klinknetz.de, 1 klinkov.tk, 1 @@ -83894,7 +83976,6 @@ kmkofficiel.com, 1 kmkz.jp, 1 kmoes.ch, 1 -kmov.cc, 1 kmpropertyfunds.com, 1 kmpropertyfunds.com.au, 1 kmrgroup.com, 1 @@ -83915,7 +83996,6 @@ knab-networks.com, 0 knabden.co.za, 1 knabstrup-autoophug.dk, 1 -knaisch-consulting.de, 1 knallfrosch.ddnss.de, 1 knapenzutendaal.tk, 1 knapp.com, 1 @@ -83997,6 +84077,7 @@ knotme.eu, 1 knotme.pl, 1 knottcountyky.gov, 1 +knovos.com, 1 know-howsystems.net, 1 know.cf, 1 know2protect.gov, 1 @@ -84036,6 +84117,7 @@ kntt.lt, 1 kntxt7.de, 0 knuckles.tk, 1 +knugen.nu, 1 knulla.me, 1 knulle.me, 1 knurps.de, 1 @@ -84062,7 +84144,6 @@ kobayashi-zeimukaikei.jp, 1 kobb.tk, 1 kobe-shimasui.jp, 1 -kobejet.com, 1 koberl.com, 1 kobes.ca, 1 kobet.tk, 1 @@ -84114,8 +84195,8 @@ kod5.com, 1 kodak-ism.com, 1 kodama-dorayaki.co.jp, 1 -kodambroker.com, 0 kodar.tk, 1 +kodden.com.br, 1 kode-it.de, 1 kode.ch, 0 kodeholic.me, 1 @@ -84130,7 +84211,6 @@ kodkollen.com, 1 kodkollen.se, 1 kodomocorona.com, 1 -koe.dk, 1 koe.hn, 1 koebbes.de, 1 koeeusa.org, 1 @@ -84181,6 +84261,7 @@ koidulag.edu.ee, 1 koifish.org, 1 koing.de, 1 +koinpark.com, 1 koirala.email, 1 koiro.fi, 1 koishi.pro, 1 @@ -84245,6 +84326,7 @@ kolmann.eu, 1 kolmeti.ee, 1 kolmeya.com.br, 1 +kolonial.no, 1 kolorado.tk, 1 koloradskij-zhuk.tk, 1 kolorkids.pt, 1 @@ -84270,13 +84352,12 @@ kombo.lt, 1 komehyo.co.jp, 1 komelin.com, 0 -komfort-doma.by, 1 komfort.kh.ua, 1 komi-news.net, 1 +komi.la, 1 komichcapital.com, 1 komicloud.com, 1 komidoc.com, 1 -komikstation.co, 1 kominfo.go.id, 0 kominki-sauny.pl, 1 komintern43.tk, 1 @@ -84392,6 +84473,7 @@ konkanlng.in, 1 konkasidiaris.com, 1 konkurs.ba, 1 +konnai.jp, 1 konnektiv.de, 1 konnektvpn.com, 1 konnex-it.de, 1 @@ -84464,9 +84546,9 @@ koodimasin.eu, 1 kooer.org, 1 koof.win, 1 -koofi.net, 1 kooibeds.com, 0 kooky.org, 1 +koolbadges.co.uk, 1 kooli.ee, 1 koolisw.tk, 1 koolitee.ee, 1 @@ -84487,6 +84569,7 @@ kooxdiving.com, 1 koozal.de, 1 kopany.tk, 1 +koparrestaurant.is, 1 kopatych.tk, 1 kopecode.com, 0 kopeechka.ml, 1 @@ -84513,7 +84596,6 @@ kopular.com, 1 kopyandsonslandscaping.com, 1 kopykatz.org, 0 -kor.ovh, 1 kor1xbet.com, 1 kora-go.tk, 1 korabbio.pl, 1 @@ -84547,12 +84629,12 @@ koreascience.kr, 1 koreashop24.com, 1 koredia.com, 1 -koreisai.tech, 1 korelogic.com, 1 koresageart.com, 1 korespondent.tk, 1 korfbal.nl, 1 korfballeague.nl, 1 +korhonen.cc, 1 korhonen.social, 1 korikart.com, 1 korikart.net, 1 @@ -84608,7 +84690,6 @@ kosmosfestival.tk, 1 kosmosol.it, 1 kosmosradio.tk, 1 -koso.me, 1 kosovitolinks.tk, 1 kosovo.gq, 1 kost-magazin.de, 1 @@ -84643,7 +84724,7 @@ kotapay.com, 1 kotaraanglican.org.au, 1 kotatgent.be, 1 -kotelsales.ru, 1 +kotelsales.ru, 0 kother.org, 1 kotilinkki.fi, 1 kotisivukone.fi, 1 @@ -84769,6 +84850,7 @@ krachtinverbinding.nl, 1 kraemerlaw.com, 1 krafciarka.pl, 1 +kraflix.com, 1 kraft.blog, 1 kraft.im, 1 kraftdm.ru, 1 @@ -84787,7 +84869,6 @@ kraken.com, 1 kraken.io, 0 krakenfutures.com, 1 -krakenrobotik.de, 1 krakenventures.com, 1 krakozyabra.ga, 1 krakozyabra.gq, 1 @@ -84810,7 +84891,6 @@ krankenpflege-haushaltshilfe.de, 1 krankenpflege-journal.com, 1 krankenpflege.ch, 1 -krankheiten.wiki, 1 kranservice-alzey.tk, 1 krantostudijos.lt, 1 krapiva.tk, 1 @@ -84833,7 +84913,7 @@ krasotaiskusstva.com, 1 krasotkafirm.tk, 1 krasotki.ml, 1 -krastown.com, 1 +krastown.com, 0 krastyamoucha.cz, 1 kratochvilovi.net, 1 krause-outlet.de, 1 @@ -84892,6 +84972,7 @@ kreideseetaucher.de, 1 kreidlernet.tk, 1 kreiglaw.com, 1 +kreisau.com, 1 krelln.net, 1 kremalicious.com, 1 kremenchug-news.ru, 1 @@ -84989,7 +85070,8 @@ krizek.wien, 1 krizevci.info, 1 krizialim.tk, 1 -krk-gaming.de, 0 +krizovkarik.sk, 1 +krk-gaming.de, 1 krmela.com, 1 krmeni.cz, 0 kroati.de, 1 @@ -84999,6 +85081,7 @@ kroenland.at, 1 kroenland.com, 1 kroenland.design, 1 +krogi5.com, 1 kroglice.si, 1 krok.gq, 1 krokedil.se, 1 @@ -85031,10 +85114,10 @@ krossakorven.tk, 1 krossvordy.com, 1 krouzkyliduska.cz, 0 -krovat.ru, 1 krovatka.tk, 1 krovlya911.ru, 1 krozilla.tk, 1 +krrt.io, 1 krs.cloud, 1 krsaustralia.com.au, 1 krserv.de, 1 @@ -85184,7 +85267,7 @@ ks8266.com, 0 ks8278.com, 1 ks8805.com, 1 -ks8831.com, 1 +ks8831.com, 0 ks8836.com, 1 ks8883.com, 0 ks8915.com, 1 @@ -85296,6 +85379,7 @@ kuaishou.cf, 1 kuaitiyu.org, 1 kuaiyaojing.com, 1 +kuaiyun.com, 1 kualitatem.com, 1 kualo.co.uk, 1 kualo.com, 1 @@ -85394,6 +85478,7 @@ kulinaristi.fi, 1 kulinariya.tk, 1 kulivps.com, 1 +kulshe.com, 1 kultham.ml, 1 kulthist.tk, 1 kultmobil.se, 1 @@ -85465,6 +85550,7 @@ kupid.com, 1 kupinska.pl, 1 kupipled.cf, 1 +kupisafe.com, 1 kupislivki.tk, 1 kupitmtz.gq, 1 kupitraktor.gq, 1 @@ -85511,6 +85597,7 @@ kurmanchalbank.com, 1 kurnia.tk, 1 kurniadwin.to, 1 +kuroedov.com, 1 kuroha.co.uk, 1 kuroinu.jp, 1 kuroit.com, 0 @@ -85518,6 +85605,7 @@ kuronarupolyphenol.jp, 1 kuropatina.tk, 1 kurosawa-yakkyoku.com, 1 +kurrabagroup.exposed, 1 kurrende.nrw, 0 kurs-dron.pl, 1 kurs-elektryka.pl, 1 @@ -85631,7 +85719,6 @@ kvmcloud.net, 0 kvn.tf, 1 kvnsport.ru, 1 -kvrachu.online, 1 kvrapi.com, 1 kvraudio.com, 1 kvrwines.com, 1 @@ -85689,11 +85776,10 @@ kyberna.xyz, 1 kybi.sk, 1 kycisrael.com, 1 -kydara.com, 1 +kydara.com, 0 kyj250.com, 1 kyj322.com, 1 kyj33.com, 1 -kyj44.com, 1 kyj511.com, 1 kyj522.com, 1 kyj544.com, 1 @@ -85729,7 +85815,6 @@ kylianvermeulen.com, 0 kylianvermeulen.nl, 1 kylie-pomada.tk, 1 -kylinj.com, 0 kylinseating.in, 1 kylsgl.com, 1 kylvaja.fi, 1 @@ -85848,6 +85933,7 @@ lab-oborud.com, 1 lab-ratz.com, 1 lab-recherche-environnement.org, 1 +lab-test.ru, 1 lab9pro.be, 1 laba.ua, 1 labacanisima.tk, 1 @@ -85909,7 +85995,6 @@ laboratoriomolina.tk, 1 laborbluesers.ga, 1 laborbluesest.ga, 1 -labordayauction.org, 1 labordude.com, 1 laborriquita.tk, 1 labortogether.com, 1 @@ -85958,6 +86043,7 @@ lacasseroy.com, 1 lacavedesergio.fr, 1 lacaveducinquantenaire.com, 1 +lacaverna.net, 1 lacazadora.tk, 1 lacebeauty.it, 0 laceleste.it, 1 @@ -85968,7 +86054,6 @@ lachainedesentrepreneurs.fr, 1 lachaussettedebrasparts.fr, 0 lachlan-harris.com, 1 -lachlanallison.com, 0 lachlanb.me, 1 lachyoga-schwieberdingen.de, 1 laciana.tk, 1 @@ -86105,7 +86190,6 @@ laetitude.com, 1 laettnercamps.com, 1 laeva.edu.ee, 1 -laextra.mx, 1 lafansite.tk, 1 lafantasticatravel.com, 1 lafattoriabiologica.com, 1 @@ -86136,6 +86220,7 @@ laflanelle.fr, 1 laflash.com, 1 lafleur-salon.tk, 1 +laflota.com, 1 laforgedhiram.fr, 1 laforgia.xyz, 1 lafr4nc3.xyz, 1 @@ -86151,9 +86236,10 @@ lagalerievirtuelle.com, 1 lagar2000.pt, 1 lagavach.com, 1 -lagence.ch, 1 +lagence.ch, 0 lagencerie.fr, 1 lagerauftrag.info, 0 +laget.com.ua, 1 laget.se, 1 laghiinitalia.com, 1 lagier.xyz, 1 @@ -86208,6 +86294,7 @@ lairribeiro.com, 1 laissetamarc.ca, 1 laissetamarc.com, 1 +laisvesknygos.lt, 1 laity.gq, 1 laiweiyi.com, 1 lajarana.tk, 1 @@ -86354,6 +86441,7 @@ lamedog.tk, 1 lamedubois-parquet.fr, 1 lamei-group.com, 1 +lameilleurecette.fr, 1 lamenumerique.fr, 1 lamergameryt.xyz, 1 lamersfam.com, 1 @@ -86447,7 +86535,7 @@ landers.com.au, 1 landeseiten-optimieren.de, 1 landfire.gov, 1 -landflair-magazin.de, 1 +landflair-magazin.de, 0 landflirt.de, 1 landformlogic.com, 1 landforsale.co.il, 1 @@ -86614,7 +86702,6 @@ laparcela.tk, 1 laparoscopyhospital.com, 1 lapasticcerianaturale.store, 1 -lapatiala.com, 1 lapayo.com, 1 lapcameradongnai.com, 1 lapcamerahochiminh.com, 1 @@ -86628,6 +86715,7 @@ laperladelduero.tk, 1 laperreraflamenca.tk, 1 lapesbaldai.lt, 1 +lapeyre.xyz, 1 lapicena.eu, 1 lapina.tk, 1 lapinas.com, 1 @@ -86662,9 +86750,10 @@ laprophan.com, 1 lapseofsanity.net, 1 lapshore.com, 1 +laptop-dokter.be, 1 +laptopgiasi.vn, 1 laptopnaive.com, 1 laptopnewbie.eu.org, 1 -laptopsperu.com, 0 laptopuri.tk, 1 laptopworld.dk, 1 lapublicpress.org, 1 @@ -86792,7 +86881,6 @@ lasercareestetica.com.br, 1 lasercentral.com.au, 1 lasercloud.ml, 1 -lasercontrol.be, 1 laserena.tk, 1 lasereyess.net, 1 lasergaver.dk, 1 @@ -86847,7 +86935,6 @@ lastbooks.gq, 1 lastcast.bg, 1 lastenrad-gifhorn.de, 1 -lasthome.co.uk, 1 lastingcar.com, 1 lastingmarksers.ga, 1 lastingmarksest.ga, 1 @@ -86870,7 +86957,11 @@ lastursa.com, 1 lastville.com, 1 lastwill.ie, 1 +lasvegas.com.br, 1 +lasvegas.fr, 1 +lasvegas.it, 1 lasvegascombatacademy.com, 1 +lasvegashotels.nl, 1 lasvegasnevada.gov, 1 laszlo.sh, 1 laszlotamas.hu, 1 @@ -86919,7 +87010,6 @@ latestsonglyrics.ml, 1 latetrain.cn, 1 latexmattress.com, 1 -latexspuitenspecialist.nl, 1 lathamlabs.com, 1 lathamlabs.net, 1 lathamlabs.org, 1 @@ -86952,6 +87042,7 @@ latremebunda.com, 1 latrynchera.tk, 1 latte.org.uk, 1 +latteartguide.com, 1 lattery.fun, 1 latticepointconsulting.com, 1 lattyware.co.uk, 1 @@ -86975,6 +87066,7 @@ laudon.nl, 0 laufpix.de, 1 lauftreff-himmelgeist.de, 0 +laugarvatn.com, 1 laughingelkstudio.com, 1 laughinggrapepublishing.com, 1 laughingloon.com, 1 @@ -87003,7 +87095,6 @@ lauraohagan.com, 1 laurasplacefamilysupport.org.au, 1 laurateen.net, 1 -lauravaindumentaria.com, 1 laurawillits.com, 1 laureadesigns.com, 1 laureaty.tk, 1 @@ -87033,6 +87124,7 @@ laurineprice.com, 1 laurinhaepaulo.ga, 1 lauriuc.sk, 1 +lauruslabs.com, 1 lausannedentiste.ch, 0 lausannelovers.ch, 0 laut.digital, 1 @@ -87132,6 +87224,7 @@ lawnsearchers.ga, 1 lawnsearchest.ga, 1 lawnuk.com, 1 +lawod.com, 1 lawpay.com, 0 lawportal.com.ua, 1 lawrenca.com, 1 @@ -87176,7 +87269,6 @@ lawzana.com, 1 lawzava.com, 1 laxaf.com, 1 -laxammo.com, 1 layazc.com, 1 laycock.org.uk, 1 layer.it, 1 @@ -87213,7 +87305,6 @@ lazownik.pl, 1 lazuardy.tech, 0 lazudi.com, 1 -lazulu.com, 1 lazyhelp.com, 1 lazyhomer.pl, 1 lazynap.com, 1 @@ -87233,6 +87324,7 @@ lbc-podcast.tk, 1 lbc.gr, 1 lbda.net, 1 +lbestateplanning.com, 1 lbi-pg.fr, 1 lbiarchpro-imagery.at, 1 lbio.nl, 1 @@ -87415,7 +87507,6 @@ le0n.ddns.net, 1 le0yn.ml, 1 le130rb.com, 1 -le13emeart.com, 1 le20dinant.be, 1 le42mars.fr, 1 lea.pet, 1 @@ -87434,9 +87525,9 @@ leadersaudit.ga, 1 leadership-insight.nz, 1 leadershipconnect.io, 1 -leadgem.co.uk, 1 leadgenie.me, 1 leadinforce.com, 1 +leading.cn, 1 leadingagile.com, 1 leadiq.com, 1 leadmusic.nl, 1 @@ -87488,7 +87579,6 @@ leandrofournier.com, 1 leandromarcolino.tk, 1 leandromoreno.co, 1 -leandroreche.com.br, 1 leanheat.fi, 1 leanix.net, 1 leanovent.cloud, 1 @@ -87559,7 +87649,6 @@ learnupon.com, 1 learnwelsh.cymru, 1 learnwisego-stage.com, 1 -learnwith.cc, 1 leasecar.uk, 1 leaseit24.com, 1 leaselink.pl, 1 @@ -87647,7 +87736,6 @@ lecheng3.com, 1 lecheng5288.com, 0 lecheng7.com, 1 -lecheng88.com, 1 lecheng88.net, 0 lechenietravami.cf, 1 lechite.ga, 1 @@ -87660,6 +87748,7 @@ leclercbrico.fr, 1 lecoinchocolat.com, 1 lecoindufeuhabitat.com, 1 +lecolehk.com, 1 leconnecteur-biarritz.fr, 0 lecourriercauchois.fr, 1 lecourrierdelamayenne.fr, 1 @@ -87907,6 +87996,7 @@ legendofkrystal.com, 1 legendofmi.com, 1 legends-game.ru, 0 +legendtour.com, 1 legendwiki.com, 1 leger-voertuigen.tk, 1 legere.info, 1 @@ -87919,7 +88009,6 @@ legiofte.com, 1 legioiedifrancy.com, 1 legion.ge, 1 -legionisci.com, 1 legioniv.org, 1 legionpcservices.uk, 1 legions.tk, 1 @@ -87951,7 +88040,6 @@ legtech.lu, 1 legterm.cz, 1 leguano-barfusspark.eu, 1 -leguideinfo.com, 1 legyenkianegykereked.hu, 1 leher-gz.de, 1 lehifibernetwork.gov, 1 @@ -88017,7 +88105,6 @@ lekasedgar.com, 1 lekkergebierd.nl, 1 lekkergoings.nl, 1 -lekkerkofi.com, 1 lekkerleben.de, 1 leko.tk, 1 leksi.si, 1 @@ -88028,6 +88115,7 @@ lele.co.id, 1 lelehei.com, 1 leleimports.store, 1 +leleviagens.com.br, 1 leliekerk.nl, 1 leliveld.nl, 1 leliveld.org, 1 @@ -88051,7 +88139,6 @@ lemco.dk, 1 lemedecin.fr, 1 lemediateur-creditagricole-nord-est.com, 1 -lemefly.com, 1 lemeridienchambers.com, 1 lemgstudio.com, 1 lemieuxproducts.com, 1 @@ -88059,7 +88146,6 @@ lemitron.fr, 1 lemitti.com, 1 lemler.family, 1 -lemmamedia.com, 1 lemmy.cafe, 1 lemmy.one, 1 lemmyfund.org, 1 @@ -88074,7 +88160,6 @@ lemonpic.ga, 1 lemonrfx.com, 1 lemonrotools.com, 1 -lemons-aid.com, 1 lemonsociety.cf, 1 lemonsoftware.eu.org, 1 lemontownshippa.gov, 1 @@ -88148,6 +88233,7 @@ lenqiue.com, 0 lenr-experiment.tk, 1 lenr-forum.com, 1 +lens-soma.com, 1 lens.google.com, 1 lens.tw, 1 lens.xyz, 1 @@ -88178,7 +88264,7 @@ leojweda.com, 1 leola.cz, 1 leola.sk, 1 -leolabs.space, 0 +leolabs.space, 1 leolawi.gov, 1 leomarcou.fr, 1 leomax.ru, 1 @@ -88238,8 +88324,8 @@ leosty.com, 1 leotrepp.org, 1 leovanna.co.uk, 1 -leovegasgroup.com, 1 lep.gov, 1 +lepad.com, 1 lepalierjuridique.com, 1 lepartiecomemoracoes.com.br, 1 lepat.es, 1 @@ -88249,6 +88335,7 @@ leper.ga, 1 lephilnet.tk, 1 lepidum.jp, 1 +leping.com, 1 lepka.tk, 1 lepkov.ru, 1 leplus.net, 1 @@ -88395,11 +88482,9 @@ letdownloads.tk, 1 letec.be, 1 leteckedarky.cz, 1 -letemps.ch, 1 letempsdujasmin.fr, 1 leter.io, 0 leterroirdesvignobles.fr, 1 -letestedicalcio.it, 1 leteszemazecsetet.hu, 1 letgodbetrue.com, 1 lethalgaming.tk, 1 @@ -88421,6 +88506,7 @@ letocraft.cz, 1 letoltes.info, 1 letopise.com, 1 +letourneaudistributeur.com, 1 letraba.com, 1 letran.com.co, 1 letranif.net, 1 @@ -88445,12 +88531,10 @@ letsdothatagain.gq, 1 letsdothatagain.ml, 1 letsdothatagain.tk, 1 -letsearnit.com, 1 letselhulpservice.nl, 1 letsencrypt-for-cpanel.com, 1 letsflyinto.space, 1 letsgame.nl, 1 -letsgetintouch.com, 1 letsgo.icu, 1 letsgowhilewereyoung.com, 1 letsjustsayyes.com, 1 @@ -88539,6 +88623,7 @@ levico.tk, 1 levida.ca, 1 levidromelist.com, 1 +levinholidaypark.co.nz, 1 levis.fun, 1 levis.name, 1 levischuck.com, 1 @@ -88595,7 +88680,6 @@ lexgo.be, 1 lexgo.lu, 1 lexic.co, 1 -lexico.pt, 1 lexicography.online, 1 lexiconbank.com, 1 lexicore.ga, 1 @@ -88625,6 +88709,7 @@ lexum.com, 1 lexuspartsnow.com, 1 lexway.pk, 1 +lexzyne.com, 1 leyaonline.com, 1 leybelsgarden.cf, 1 leyendaluzrenacer.com, 1 @@ -88671,7 +88756,6 @@ lgbtqcolorado.org, 1 lgbtqtherapyspace.com, 1 lgbtventures.com, 1 -lge360.com, 1 lgelectric.cz, 1 lgelectric.eu, 1 lgenergy.solutions, 1 @@ -88683,7 +88767,6 @@ lgmars.xyz, 1 lgmotors.cz, 1 lgnsh.fr, 1 -lgo4d.boats, 1 lgobchod.cz, 1 lgrs.com.au, 1 lgs.com, 1 @@ -88705,6 +88788,7 @@ lhconsult.tk, 0 lheinrich.org, 1 lhffinanceira.online, 1 +lhfund.co.th, 1 lhm.de, 1 lhost.su, 1 lhp-creation.com, 1 @@ -88741,20 +88825,21 @@ liamlin.me, 1 liamoreilly.co.uk, 1 liamsteckler.com, 1 -liamwp.com, 1 lian-in.net, 1 liana.site, 1 lianand.com, 1 liangbi.ml, 1 +liange.com, 1 liangji.com.tw, 1 lianglongcredit.com, 1 liangxingai.com, 1 liangyichen.net, 1 lianhe.art, 1 +lianid.com, 1 lianka.eu, 1 lianka.pl, 1 lianka.uk, 1 -liantis.be, 1 +liansuan.com, 1 lianwen.kim, 1 liaozheqi.cn, 1 liar.wiki, 1 @@ -88808,9 +88893,7 @@ libertarian-party.com, 1 libertarianbooks.eu, 1 libertas-tech.com, 1 -libertas.co.jp, 1 liberte-toujours.tk, 1 -libertesassociatives.org, 1 libertino.tk, 1 libertis.ga, 1 liberty-city.tk, 1 @@ -88856,8 +88939,6 @@ libportal.cf, 1 libractes.tk, 1 libraideos.tk, 1 -librairiez.ca, 1 -librairiez.com, 1 librairiezbookstore.com, 1 libramedia.ru, 1 libranet.eu, 1 @@ -88883,7 +88964,7 @@ libreai.nl.eu.org, 1 libreboot.org, 1 librebox.de, 1 -librechat.ai, 1 +librechat.ai, 0 librecon.io, 1 libredev.ru, 1 libredns.eu, 1 @@ -88897,6 +88978,7 @@ libreplanet.org, 1 libreria-ouroboros.tk, 1 libreriaelzocalo.cl, 1 +librerose.com, 1 libresoft.ml, 1 libreview.com, 1 libreview.ru, 1 @@ -88955,7 +89037,7 @@ lichttechnik-tumler.com, 1 lichtval.tk, 1 licia-music.com, 1 -lickd.co, 1 +licitor.com, 1 lickingcounty.gov, 1 licloud.homeip.net, 1 licx.ml, 1 @@ -88970,7 +89052,6 @@ lidel.org, 1 lidernaturascarlettbados.com, 1 liderok.tk, 1 -lidhedredovisning.se, 1 lidkoping.se, 1 lidl-gewinnspiel.de, 1 lidl-holidays.com, 1 @@ -89037,10 +89118,11 @@ lifeboatmarketing.co.uk, 1 lifebymargot.co.uk, 1 lifecare.org, 1 +lifecelebrated.org, 1 lifecheq.co.za, 1 lifecism.com, 1 lifecoach.tw, 1 -lifecoachroel.nl, 0 +lifecoachroel.nl, 1 lifeconnections.ro, 1 lifecoresystems.com, 1 lifecraft.cf, 1 @@ -89080,6 +89162,7 @@ lifeofpromotion.com, 1 lifepathdoc.com, 1 lifepathpsychiatry.com, 1 +lifepub.com, 1 liferay.com, 1 lifereset.it, 1 lifesaverhindi.tk, 1 @@ -89170,6 +89253,7 @@ lightography.com, 1 lightonelectrical.com.au, 1 lightquantum.moe, 1 +lightred.com, 1 lightrun.com, 1 lights0123.com, 1 lightsfromspace.com, 0 @@ -89195,6 +89279,7 @@ ligonier.com, 1 ligustinus.tk, 1 lih.lu, 1 +lihatvirtual.com, 1 lihi-home.co.il, 1 lihj.me, 1 lihuenjardin.com, 1 @@ -89232,7 +89317,6 @@ likesec.se, 1 likesolidaria.com.co, 1 likestudio.com.ua, 1 -likeyesterdaysjam.com, 1 likhner.com, 1 likme.tv, 1 likui.me, 1 @@ -89291,7 +89375,6 @@ lilyandpeabody.com, 1 lilylasvegas.com, 1 lilypad.gg, 1 -lilypadspa.net, 1 lilypadwikisecret.tk, 1 lilysbouncycastles.com, 1 lilyvet.com, 1 @@ -89313,7 +89396,6 @@ limc.me, 1 lime-host.cf, 1 lime-host.tk, 1 -lime.com.eg, 1 limebulgaria.com, 1 limechain.tech, 0 limecho.net, 1 @@ -89331,10 +89413,10 @@ limestonecounty-al.gov, 1 limestonecountyema-al.gov, 1 limestonemechanical.ca, 1 +limetaxi.com.ua, 1 limetee.cz, 1 limetorrent.gq, 1 limetw.eu.org, 1 -limewtea.com, 0 liminal.software, 1 liminf.com, 1 limingtonmaine.gov, 1 @@ -89447,7 +89529,6 @@ lindy.ai, 1 line.biz, 1 line.co.nz, 0 -line.me.uk, 1 linea-nova.be, 1 lineacreative.com, 1 lineaesse5.it, 1 @@ -89458,6 +89539,7 @@ linedance.tk, 1 lineengraver.com, 1 lineinchina-enterprise.tw, 1 +lineinchina.com.ua, 1 linejuby.dk, 1 lineru.com, 1 lineshop.ml, 1 @@ -89491,6 +89573,7 @@ linherest.tk, 1 linhua.org, 1 linjerry.tk, 1 +linjie.com, 1 link-group.tk, 1 link-knighki.cf, 1 link-list.tk, 1 @@ -89668,11 +89751,13 @@ linuxdashboard.com, 1 linuxdays.cz, 1 linuxdoc.org, 1 +linuxfan.com, 1 linuxforu.tk, 1 linuxforum.ch, 1 linuxforwindows.com, 1 linuxguru.tk, 1 linuxhandbook.com, 1 +linuxhostingindia.in, 1 linuxhostsupport.com, 1 linuxiac.com, 1 linuxil.org, 1 @@ -89699,6 +89784,7 @@ linzeliang.com, 1 linzistevencounselling.co.uk, 1 linzyjx.com, 1 +liobet.com, 1 liodex.com, 1 liofactoryadvisory.lu, 1 lion-app.de, 1 @@ -89709,7 +89795,6 @@ lionard.com, 1 lionchita.tk, 1 lionessport.com, 0 -lionesstamar.co.uk, 1 lionesstamar.com, 1 lionheartsecurityservices.com, 1 lionkitchenremodel.com, 1 @@ -89730,6 +89815,7 @@ lipaversavers.com, 1 lipeck.ga, 1 lipeck.tk, 1 +lipetral.com.br, 1 lipetsk-centralniy.cf, 1 lipetsk-news.net, 1 lipetsk48.tk, 1 @@ -89746,8 +89832,10 @@ lipturess.tk, 1 liq.com.br, 1 liqd.net, 1 +liqiao.com, 1 liqiuyu.com, 1 liqueur.wiki, 1 +liquid-accounting.co.za, 1 liquid.cz, 1 liquid.network, 1 liquid.place, 1 @@ -89764,7 +89852,7 @@ liquidradio.pro, 1 liquidwarp.net, 1 liquidweb.tk, 1 -liquiglide.com, 1 +liquipedia.net, 1 liquiritia.tk, 1 liquorice.co.za, 1 liquorland.com.au, 1 @@ -89792,6 +89880,7 @@ lisamay.com.au, 1 lisamildon.com, 1 lisanotes.com, 1 +lisansall.com, 1 lisanshizmetleri.com, 1 lisapinder.com, 1 lisapo.info, 1 @@ -89811,7 +89900,6 @@ lishayut-prav.ml, 1 lishayut-prav.tk, 1 lisheencastle.com, 1 -lishup.com, 1 lisiano.eu, 1 lisieuxarquitetura.com.br, 1 lisinoprilgp.online, 1 @@ -89819,6 +89907,7 @@ lisius.ga, 1 lislan.org.uk, 1 lisnail.gr, 1 +liso.xyz, 1 lisowski-photography.com, 1 lisp.org, 1 lissabon.tk, 1 @@ -89835,6 +89924,7 @@ listclue.com, 1 listekdo.fr, 1 listelist.com, 1 +listen.cn, 1 listen.dk, 1 listener.ga, 1 listening-skills.eu, 1 @@ -89879,6 +89969,7 @@ lite-chat.tk, 1 liteanalytics.com, 1 liteawa.com, 0 +litebattre.com, 1 litebit.de, 1 litebit.eu, 1 litebitcdn.eu, 1 @@ -89907,7 +89998,6 @@ litespeed-webserver.de, 1 litespeedhost.net, 1 litespeedwebserver.de, 1 -litfan.ru, 1 litfest.ru, 1 litfin.name, 1 lithesalar.se, 1 @@ -89930,7 +90020,6 @@ little-news.gq, 1 little-shield.com, 1 little.recipes, 1 -littleanimation4kids.com, 1 littlebar.tk, 1 littlebestfriend.de, 1 littlebig.co, 1 @@ -89944,7 +90033,6 @@ littlecaprice-dreams.com, 1 littlecompton.gov, 1 littlecourtcottages.com, 1 -littlecreatures.com.au, 1 littlecreekhosting.com, 1 littledev.nl, 0 littlediary.cn, 1 @@ -89997,9 +90085,11 @@ litwinek.pl, 1 litz.ca, 1 litzenberger.ca, 1 +liubai.com, 1 liubliu.co.uk, 1 liud.im, 1 liudon.com, 1 +liuhecai.com, 1 liujr.tk, 1 liujunyang.com, 0 liukang.com, 1 @@ -90007,6 +90097,7 @@ liul.in, 1 liuliuya.com.tw, 1 liulo.cf, 1 +liunian.com, 1 liups.one, 1 liuq.org, 1 liuqiao.best, 1 @@ -90019,7 +90110,7 @@ liuqiao.tk, 1 liuqiaolovecaonali.ml, 1 liushuyu.tk, 1 -liutaiomottola.com, 1 +liuyan.cc, 1 liv.rent, 1 livactive.com, 1 livadm.ml, 1 @@ -90069,6 +90160,7 @@ livefoot.fr, 1 liveforspeed.se, 1 livefortheviews.com, 1 +livefussball.com, 1 livehomecams.co.uk, 1 liveint.org, 1 liveinternet.v.ua, 1 @@ -90191,6 +90283,7 @@ lizheng.de, 1 lizhi.io, 1 lizhihezi.com, 1 +lizhu.com, 1 lizhuan.cn, 0 lizkimball.com, 1 liznewton.com.au, 1 @@ -90204,7 +90297,6 @@ lizzythepooch.com, 1 lj-creation.com, 1 ljason.cn, 1 -ljc.ro, 1 ljdesign.be, 1 ljekarne-plantak.hr, 1 ljoonal.xyz, 1 @@ -90245,6 +90337,7 @@ llcgeek.com, 1 llcig.com, 1 llcigroup.com, 1 +llcj.com, 1 llcradar.com, 1 lldigital.co.il, 1 lleidanoticies.com, 1 @@ -90275,7 +90368,7 @@ lmde.fr, 1 lmi-india.in, 1 lmintlcx.com, 1 -lmis.gov.et, 1 +lmis.gov.et, 0 lmmtfy.io, 1 lmr.com, 1 lmrcirurgiaplastica.pt, 1 @@ -90310,23 +90403,21 @@ lo.fail, 1 loackerbusiness.it, 1 loader.to, 1 -loader.us.com, 1 loadhourly.tk, 1 loading.express, 0 loading.se, 1 loadme.ml, 1 loadninja.com, 1 loadover.me, 1 -loadtrends.com, 0 loadui.org, 1 loadwallet.com, 1 loafhead.me, 1 loan-lenders.co.za, 1 -loanbliss.com, 1 loanfreeze.ga, 1 loanpad.com, 1 loanpost.com.au, 1 loanscanada.ca, 1 +loanservicing.com.au, 1 loansharkpro.com, 1 loanstreet.nl, 1 loantillpaydaydelaware.com, 1 @@ -90370,15 +90461,15 @@ locald.at, 1 localdating.ml, 1 localdigitaldesign.com, 1 +localenv.uk, 1 localethereum.com, 1 localexpert.realestate, 1 -localexpress.io, 1 +localexpress.io, 0 localfirstbank.com, 1 localgaragedoorsfl.net, 1 localgrain.org, 1 localhandyman.work, 1 localhorst.duckdns.org, 0 -localisedseo.com, 1 localiza.io, 1 localized.tk, 1 localizejs.com, 1 @@ -90461,7 +90552,6 @@ locklockbrasil.com.br, 1 locknlockbrasil.com.br, 1 locknology.net, 1 -lockoutgroup.com, 1 lockpick.nl, 1 lockpicks.se, 1 lockr.jp, 1 @@ -90508,7 +90598,6 @@ locorti.com, 1 locoserver.net, 1 locspec.com.au, 1 -locstars.com, 1 locus-cell.com, 1 locus-dashboard.com, 1 locus.ml, 1 @@ -90530,6 +90619,7 @@ lodosswar.tk, 1 lodus.io, 1 lodzjews.org, 1 +loeilducontinent.com, 1 loekkoopmans.tk, 1 loeklommers.nl, 1 loekvormgeving.nl, 1 @@ -90540,6 +90630,7 @@ lofirmo.com, 1 loforo.com, 1 loft.com.br, 1 +lofthotel.com, 1 lofttravel.com, 1 loftyideas.ml, 1 loftymedia.ca, 1 @@ -90559,6 +90650,7 @@ logancountyohio.gov, 1 loganengineeroh.gov, 1 loganhealthohio.gov, 1 +loganj.eu, 1 logankpaschke.com, 1 loganmarchione.com, 1 loganparkneighborhood.org, 1 @@ -90643,7 +90735,6 @@ logolando.tk, 1 logomarket.jp, 1 logon-int.com, 1 -logopaedie-issinger.de, 1 logopaedie-millian.de, 1 logopaedie-sandkrug.de, 1 logopaediereinhard.de, 0 @@ -90684,11 +90775,11 @@ lois-bullion.com, 1 lois.cf, 1 loisircreatif.net, 0 +loja-meltech.com.br, 1 lojaapi.com, 1 lojaapoio.com.br, 1 lojabeeways.com.br, 1 lojabrother.com, 1 -lojadafloresta.pt, 1 lojadamimo.com.br, 1 lojadanidrea.com.br, 1 lojadarenda.com.br, 1 @@ -90714,6 +90805,7 @@ lojaodo9.com.br, 1 lojaprimemed.com.br, 1 lojaprojetoagua.com.br, 1 +lojaskd.com.br, 0 lojasoulstyle.com.br, 1 lojasvictoria.com.br, 1 lojasvirtuaisesites.com.br, 1 @@ -90753,7 +90845,6 @@ lolcosplay.ga, 1 lolcow.farm, 1 loldudes.com, 1 -lolfinity.com, 1 lolfunny.tk, 1 loli.art, 1 loli.cam, 0 @@ -90830,7 +90921,7 @@ lomza.tk, 1 lon-so.com, 1 lona.io, 1 -lonasdigital.com, 1 +lonasdigital.com, 0 lonavla.tk, 1 lonca.co, 1 lonchaney.com, 1 @@ -90922,15 +91013,17 @@ longitudeinsurance.com.au, 1 longlakeny.gov, 1 longlanearchitects.co.uk, 1 +longlanepasture.org, 1 longlink.tk, 1 longlivehongkong.com, 1 +longlu.com, 1 longma.pw, 1 longma168.cn, 1 longma168.com, 0 longmeadowma.gov, 1 +longmenzhen.com, 1 longmontnetworking.com, 1 longmontwaterheaters.com, 1 -longoconsulting.us, 1 longpaddock.qld.gov.au, 1 longportpd.org, 1 longstride.net, 1 @@ -91000,7 +91093,7 @@ lootdog.io, 1 loothole.com, 1 loots.eu, 1 -lootstudios.com, 1 +lootstudios.com, 0 loottitan.com, 1 lopata.cloud, 1 lopay.com, 1 @@ -91042,7 +91135,6 @@ lorddominion.tk, 1 lordfutbol.tk, 1 lordgandalf.nl, 1 -lordgeorgeanson.com, 1 lordgrant.tk, 1 lordkrishna.tk, 1 lordlink.net, 1 @@ -91136,6 +91228,7 @@ lospadillas.com, 1 lospadrinosmagicos.tk, 1 lospegotes.tk, 1 +losperone.com, 1 lospozuelos.tk, 1 losratonescoloraos.tk, 1 losrosales.tk, 1 @@ -91191,6 +91284,7 @@ lotereiki.tk, 1 loteriasdominicana.com.do, 1 lothai.re, 1 +lothiandomestics.co.uk, 1 lothlorien.ca, 0 lotioito.com.br, 1 lotl.ru, 1 @@ -91282,7 +91376,6 @@ loungenerd.com, 1 loungepass.com, 1 loupcountyne.gov, 1 -lourdes.love, 1 lourdesigns.tk, 1 lourencolar.com, 1 lourissa.tk, 1 @@ -91296,6 +91389,7 @@ lovcasino.com, 1 love-and-hate.cf, 1 love-books.ga, 1 +love-damono.com, 1 love-navigator.tk, 1 love-palestine.com, 1 love-planeta.tk, 1 @@ -91304,9 +91398,9 @@ love4musik.com, 1 love4taylor.eu.org, 1 love4taylor.xyz, 1 -loveai.org, 0 loveamber.me, 1 loveandloyalty.se, 1 +loveasiangroup.com, 1 lovebeingsexy.co.uk, 1 lovebigisland.com, 1 lovebirdhut.tk, 1 @@ -91341,7 +91435,6 @@ lovelee.tk, 1 lovelens.li, 0 loveless.ml, 1 -lovelive-anime.jp, 1 lovelive-anime.tk, 1 lovell.co.uk, 1 lovellgov.com, 1 @@ -91476,6 +91569,7 @@ lrcr.ch, 0 lriese.ch, 1 lrn.com, 1 +lrnewenergy.com, 1 lroc.com.au, 1 lrp-autorecycling.de, 1 lrpartners.com, 1 @@ -91633,7 +91727,6 @@ luckblock.site, 1 luckeyproductions.com, 1 luckibots.de, 1 -lucklesslovelocks.com, 1 luckmoneymyth.com, 1 luckperms.net, 1 lucksh.ga, 1 @@ -91691,6 +91784,7 @@ ludotech.tk, 1 ludovic-frank.fr, 0 ludovic-muller.fr, 1 +ludovic.com.br, 1 ludovicfernez.com, 1 ludovicozitelli.it, 1 ludum-polus.xyz, 1 @@ -91781,7 +91875,6 @@ lukaszuk.pl, 1 lukaszwojcik.com, 1 lukaszwojcik.net, 1 -lukatz.de, 1 luke.id, 1 luke6887.me, 1 lukeandjesse.wedding, 1 @@ -91801,18 +91894,20 @@ lukesutton.info, 1 lukeswiki.eu, 1 lukezweb.tk, 1 -lukhachdem.info, 1 lukin.ga, 1 lukka.tk, 1 lukolab.lt, 1 lukonet.com, 1 +luks.ck.ua, 0 lukullpizza.de, 1 lula.life, 1 lulalegal.pl, 1 +lulasaga.xyz, 1 lule-kendo.tk, 1 lulilop.com, 1 lullugun.net, 1 luls.tk, 1 +lulu960.xyz, 1 luludapomerania.com, 1 lulugold.ba, 1 lumaesthetic.co.uk, 1 @@ -91835,6 +91930,7 @@ lumi.pw, 1 lumien.net, 1 lumieredesoy.com, 1 +luminabh.com.br, 1 luminal-creation.com, 1 luminaproject.ml, 1 luminary.pl, 1 @@ -91867,7 +91963,6 @@ lunaclan.tk, 1 lunacraft.ga, 1 lunadea.tk, 1 -lunagiftables.com, 1 lunagrill.com, 1 lunair.fr, 1 lunakit.org, 1 @@ -91887,7 +91982,6 @@ lunarr.fr, 1 lunarsoft.net, 1 lunartail.nl, 1 -lunartoystore.com, 1 lunarum.tk, 1 lunascope.ru, 1 lunasqu.ee, 1 @@ -91965,8 +92059,9 @@ luripump.se, 1 lurishop.com.br, 1 lurkmirror.ml, 1 -lurlur.com, 1 +lurun.com, 1 lusakatimes.com, 1 +lusc.ch, 1 lushclub.tk, 1 lushersolutions.com, 1 lushnikov-alex.ru, 1 @@ -91976,7 +92071,6 @@ lusnic.org, 1 luso-livros.net, 1 lusoft.cz, 1 -lusometeo.com, 0 lusosider.pt, 1 lusson.fr, 0 lust.works, 1 @@ -92148,7 +92242,6 @@ lycoris.eu.org, 1 lydianibley.com, 1 lydiawebfans.tk, 1 -lydudlejning.net, 1 lyfbits.com, 1 lyfepyle.com, 1 lyftservice.se, 1 @@ -92159,6 +92252,7 @@ lykos.ai, 1 lyla-pressing.com, 1 lyme-regis-accommodation.co.uk, 1 +lymecraft.com, 1 lymia.moe, 1 lymiahugs.com, 1 lyna.ml, 1 @@ -92173,6 +92267,7 @@ lyngvaer.no, 1 lynho.com.br, 1 lynk.hopto.org, 1 +lynki.eu, 1 lynkmi.com, 1 lynnco.com, 1 lynndye.com, 1 @@ -92266,7 +92361,7 @@ m-h-b.fr, 1 m-hydravlika.com.ua, 1 m-i.si, 1 -m-idav.ru, 1 +m-idav.ru, 0 m-idea.jp, 1 m-jkelleystudio.com, 1 m-mail.fr, 1 @@ -92277,6 +92372,8 @@ m-o-v-i-e.tk, 1 m-o-x.de, 1 m-office.pl, 1 +m-partners.biz, 1 +m-r-team.de, 1 m-ses.fr, 1 m-team.cc, 1 m-teq.nl, 0 @@ -92317,6 +92414,7 @@ m426.ch, 1 m4g.ru, 1 m4rcus.de, 1 +m4rkos.de, 1 m5197.co, 1 m5industries.com, 1 m5wl5r.com, 1 @@ -92373,6 +92471,8 @@ mabankonline.com, 1 mabasketdesecurite.fr, 1 mabelmartinez.es, 1 +mabex-cybercore.de, 1 +mabexcybercore.de, 1 mable.com.au, 1 mableton.gov, 1 mabnn.org, 1 @@ -92382,6 +92482,7 @@ mabusalah.tk, 1 mac-i-tea.ch, 0 macabeo.bio, 1 +macai.com, 1 macailabritton.com, 1 macalha.com, 1 macallan-tls.com, 1 @@ -92402,8 +92503,7 @@ macaw.net, 1 macaw.nl, 1 macawrescue.org, 1 -macbo.de, 1 -maccabi-dent.com, 1 +macchinetta.com, 1 macdj.tk, 1 macdonaldcody.com, 1 macdonaldplasticsurgery.ca, 1 @@ -92464,7 +92564,6 @@ macleod.io, 1 macley.nl, 1 macmahon.com.au, 1 -macmor.com, 1 macna.com.sa, 0 macnemo.de, 1 macnetwork.eu, 0 @@ -92499,6 +92598,7 @@ macrosec.tech, 1 macroseo.tk, 1 macrotech.tk, 1 +macs4seniors.com, 1 macsant.com, 1 macsen.cymru, 1 macsonuclari.com.tr, 1 @@ -92510,7 +92610,6 @@ macvidcards.eu, 1 mad-eye.com, 0 mad.es, 1 -mad.gr, 1 mad4marketing.com, 1 madae.nl, 1 madamasr.com, 1 @@ -92572,7 +92671,6 @@ madian.tk, 1 madil-thob.com, 1 madinahmarket.com, 1 -madinatalzahra.org, 1 madinatech360.com, 1 madinina.tk, 1 madison.com, 1 @@ -92764,13 +92862,13 @@ magicbeanschool.com, 1 magicboxint.com, 1 magicbroccoli.de, 0 +magiccardbuyer.eu, 1 magiccards.info, 1 magicdesktop.com, 1 magicdust.com.au, 1 magicflora.tk, 1 magicgrants.org, 1 magiciansofchaos.tk, 1 -magicitaca.com, 0 magicjudges.org, 1 magickmale.de, 1 magiclen.org, 1 @@ -92779,7 +92877,6 @@ magicocuoredimamma.it, 1 magicolr.com, 1 magicomotor.com, 1 -magicorama.com, 1 magicorn.co, 1 magicpaper.net, 1 magicpill.com.au, 1 @@ -92821,7 +92918,7 @@ magikbyte.com, 1 maginstal.pl, 1 magique.tk, 1 -magiskzip.com, 0 +magiskzip.com, 1 magisterjuris.com, 1 magisternegi.tk, 1 maglaw.com, 1 @@ -92830,6 +92927,7 @@ magnacumlaude.co, 1 magnamus.it, 1 magnatechnology.com, 1 +magnatronic.com.br, 1 magneetfolie.nl, 1 magnes.priv.pl, 1 magnesy-neodymowe.com.pl, 1 @@ -92976,6 +93074,7 @@ mail-rotter.de, 1 mail-routing.net, 1 mail-settings.google.com, 1 +mail-signatures.com, 1 mail.ch, 1 mail.co.uk, 1 mail.com, 1 @@ -93024,7 +93123,7 @@ mailinglijst.nl, 1 mailingproduct.tk, 1 mailinizer.com, 1 -mailjet.com, 1 +mailjet.com, 0 mailjoy.com, 1 mailjunkey.tk, 1 maillotdefoot.tk, 1 @@ -93069,9 +93168,11 @@ mainfrankentheater.de, 1 mainhattan-handwerker.de, 1 mainhuyahan.tk, 1 +mainlandapp.cn, 1 mainlined.org, 1 mainroller.de, 1 mainspitze.social, 1 +mainspy.com, 1 mainstaysafetywedge.com, 1 mainstream-tech.com, 1 mainstreetmeetingspace.com, 1 @@ -93094,6 +93195,7 @@ mairiedemoncelsurseille.com, 1 maisallianz.com, 1 maisapanama.com, 1 +maisciencianaescolams.com.br, 1 maiscrm.com, 1 maiscuidar.com, 1 maiscupoes.com, 1 @@ -93123,21 +93225,21 @@ maitre-chien-detection-explosif-securite-paca.fr, 1 maitrechien.net, 1 maitrechiens.fr, 1 -maitrelucas.fr, 1 maitrise-orthopedique.com, 1 maitum.de, 1 maiweave.com, 1 maizeks.gov, 1 -maizeyarchitectural.co.za, 1 maizuru-ongaku-kan.com, 1 majahesjedal.no, 1 majahoidja.ee, 1 majalahka.com, 1 +majalahponsel.org, 1 majalmirasol.com, 1 majameer.com, 1 majasballites.lv, 1 majavucic.com, 1 majaweb.cz, 1 +majdanpek.com, 1 majelisriyadhah.com, 1 majemedia.com, 1 majesnix.org, 1 @@ -93149,6 +93251,7 @@ majhang.com, 1 majid.info, 1 majisign.co.uk, 1 +majk.me, 1 majkassab.com, 1 majkassab.net, 1 majkassab.org, 1 @@ -93191,7 +93294,6 @@ makeitsimple.pt, 1 makejusticework.org.uk, 1 makelindazi.com, 1 -makellos-kosmetik.de, 1 makelpunt.nl, 1 makemejob.com, 1 makemillion.tk, 1 @@ -93270,10 +93372,8 @@ makuquina.tk, 1 makura.fun, 1 malabarismo.tk, 1 -malacat.com, 1 malachiteauth.com, 1 maladie-autoimmune.fr, 1 -maladies.wiki, 1 malafidezoeker.nl, 1 malagabaterias.com, 1 malagarental.com, 1 @@ -93452,6 +93552,7 @@ mamiechacha.com, 1 mamijaclean.tk, 1 mamilitante.fr, 1 +mamilove.com, 1 mamlaka.ml, 1 mamlaka.tk, 1 mammabelly.com.br, 1 @@ -93490,7 +93591,6 @@ manageathome.co.uk, 1 managed-it.africa, 1 managed-it.co.za, 1 -managedcontractors.co.uk, 1 managedhosting.de, 0 managedserver.it, 1 managedservicesraleighnc.com, 1 @@ -93521,14 +93621,12 @@ manchesterkitchens.com, 1 manchestermn.gov, 1 manchestermoneyman.com, 1 -manchesterstudentsunion.com, 1 manchestertechservices.co.uk, 1 manchesterwi.gov, 1 manchopancho.de, 1 mandala-ausmalbilder.de, 1 mandala-book.tk, 1 mandanudes.ae, 1 -mandaraequestrian.com, 1 mandarinplay.tk, 1 mandatkollen.se, 1 mandcbouncycastlehire.co.uk, 1 @@ -93579,7 +93677,6 @@ mangahigh.com, 1 mangajp.top, 1 manganimefan.tk, 1 -mangapoi.com, 1 mangareactor.tk, 1 mangas.eu.org, 1 mangaworld.gq, 1 @@ -93723,9 +93820,7 @@ mantaro.site, 1 manteca.gov, 1 manteena.com.au, 1 -manteligencia.com, 1 mantella.nl, 1 -mantelligence.com, 1 mantenimiento-zaragoza.com, 1 mantenimientoimpresoras.com, 1 mantenimientosenjardineriaypiscinasveracruz.com, 1 @@ -93757,7 +93852,7 @@ manuelefysiotherapeut.nl, 1 manueljirado.tk, 1 manuelnunez.cz, 1 -manuelosorio.me, 0 +manuelosorio.me, 1 manuelperujo.ch, 1 manuelraimo.cf, 1 manuelrueger.de, 1 @@ -93783,7 +93878,6 @@ manyhotfiesta.ml, 1 manylots.ru, 1 manyo.jp, 1 -manypets.com, 1 manyproservices.com, 1 manytricks.com, 1 manytubes.ga, 1 @@ -93793,7 +93887,6 @@ manzanita-nsn.gov, 1 maomihz.com, 1 maone.net, 1 -maorilandfilm.co.nz, 1 maorx.cn, 1 maoshuai.bid, 1 maoshuai.cc, 1 @@ -93827,7 +93920,6 @@ mapchange.org, 1 mapduce.com, 1 mapdump.com, 1 -mapgear.nl, 1 mapi.eu.org, 1 mapillary.com, 1 maplebgm.cc, 1 @@ -93875,7 +93967,6 @@ mar.pt, 1 marabico.com, 1 marabook.fr, 1 -marabou.se, 1 marabumadrid.com, 1 maracarlinicourses.com, 1 maracit.tk, 1 @@ -93895,7 +93986,6 @@ marathons.tk, 1 marauderos.tk, 1 marazul.tk, 1 -marbella.gr, 1 marbellaclub.com, 1 marbellaoptic.ro, 1 marbermedical.com, 1 @@ -94003,7 +94093,6 @@ mardigrasnapkins.com, 1 mardinhaberleri.tk, 1 mardinsondakika.tk, 1 -mare-sylt.de, 1 mare92.cz, 1 marebca.xyz, 1 marechal-company.com, 1 @@ -94027,6 +94116,7 @@ margarethouse.co.uk, 1 margaridamendessilva.com, 1 margaritafries.com, 1 +margaritamun.com, 1 margatroid.com, 1 margaux-perrin.com, 1 margaux-perrin.fr, 1 @@ -94052,7 +94142,6 @@ maria-blanco.tk, 1 maria-kirilenko.tk, 1 maria-sharapova.tk, 1 -mariaalcazar.com, 1 mariaangelamacario.com, 1 mariadelcastillo.com, 1 mariaelisaejunior.ga, 1 @@ -94076,7 +94165,6 @@ mariapanina.ru, 0 mariapietropola.com, 1 mariart.studio, 1 -mariasalerno.it, 1 mariasavchenko.com, 1 mariasemarias.com.br, 1 mariaterbildt.tk, 1 @@ -94097,6 +94185,7 @@ marielouise.tk, 1 mariemccaig.co.uk, 1 mariemiramont.fr, 1 +marienolandmd.com, 1 marienvanoverbeek.nl, 1 marienvillefire.com, 1 mariereichl.cz, 1 @@ -94104,7 +94193,6 @@ marieskyler.net, 1 marietta.sa, 1 marieutechnologycorporation.com, 1 -marijnroovers.com, 1 marijuana-seeds.nl, 1 marijuanajobscannabiscareers.com, 1 marik.net.br, 1 @@ -94152,6 +94240,7 @@ mariogarcia.tk, 1 mariogasparini.com.br, 1 mariogeckler.de, 0 +mariokartworld.wiki, 1 marioncounty911illinois.gov, 1 marioncountyar.gov, 1 marioncountyil.gov, 1 @@ -94256,7 +94345,7 @@ marketkarma.com, 1 marketking.ga, 1 marketlocal.ly, 0 -marketmotion.com.au, 1 +marketmotion.com.au, 0 marketnews.com, 0 marketone.com, 1 marketpage.com, 1 @@ -94466,7 +94555,6 @@ martensson.io, 1 martesanamilano.com, 1 marthakenney.com, 1 -marthas.sale, 1 marthasseniorgourmet.com, 1 marthasvillemo.gov, 1 marti201.ga, 1 @@ -94552,13 +94640,13 @@ martonvaro.com, 1 martonveronika.tk, 1 martosaranda.com, 1 -martsinovskaolga.com.ua, 1 martstop.ir, 0 martstroy.ru, 1 marty.me.uk, 1 martyrium.tk, 1 marufmusic.tk, 1 maruja.tk, 1 +marujapiruja.com, 1 marula-oel.de, 1 marunouchi-hotel.co.jp, 1 marussy.com, 1 @@ -94602,9 +94690,12 @@ marvos.se, 1 marw.org, 1 marwadionline.com, 1 +marx.pp.ua, 1 marxist.party, 1 marxists.org, 1 marxists.pp.ua, 1 +marxists.ru, 1 +marxists.sbs, 1 marxmyths.org, 1 marxpark.tk, 1 mary-e-kay.tk, 1 @@ -94621,9 +94712,7 @@ marylandtaxes.gov, 1 maryleemacdonald.org, 1 maryluzturismo.co, 1 -marymade.it, 1 marymaloney.tk, 1 -marymotherofmankind.org, 1 marypierce.tk, 1 maryrock.net, 1 maryrose.org, 1 @@ -94653,7 +94742,6 @@ mascorazon.com, 1 mascotarios.org, 1 mascotasneron.es, 1 -mascoteando.net, 1 masdemariette.com, 1 masdemexico.com, 1 masdr.sa, 1 @@ -94707,7 +94795,6 @@ masoftware.ddns.net, 1 mason.so, 1 masonartstore.com, 1 -masonbank.com, 1 masoncountyil.gov, 1 masoncountywa.gov, 1 masoncountywaelections.gov, 1 @@ -94816,6 +94903,7 @@ masterprint.jp, 1 masterpro.ws, 1 masterquest.tk, 1 +masterrepairplumbing.com, 1 masters-burrell.co.uk, 1 mastersadistancia.com, 1 masterscast.com, 1 @@ -95032,6 +95120,7 @@ matrix.org, 1 matrix3dp.com, 1 matrix40.com, 1 +matrixeditora.com.br, 1 matrixengineered.com, 1 matrixfm.tk, 1 matrixhealthcare.ca, 1 @@ -95082,9 +95171,9 @@ matteozinnia.it, 1 matters.com.br, 1 mattersource.com, 1 -mattes.cc, 1 mattessons.co.uk, 1 mattferderer.com, 1 +mattfin.ch, 1 mattg.ca, 1 mattga.ca, 1 mattgemmell.com, 1 @@ -95237,6 +95326,7 @@ mauriciotoussaintarte.tk, 1 maurinet.com, 1 mauritsverelst.com, 1 +mauriziofaldi.com, 1 mauroalejandro.co, 1 mauronovellas.es, 1 maurrikone.com, 1 @@ -95251,12 +95341,14 @@ mauthietkecafe.com, 1 mauticamp.ng, 1 mautwelt.de, 1 +mave.sh, 1 maveeranpasupathi.tk, 1 maven.ng, 0 mavente.fr, 1 maventrading.com, 1 mavenvets.co.uk, 1 mavericklabel.com, 1 +mavericklive.co.uk, 1 maverickmobilemechanics.com, 1 maveris.com, 0 mavic.com, 1 @@ -95270,6 +95362,7 @@ mawinguhost.co.ke, 1 mawo.olkusz.pl, 1 mawrex.tech, 1 +mawrid.ai, 1 max-anime.tk, 1 max-apk.com, 0 max-moeglich.de, 1 @@ -95313,6 +95406,7 @@ maxdargent.com, 1 maxdata.nl, 1 maxdata.pt, 1 +maxdeposit.com, 1 maxedgymequipment.com, 1 maxgamez.tk, 1 maxh.me.uk, 1 @@ -95326,6 +95420,7 @@ maxiglobal.net, 1 maxihide.tk, 1 maxihyp.de, 1 +maxilife.com.ph, 1 maxim-group.com, 1 maxim.live, 1 maxima.at, 0 @@ -95350,8 +95445,8 @@ maximosilupu.tk, 1 maximovie.eu, 1 maxims-travel.com, 1 -maximschinese.com.hk, 1 maximumcontrol.nl, 1 +maximumphysiotherapy.com, 1 maximusrose.com, 0 maximusuk.co.uk, 1 maxinesbydennees.com, 1 @@ -95433,6 +95528,7 @@ mayerbrownllz.com, 1 mayersoncreative.com, 1 mayfairlakes.org, 1 +mayfairlimo.eu, 1 mayfieldheightsohio.gov, 1 mayflowerbocawina.tk, 1 mayflowercreative.com, 1 @@ -95477,6 +95573,10 @@ mazouttank.be, 1 mazsan1957.com, 1 mazternet.ru, 1 +mazudh.cc, 1 +mazudh.com, 1 +mazudh.in, 1 +mazudh.net, 1 mazurlabs.tk, 1 mazury-invest.pl, 1 mazyoud.com, 1 @@ -95519,13 +95619,14 @@ mblankhorst.nl, 1 mble.mg, 1 mbmassageterapi.se, 1 +mbmbuild.com, 1 +mbmva.fr, 1 mbocentre.com, 1 mbong.kr, 1 mbpskill.co.id, 1 mbr-net.de, 1 mbr.moe, 1 mbr.pw, 1 -mbradio.it, 1 mbrd.de, 1 mbrental.fr, 1 mbrjun.cn, 1 @@ -95559,6 +95660,7 @@ mcalert.in, 1 mcan.sh, 1 mcaps-mn.gov, 1 +mcar5b.com, 1 mcavallo.com, 1 mcb-bank.com, 1 mcbbs.wiki, 1 @@ -95632,7 +95734,6 @@ mcgregortx.gov, 1 mch2022.org, 1 mchaelkordomain.tk, 1 -mchalepersen.nl, 1 mchan.us, 1 mchdata.com, 1 mchel.net, 1 @@ -95710,6 +95811,7 @@ mcpepc.me, 0 mcplayman.de, 1 mcprocdn.com, 1 +mcr.pt, 1 mcraft.ru, 1 mcregex.com, 1 mcrn.jp, 1 @@ -95779,7 +95881,7 @@ mdf-nakladki.kiev.ua, 1 mdgsocialmediasecurity.com, 1 mdgx.com, 1 -mdhelicopters.com, 1 +mdigital.lt, 1 mdinvest.nz, 1 mdir.tk, 1 mdirector.com, 1 @@ -95832,6 +95934,7 @@ meals.lv, 1 mealsnmemories.in, 1 meamod.com, 1 +meandliora.com, 1 meandmyemotions.org, 1 meangreenjunk.com, 1 meaningfulbits.io, 1 @@ -95847,6 +95950,7 @@ meapbot.net, 1 meapbot.org, 1 meapbot.pro, 1 +meapp.co.il, 1 mearsconnect.com, 1 mearstransportation.com, 1 measureaustralia.com.au, 1 @@ -95985,6 +96089,7 @@ mec760.com, 1 mec825.com, 1 mec888.net, 1 +mecafresa.pt, 1 mecalac.com, 1 mecalux.com, 1 mecalux.es, 1 @@ -96002,6 +96107,7 @@ mecenatfoot.fr, 1 meceware.com, 1 mechafightclub.com, 1 +mechanic.cn, 1 mechanical.tk, 1 mechanics-schools.com, 1 mechanicweb.com, 1 @@ -96040,6 +96146,7 @@ medcartoon.com, 1 medcenter.online, 1 medcentr.online, 1 +medcheck.ma, 1 medcir.com.br, 1 medcof.com.br, 1 medcorfu.gr, 1 @@ -96093,10 +96200,10 @@ mediaarea.net, 1 mediaareplural.ca, 1 mediabackoffice.co.jp, 0 -mediabeestjes.nl, 1 mediabogen.net, 1 mediabooks.ml, 1 mediaboutique.nl, 1 +mediabrook.com, 1 mediabutic.ro, 1 mediacenter.dynv6.net, 1 mediacheky.es, 1 @@ -96158,7 +96265,6 @@ mediawiki.org, 1 mediaworqs.com, 1 medibooker.com.au, 1 -medic-world.com, 1 medicairsolutions.com, 1 medical-assistant-colleges.com, 1 medical-centr.tk, 1 @@ -96185,6 +96291,7 @@ medicalpeople.tk, 1 medicalphysicistservices.com, 1 medicalplaza.ua, 1 +medicalrules.servebeer.com, 1 medicalsite.tk, 1 medicalsland.com, 1 medicaltiny.de, 1 @@ -96214,7 +96321,7 @@ medicine.lv, 1 medicinesfast.com, 0 medicinia.com.br, 1 -medicininismetalas.lt, 1 +medicininismetalas.lt, 0 medicinskavranje.edu.rs, 1 mediciventures.com, 1 mediclinik.tk, 1 @@ -96302,7 +96409,6 @@ medpeer.jp, 1 medportalmd.tk, 1 medpost.com, 1 -medprozone.com, 1 medreseja.com, 1 medresponsive.com, 1 medrol.cf, 1 @@ -96345,13 +96451,16 @@ medycznyangielski.pl, 1 medyotan.ga, 1 medyumzeyneleroglu.com, 1 +medz.ro, 1 medzinenews.com, 0 +meedia.me, 1 meedoennoordkop.nl, 0 meeerskincare.com, 1 meek.ml, 1 meekhak.com, 1 meeko.cc, 1 meektech.com, 1 +meengan.com, 1 meenzen.net, 1 meeo7.tk, 1 meepbot.net, 1 @@ -96363,7 +96472,6 @@ meerman.nl, 0 meerpadel.nl, 1 meertrip.de, 1 -meesman.nl, 1 meesteresmisty.nl, 1 meestgesteldevragen.com, 1 meet, 1 @@ -96393,6 +96501,7 @@ meetville.com, 1 meetyou.me, 1 meewan.fr, 1 +meezjewelry.vn, 1 meeztech.com, 1 meeztertom.nl, 1 mefano.com, 1 @@ -96414,6 +96523,7 @@ megabouncingcastles.com, 1 megacellenerji.com, 1 megadesignecv.com.br, 1 +megadimensao.com.br, 1 megadrol.com, 1 megaelettrostimolatore.com, 1 megafilez.tk, 1 @@ -96499,14 +96609,15 @@ meharossii.ru, 1 mehdavia.tk, 1 mehdibouchema.be, 1 +mehdiqurancenter.com, 1 meherbaba.sk, 1 mehhh.xyz, 1 mehibo.tk, 1 +mehllegal.com, 1 mehlvilletermiteandpestcontrolinc.com, 1 mehmet.net, 1 mehmetince.net, 1 mehmettaze.com, 1 -mehode.com, 1 mehostdd.com, 0 mehrabpurtimes.tk, 1 mehrd.ad, 1 @@ -96515,6 +96626,7 @@ mehrnevesht.com, 1 mehrwert.de, 1 mehtagroup.in, 1 +mei-xin.cn, 1 meia.ir, 1 meichuniang.com, 0 meideas108.com, 1 @@ -96523,6 +96635,7 @@ meiekinnisvara.ee, 1 meierhofer.net, 1 meiersmarkus.de, 1 +meifacil.com, 1 meigetsuen1980.com, 1 meihuayi.com, 1 meijburg.com, 1 @@ -96542,6 +96655,7 @@ mein-arabischkurs.de, 1 mein-betriebsrat.digital, 1 mein-domizil.at, 1 +mein-es1.de, 1 mein-gehalt.at, 1 mein-muehlhausen.bayern, 1 mein-neuer-garten.de, 1 @@ -96601,6 +96715,7 @@ meiwa.web.id, 1 meiyi.ga, 1 meiyouad.com, 1 +meizitu.net, 1 mejofi.com, 1 mejofi.eu, 1 mejofi.net, 1 @@ -96610,8 +96725,10 @@ mejorator.net, 1 mejorator.org, 1 mejores-webs-citas.com, 1 +mejoresencuestas.com, 1 mejorespatineteselectricos.es, 1 mejorfiltrodeagua.com, 1 +mejorlaptop.com, 1 mejovonakowogov.gq, 1 mejpbs.com, 0 mek.technology, 1 @@ -96624,6 +96741,7 @@ mekatrotekno.com, 1 mekawy.tk, 1 mekegi.com, 1 +meken.com, 1 mekhaodee.com, 1 mekkaoui.cf, 1 meklon.net, 1 @@ -96711,7 +96829,6 @@ melissadeluxe.com, 1 melissageorge.tk, 1 melissalb.tk, 1 -melissavsfibromyalgia.com, 1 melitopol-news.ru, 1 melitopolnews.ru, 1 meliyb.ga, 1 @@ -96793,7 +96910,7 @@ memorial.com.tr, 1 memorialwalk.com.au, 1 memoriaseternizadas.com.br, 1 -memories-factory.pt, 1 +memories-factory.pt, 0 memorind.com, 1 memoryex.net, 1 memoryjoggerlibrary.com, 1 @@ -96832,6 +96949,7 @@ mendrala.eu, 1 mendrala.net, 1 menegaro.com.br, 1 +menelaostore.com, 1 menerga.it, 1 mengjianjiemeng.com, 1 mengjiucai.com, 1 @@ -96916,7 +97034,6 @@ mentonein.gov, 1 mentor.gov, 1 mentoringauchan.es, 1 -mentorly.co, 1 mentorsinchief.com, 1 menuel.me, 1 menufree.org, 1 @@ -96947,6 +97064,7 @@ mepcoeng.ac.in, 1 meperidina.com, 1 mephedrone.org, 1 +meplusliora.com, 1 meppel.nl, 1 mepresto.com, 1 meps.net, 0 @@ -97063,6 +97181,7 @@ meridianstore.com.br, 1 merikserver.tk, 1 merisia.ca, 1 +merisratings.com, 1 meritadvisor.com, 1 meritcb.eu, 1 meritking.news, 1 @@ -97105,8 +97224,8 @@ mervetekinmimarlikinsaat.com.tr, 1 mervewear.com, 1 merylholloway.com, 1 -merza.is, 1 merzai.co.uk, 1 +merzougaonline.com, 1 mes-bouquins.fr, 1 mes-courriers.fr, 1 mes-finances.be, 1 @@ -97121,6 +97240,7 @@ mescadeaux.com, 1 mescaline.com, 1 mescaline.org, 1 +mescaline.wiki, 1 mesdagh.be, 1 mesec.cz, 1 mesery.com, 1 @@ -97130,7 +97250,6 @@ meshflow.be, 1 meshflow.net, 1 meshintranet.com, 1 -meshnet.nl, 1 meshotes.com, 1 mesjumelles.fr, 1 meskdeals.com, 1 @@ -97269,6 +97388,7 @@ metalwarrior.tk, 1 metalweaverscreations.com, 1 metalworkingexpo.com, 1 +metamarkettrade.com, 1 metamente.me, 1 metameva.com, 1 metamorfosis.cf, 1 @@ -97280,7 +97400,6 @@ metapeen.nl, 1 metaphilic.tk, 1 metaplore.com, 1 -metaprivatewealth.com, 0 metapsychie.com, 1 metapublic.com, 1 metarhia.com, 1 @@ -97296,6 +97415,7 @@ metavr.ru, 1 metaword.co.jp, 1 metaword.com, 1 +metaword.net, 1 metayou.gq, 1 metcalfecountyky.gov, 1 metebalci.com, 1 @@ -97327,7 +97447,6 @@ metformin365.tk, 1 method.com, 0 methode.com, 1 -methodist.com.tr, 1 methodisthealth.com, 1 methodistorthopedics.com, 1 methodprinting.com, 1 @@ -97349,7 +97468,6 @@ metitlesearch.com, 1 metiz.site, 1 metizsoft.com, 1 -metkon.ru, 1 metkos.pl, 1 metkov.com.ua, 1 metkovic-news.com, 1 @@ -97425,7 +97543,6 @@ metver.tk, 1 metyweb.ga, 0 meuautotrac.com.br, 1 -meuaz.com, 1 meubairro360.com.br, 1 meubanco7.com.br, 1 meubebepa.com.br, 1 @@ -97448,7 +97565,6 @@ meusucesso.com, 1 meutia.net, 1 mevanshop.com, 1 -mevaturizm.com.tr, 1 mevea.com, 1 meveydesign.tk, 1 mevissenpsychotrauma.nl, 1 @@ -97481,6 +97597,7 @@ meyersconstructionandconsulting.com, 1 meyner.com, 1 meys.io, 1 +meyvs.com, 1 mezcal.amsterdam, 1 mezedokamomata.tk, 1 meziblog.cz, 1 @@ -97558,10 +97675,8 @@ mgm-constructeur.com, 1 mgmd.org, 1 mgmeet.com, 1 -mgmpic.com, 1 mgmultiservicessrl.it, 1 mgo-ostenfelde.tk, 1 -mgoconsultoria.net.br, 1 mgoeppl.uk, 1 mgonline.tk, 1 mgousse.tk, 1 @@ -97589,7 +97704,6 @@ mhasika.tk, 1 mhastey.com, 1 mhatlaw.com, 1 -mhc8.co.jp, 1 mhcdesignstudio.com, 1 mhealthspot.com, 1 mheistermann.de, 1 @@ -97607,8 +97721,10 @@ mhiler.com, 1 mhilger.de, 1 mhjuma.com, 1 +mhmchauffeurs.co.uk, 1 mhmfoundationrepair.com, 1 mhonline.fr, 1 +mhp.net, 1 mhparena-stuttgart.de, 1 mhshokuhi.ir, 1 mhtdesign.net, 1 @@ -97670,7 +97786,6 @@ miasegurado.com, 1 miasma.tk, 1 miasonne.com, 1 -miatabox.com, 1 miatfactory.be, 1 miatgent.be, 1 miavierra.org, 1 @@ -97905,14 +98020,12 @@ microwesen.de, 1 microworkers.com, 1 microzubr.com, 1 -micruity.com, 1 mics-notrack.com, 1 micsell.com, 1 micsoft.gq, 1 mict.nu, 1 miculturaservicios.gob.do, 1 micxel.com.au, 1 -midaero.co.uk, 1 midair.io, 1 midam.sk, 1 midasauctions.com, 1 @@ -97935,6 +98048,7 @@ middletownny.gov, 1 middletownri.gov, 1 middleware.services, 1 +mide.gob.do, 1 midea.kg, 1 mideo.tk, 1 midesa.eu, 1 @@ -97965,7 +98079,6 @@ mido4link.tk, 1 midoceanpartners.com, 1 midohiowsd.gov, 1 -midonet.org, 0 midos.house, 1 midpacificfutures.com, 1 midpss.lt, 1 @@ -98003,6 +98116,7 @@ mielehybla.it, 1 mielelpinsapar.com, 0 mielenosoitukset.fi, 1 +mielkan.com, 1 mielke-it.ch, 1 miem.us, 1 miembarcacion.com, 1 @@ -98021,7 +98135,6 @@ miffy.me, 1 mifirm.net, 0 mifo-adviesgroep.nl, 1 -miftahulteknik.com, 1 mifuturo.cl, 1 mig.ee, 1 mig5.net, 1 @@ -98072,11 +98185,11 @@ miguelstreeservices.com, 1 miguia.tv, 1 mihaelacozma.ro, 1 -mihaijoe.fr, 1 mihaiordean.com, 1 mihaiturcu.ninja, 1 mihalgrameno.ml, 1 mihalicka.com, 1 +mihanroid.ir, 1 mihanwebtest.tk, 1 miharu.moe, 1 mihaylov.tk, 1 @@ -98152,8 +98265,10 @@ mijnstembureau-koggenland.nl, 1 mijnstembureau-leiden.nl, 1 mijnstembureau-leiderdorp.nl, 1 +mijnstembureau-lelystad.nl, 1 mijnstembureau-loonopzand.nl, 1 mijnstembureau-losser.nl, 1 +mijnstembureau-meppel.nl, 1 mijnstembureau-midden-groningen.nl, 1 mijnstembureau-molenlanden.nl, 1 mijnstembureau-nuenen.nl, 1 @@ -98183,6 +98298,7 @@ mijnstembureau.nl, 1 mijnvogaanvraag.nl, 1 mijnwefact.nl, 1 +mijp.com, 1 mika.moe, 1 mikado-rybak.ru, 1 mikadoe.nl, 0 @@ -98258,7 +98374,6 @@ mikkei.space, 1 mikkel.cc, 1 mikkelscheike.com, 1 -mikkelvej.dk, 1 mikkipastel.com, 1 mikkohuupponen.com, 0 mikkonen.bio, 1 @@ -98345,9 +98460,7 @@ milesconsulting.io, 1 milesdewitt.com, 1 milesformigraine.org, 1 -milesforwomenshealth.org, 1 milesquaretechnologygroup.com, 1 -milestonehotel.com, 1 milestonemachine.com, 1 miletic.net, 1 mileyweasel.de, 1 @@ -98377,7 +98490,6 @@ militaryconsumer.gov, 1 militaryfetish.tk, 1 militaryonesource.mil, 1 -militarypumps.com, 1 militarysrit.tk, 1 militer.id, 1 miliumnet.tk, 1 @@ -98397,7 +98509,6 @@ milkingit.net, 1 milkingmachine.tk, 1 milkmoovement.io, 1 -milkopet.com, 1 milktea.info, 0 milkteacant.com, 1 milkyperu.com, 1 @@ -98414,6 +98525,7 @@ millefleurs.eu, 1 millenialarts.xyz, 1 millenialhouse.xyz, 1 +millenn.photos, 1 millennialbella.net, 1 millennium-thisiswhoweare.net, 1 millenniumfalcon.org, 1 @@ -98456,7 +98568,6 @@ millonario.tk, 1 millscountyiowa.gov, 1 millscountytx.gov, 1 -millsidecentre.org, 1 milltime.se, 1 millwoodwa.gov, 1 milmesetas.com, 1 @@ -98468,6 +98579,9 @@ milovich.ca, 1 milpitas.gov, 1 milr.dk, 1 +miltonbaby.co.uk, 1 +miltonbaby.com.au, 1 +miltonbaby.ie, 1 miltonga.gov, 1 miltoniatravel.com, 1 miltontwpmi.gov, 1 @@ -98520,9 +98634,11 @@ minapan.ro, 1 minapin.com, 1 minasfor.com.br, 1 +minasverde.com.br, 1 minato-home-care.jp, 1 minatomachi-dc.jp, 1 minbrew.com, 1 +mincantos.com.br, 1 minced.cf, 1 minclaw.com, 1 mincom.ga, 1 @@ -98558,9 +98674,11 @@ mindfulnessjourney.ca, 1 mindfulslumber.com, 1 mindgard.co.uk, 1 +mindhand.com, 1 mindingourway.com, 1 mindjee.tk, 1 mindleaking.org, 1 +mindmatters.social, 1 mindmax.fi, 1 mindmeister.com, 1 mindminers.com, 1 @@ -98575,8 +98693,6 @@ mindscapephotos.de, 1 mindset-energie.ch, 1 mindshiftleadership.com, 1 -mindshiftlife.eu, 1 -mindspins.com, 1 mindspliteffect.tk, 1 mindspring.co.za, 1 mindstream.one, 1 @@ -98696,6 +98812,7 @@ minidrett.no, 1 minifree.org, 1 minigames.com, 1 +minigameuniverse.net, 1 minigermanauto.com, 1 minigoldendoodle.com, 1 minigolf-reisinger.com, 1 @@ -98742,6 +98859,7 @@ ministryofsound.com, 1 ministryofvillas.com, 1 ministudio.ml, 1 +ministyle.ro, 1 minitec.ro, 1 minitruckin.net, 1 minitrucktalk.com, 1 @@ -98758,7 +98876,6 @@ minkafighter.eu, 1 minkatilmancoaching.nl, 1 minkymoon.jp, 1 -minlly.com, 1 minload.com, 1 minly.com, 1 minmaxgame.com, 1 @@ -98848,6 +98965,7 @@ mipesa.cz, 1 mipiaci.co.nz, 0 mipiaci.com.au, 0 +mipiao.com, 1 miplanilla.com, 1 mipnet.cl, 1 mipolak.eu, 1 @@ -98875,7 +98993,6 @@ miracle-dome.com, 1 miracle95.eu.org, 1 miraclehill.org, 1 -mirades.es, 1 mirador.co.uk, 1 miradordelcondado.com, 1 mirage-project.tk, 1 @@ -98949,8 +99066,6 @@ mirsa.sk, 1 mirshak.com, 0 mirtazapine.gq, 1 -mirte-engelhard.com, 1 -mirte-engelhard.nl, 1 mirtentov.ru, 1 mirtes.cz, 1 mirtouf.fr, 1 @@ -98986,6 +99101,7 @@ mishrahome.com, 1 mishraweb.com, 1 misiepluszowe.com, 1 +misinforpedia.com, 1 misinstrumentos.com, 1 misite.ddns.net, 1 misiunas.eu, 1 @@ -99073,7 +99189,6 @@ misterdomain.eu, 1 mistergermany.tk, 1 mistergout.com, 1 -misterharty.com, 1 misterkeltic.com, 1 misterl.net, 1 misterspex.at, 1 @@ -99131,6 +99246,7 @@ mitev.gq, 1 mitevi.com, 1 mitfahrgelegenheit.de, 1 +mitfreespeech.org, 1 mitgrussen.de, 1 mithgol.tk, 1 mithril.email, 1 @@ -99250,6 +99366,7 @@ mixpanel.com, 1 mixposure.com, 1 mixtapesammelstelle.de, 1 +mixxie.moe, 1 miyagi-ctr.com, 1 miyagi-r.com, 1 miyajima-ken.jp, 1 @@ -99268,13 +99385,11 @@ miyoshi-kikaku.com, 0 mizar.im, 0 mizik.cz, 1 -mizipack.com, 0 +miziklakay.com, 1 mizoey.se, 1 -mizon.com.pe, 1 mizternational.com, 1 mizuhobank.co.id, 1 mizuhofutures.com, 1 -mizuiromoon.com, 1 mizuki.pink, 1 mizukoshika.jp, 1 mizumax.me, 1 @@ -99284,7 +99399,6 @@ mjallal.sa, 1 mjanja.ch, 1 mjasm.org, 1 -mjbale.com, 1 mjbtechtips.com, 1 mjc-psicologa.com, 1 mjcstsul2022.tk, 1 @@ -99317,7 +99431,6 @@ mk83.cloud, 0 mk89.de, 1 mkakh.xyz, 1 -mkala.ru, 1 mkalisch.de, 1 mkbd.ru, 1 mkbeindhoven.nl, 1 @@ -99356,6 +99469,7 @@ mkk.de, 1 mkkcrafts.com, 1 mkkkrc.ru, 1 +mkl.cn, 1 mklenterprisesacademy.com, 1 mklenterprisescoaching.com, 1 mklpedia.de, 1 @@ -99425,6 +99539,7 @@ mlokcleaning.com, 1 mlonline.com.mx, 1 mloska.tk, 1 +mlotfycarrental.com, 1 mlp.horse, 1 mlpavimentosdehormigonimpreso.com, 1 mlpk.cz, 1 @@ -99453,6 +99568,7 @@ mma.org, 1 mmalisz.com, 1 mmallardi.no-ip.biz, 1 +mmanea.org, 1 mmanews24.com, 1 mmapiws.com, 1 mmaps.ddns.net, 1 @@ -99494,7 +99610,6 @@ mmonit.com, 1 mmostats.com, 1 mmot.sk, 1 -mmpaymentsystem.com, 1 mmpi-ci.com, 1 mmpiinternational.com, 1 mmpiservices.fr, 1 @@ -99520,6 +99635,7 @@ mnartgallery.com, 1 mnatechnologies.com.au, 1 mnbg.tk, 1 +mnbwnetrza.pl, 1 mncbank.co.id, 1 mnccc.gov, 1 mnciitbhu.me, 1 @@ -99566,6 +99682,7 @@ mnvotes.gov, 1 mo-en-karim.tk, 1 mo-mentor.com, 1 +mo-sick.net, 1 mo-vvs.dk, 1 mo.co.uk, 1 mo.nl, 1 @@ -99577,6 +99694,7 @@ moaf.org, 1 moahmo.com, 0 moaicar.com, 1 +moalboaladventures.com, 1 moas.design, 1 moas.photos, 1 moawards.com, 1 @@ -99631,7 +99749,6 @@ mobilegameslist.com, 1 mobilegoldcoastelectrical.ga, 1 mobilehomeideas.com, 1 -mobilehub.online, 1 mobilehydraulics.com.au, 1 mobileit.cz, 1 mobilelaby.com, 1 @@ -99653,7 +99770,6 @@ mobiletechnews.tk, 1 mobileteleconferenceers.ga, 1 mobiletirer.tk, 1 -mobiletop.co.uk, 1 mobiletraff.co, 1 mobilewikiserver.com, 1 mobilhaber.ga, 1 @@ -99672,7 +99788,6 @@ mobiliteitstadgent.be, 1 mobility-events.ch, 1 mobility-services.eu, 1 -mobilityworks.eu, 0 mobilityworld.tk, 1 mobilize.us, 1 mobilizon.fr, 1 @@ -99685,13 +99800,13 @@ mobiltank.fr, 1 mobiltune.tk, 1 mobilux.lv, 1 +mobincube.com, 1 mobincube.mobi, 1 mobinet.tk, 1 mobinst.ml, 1 mobio.net, 1 mobiotics.com, 1 mobiride.co, 1 -mobisaar-cloud.de, 1 mobistartv.ml, 1 mobius.network, 1 mobizent.com, 1 @@ -99725,6 +99840,7 @@ mockingjay.io, 1 mocknen.net, 1 mocksvillenc.org, 1 +mocleirigh.ie, 1 mocomoco.jp, 1 mod.af, 0 mod.gov.lb, 1 @@ -99750,7 +99866,7 @@ modapharma.org, 1 modasexy.it, 1 modav.org, 1 -modax.ua, 1 +modax.ua, 0 modbom.com.tw, 1 modcombo.com, 1 modcover.com, 1 @@ -99758,7 +99874,6 @@ modded-minecraft-server-list.com, 1 moddedphones.com, 1 modderday.com, 1 -moddermore.net, 1 modding-forum.com, 1 modding-openmw.com, 1 modding-welt.com, 1 @@ -99795,7 +99910,6 @@ moderaterna.se, 1 moderatoren.org, 1 modern-gaming.ga, 1 -modern-metal-solutions.com, 1 modernalisa.com, 1 modernapprenticeships.org, 1 modernautorepairs.com, 1 @@ -99986,12 +100100,12 @@ mojizuri.com, 1 mojizuri.jp, 1 mojkragujevac.net, 1 +mojleksikon.com, 1 mojmolitvenik.com, 1 mojnet.eu, 1 mojnet.net, 1 mojo.az, 1 mojo.so, 1 -mojobrewband.com, 1 mojoco.co.za, 1 mojodentallaboratory.co.uk, 0 mojogaragedoors.com, 1 @@ -100036,6 +100150,7 @@ moliporex.pt, 1 molise.store, 1 molkerei-ammerland.com, 1 +moller.cn, 1 molleron.net, 1 molletjesveer.tk, 1 mollybears.org, 1 @@ -100114,7 +100229,6 @@ mon-dolibarr.fr, 0 mon-habitation.ca, 1 mon-ifce.com, 1 -mon-instant-cil.fr, 1 mon-match.com, 1 mon-partage.fr, 1 mon-sac-italien.fr, 1 @@ -100212,12 +100326,13 @@ moneymania.tk, 1 moneymart.ca, 1 moneymint.com, 1 -moneyniti.com, 1 +moneyniti.com, 0 moneyonchain.com, 1 moneyreal.tk, 1 moneyreview.gr, 1 moneysavingpro.com, 0 moneysmart.gov.au, 1 +moneysmart.net.au, 1 moneytalks.com, 1 moneytech.tk, 1 moneytoday.se, 1 @@ -100244,7 +100359,6 @@ monikacheangphotography.com, 1 monikadesign.uk, 1 monikapierzchala.com, 1 -monikas-ferienhof.de, 1 monin.net, 1 moninformaticien.ovh, 0 monique.io, 1 @@ -100318,7 +100432,6 @@ monplay.host, 1 monrabais.fr, 1 monrasp.ddns.net, 1 -monroecountycancersupporters.org, 1 monroecountymo.gov, 1 monroecountyny-opi.gov, 1 monroecountysheriff-ny.gov, 1 @@ -100361,18 +100474,16 @@ montagnainitalia.com, 1 montagne-vacances.com, 1 montagnicimes.com, 1 -montaguehotel.com, 1 montala.com, 1 montalvofarret.xyz, 1 montanabiack.de, 1 montanacreativitymovement.tk, 1 montanaguard.gov, 1 -montanaonlinedivorce.com, 1 +montanaonlinedivorce.com, 0 montanarenewables.org, 1 montanasky.tv, 1 montanatitlesearch.com, 1 montanawi.gov, 1 -montanwerk.de, 1 montarosa.tk, 1 montas.io, 0 montcalmcountymi.gov, 1 @@ -100487,7 +100598,6 @@ moonkin.eu, 1 moonlabs.nl, 1 moonlanders.nl, 0 -moonlight-pr.com, 1 moonlight-show.tk, 1 moonlightdesign.org, 1 moonlightlovers.com, 1 @@ -100542,7 +100652,6 @@ moov.tk, 1 moova.io, 1 moove-it.com, 1 -moove.co.jp, 1 moovemais.com.br, 1 mopak.tk, 1 moparcraft.com, 1 @@ -100554,7 +100663,7 @@ moparisthebest.org, 1 moparpartsgiant.com, 1 moparscape.net, 1 -mope-blog.com, 0 +mope-blog.com, 1 moped-versichern.de, 1 mopedpress.com, 1 mopedreifen.de, 0 @@ -100586,6 +100695,7 @@ morchstore.com, 1 morcillaencaldera.com, 1 mord-ost.de, 1 +mordamla.com, 1 mordor.email, 1 mordor.land, 1 mordovia.cf, 1 @@ -100600,6 +100710,7 @@ morebus.co.uk, 1 morechance.de, 1 morecigarettes.tk, 1 +moreclarity.digital, 1 morecreativelife.com, 1 morediets.net, 1 moreeducation.tk, 1 @@ -100661,6 +100772,7 @@ morningchew.com, 1 morningcurve.com, 0 morninggarden.com, 1 +mornings.com, 1 morningstar.moe, 1 moro-gastro.de, 1 moroccanews.tk, 1 @@ -100677,13 +100789,11 @@ morooi.cn, 0 morosystems.cloud, 1 morox.top, 1 -moroz.cx, 1 morozko.gq, 1 morozstudio.tk, 1 morozyaka.tk, 1 morph3d.tk, 1 morphbyte.com, 1 -morphed.io, 1 morpheusdata.com, 1 morpheusmobile.com, 1 morphisec-utp.com, 1 @@ -100787,6 +100897,7 @@ most.tk, 1 mostaccino.com, 1 mostafabanaei.cf, 1 +mostamaracademy.ir, 1 mostazaketchup.com, 1 mostbet.com, 1 mostbet2.com, 1 @@ -100808,6 +100919,7 @@ motabilitychargeshare.co.uk, 1 motabilitydealer.co.uk, 1 motabilityoperations.co.uk, 1 +motabilityoperationsrecruitment.co.uk, 1 motabilitythebigevent.co.uk, 1 motat.nz, 1 motd.ch, 1 @@ -100896,9 +101008,11 @@ motor1.com, 1 motorbiketenerife.com, 1 motorbiketourhanoi.com, 1 +motorcityalignment.com, 1 motorcitycasino.com, 1 motorcyclestudies.org, 1 motordearranque.com.br, 1 +motoreflex.pe, 1 motorfinanceonline.com, 1 motorhulp.eu, 1 motoridiricerca.tk, 1 @@ -100910,11 +101024,11 @@ motorring.ru, 1 motorsactu.com, 1 motorslopers.tk, 1 +motorspeed.de, 1 motorsport-passion.com, 1 motorsport-wuerttemberg.de, 1 motorst.dk, 1 motortg.it, 1 -motortrend.com, 1 motorwatcher.com, 1 motorways.tk, 1 motorwrappen.nl, 1 @@ -101002,7 +101116,6 @@ mountknowledge.nl, 1 mountpost.tk, 1 mountshastasupermarket.com, 1 -mountsima.com, 1 mountsinaiparks.org, 1 mountvernonin.gov, 1 mountvernonny.gov, 1 @@ -101026,6 +101139,7 @@ movado.com, 1 movahoteis.com.br, 1 moval.gov, 1 +movavi.id, 1 movavi.ru, 1 move-out-cleaning.co.uk, 1 moveceara.com.br, 1 @@ -101072,14 +101186,12 @@ moviesetc.net, 1 moviesrules.tk, 1 moviestodownload.tk, 1 -movieswood.one, 1 movietele.it, 1 movietopper.ml, 1 movietradition.tk, 1 moviewatchin.tk, 1 movieweb.com, 1 movieworld.com.au, 1 -movihut.com, 1 moviko.nz, 1 movil.uno, 1 movilandroide.com, 1 @@ -101119,6 +101231,7 @@ moyu.host, 0 moyufangge.com, 1 moz.idv.tw, 1 +mozaic.io, 1 mozambiquetravel.com, 1 mozartsocietyofamerica.org, 1 mozektevidi.net, 1 @@ -101138,6 +101251,7 @@ mp3.cz, 1 mp3.tj, 1 mp3cut.net, 1 +mp3ddesigns.com, 1 mp3gratuiti.com, 0 mp3musicfind.ga, 1 mp3noi.com, 1 @@ -101151,7 +101265,6 @@ mpbio.com, 1 mpc-hc.org, 1 mpc-view.net, 1 -mpcmsa.org, 1 mpdu.tk, 1 mpebrasil.tk, 1 mpeslearning.com, 1 @@ -101204,6 +101317,7 @@ mqas.net, 1 mqbeauty.com.tw, 1 mqbx.nl, 1 +mqtv.com, 1 mr-7.ru, 1 mr-a.de, 1 mr-anderson.org, 0 @@ -101304,6 +101418,7 @@ mrmeeb.co.uk, 1 mrmemory.co.uk, 1 mrmeomeo.xyz, 1 +mrmeticulous.com.au, 1 mrmn.nl, 1 mrmoregame.de, 1 mrmosier.tk, 1 @@ -101379,7 +101494,6 @@ msar.eu, 1 msbdocs.com, 1 msbmb.com, 1 -msc-corps.de, 1 mscc.mu, 1 msch.pw, 1 mschuessler.org, 1 @@ -101403,14 +101517,12 @@ msgroupitaly.com, 1 msgru.com, 1 msgs.ee, 1 -msgsvc.com, 1 msgtrust.com, 1 msh100.uk, 1 msha.gov, 1 mshastanddown.gov, 1 mshemailmarketer.com.au, 1 mshgame.ga, 1 -mshkz.com, 1 msi-zlin.cz, 1 msi.com, 1 msiegmund.com, 1 @@ -101422,6 +101534,8 @@ msk-balkon.ru, 1 msk-news.net, 1 msklawyer.com, 1 +mslinkpc.com, 1 +mslinkphoneqr.com, 1 mslivros.com.br, 1 msm.ai, 1 msmadlemon.com, 1 @@ -101535,7 +101649,7 @@ mtf.rip, 1 mtf.wiki, 1 mtfgnettoyage.fr, 1 -mtgims.com, 1 +mtgims.com, 0 mtgoptex.com, 1 mtgsuomi.fi, 1 mthode.org, 1 @@ -101555,7 +101669,7 @@ mtm.tj, 1 mtmedia.org, 1 mtn-media.de, 1 -mtnbikeriders.com, 0 +mtnbikeriders.com, 1 mtnc.nl, 1 mtncoi-coe.com, 1 mtnvalleyhospice.org, 1 @@ -101591,7 +101705,6 @@ mtzbelarus.gq, 1 mtzfederico.com, 1 mu-sigma.com, 1 -mu-thunder.online, 1 mu-venezuela.tk, 1 mu-wi.gov, 1 mu.search.yahoo.com, 0 @@ -101613,6 +101726,7 @@ muchohentai.com, 1 muchoruidoacademy.com, 1 muchotrolley.tk, 1 +muchtv.com, 1 muckingabout.eu, 1 muckleshoot.gov, 1 mucktopia.com, 1 @@ -101663,6 +101777,7 @@ mugen-kairou.art, 1 mugen.technology, 1 mugrabyhostel.tk, 1 +mugsocks.com.au, 1 muguayuan.com, 1 muh.io, 1 muhabbet.org, 1 @@ -101694,12 +101809,11 @@ muj-sejf.eu, 1 mujemail.ml, 1 mujerescolombianas.tk, 1 -mujeresfemeninas.com, 1 mujeresparalasalud.org, 1 mujlinux.cz, 1 mujoco.org, 1 muk-kobetsu.com, 1 -mukasa.no, 1 +mukasa.no, 0 mukio-official.com, 1 mukio.live, 1 mukioofficial.com, 1 @@ -101782,6 +101896,7 @@ multirep.ch, 0 multiroom-streaming.de, 1 multischool.tk, 1 +multiservice-group.eu, 1 multisite.ovh, 1 multispaninc.com, 1 multistas.tk, 1 @@ -101805,7 +101920,6 @@ multnomahvotes.gov, 1 multsearch.eu.org, 1 multymaq.com, 0 -mum.ceo, 1 mum.is, 1 mum.lu, 1 muma.cf, 1 @@ -101819,7 +101933,6 @@ mummyandmephotography.com, 1 mumolabs.com, 1 mumusofa.com.tw, 1 -mumwithpurpose.com, 1 muna.de, 1 munakata-cl.jp, 1 munch.me, 1 @@ -101876,13 +101989,14 @@ muniplus.com.ar, 1 munique.net, 1 munire.de, 1 +munisiacs.com, 1 munkeeboi.com, 1 munki.org, 1 munnezza.tk, 1 munroads.com, 1 muntajati-om.com, 0 muntproever.nl, 1 -muntstuk.com, 1 +muntstuk.com, 0 munzlocal10.org.nz, 1 muoivancauhoivisao.com, 1 muonmarketing.com, 1 @@ -101963,7 +102077,6 @@ muscuolisq.cf, 1 musearchengine.com, 1 museaward.com, 1 -museclass.com, 1 museclef.com, 1 musecomunicazione.it, 1 musedash.moe, 1 @@ -101989,7 +102102,6 @@ museumjeugduniversiteit.nl, 1 museumnachtgent.be, 1 museumplantinmoretus.be, 1 -museumtravelalliance.com, 1 museumwaalsdorp.nl, 1 musexpo.net, 1 mush-room.co.jp, 1 @@ -102029,7 +102141,6 @@ musicfactory.ml, 1 musicfestivalsuite.com, 1 musicflac4.tk, 1 -musicfor.us, 1 musicforreading.com, 1 musicfreakz.cf, 1 musicfromgod.com, 1 @@ -102044,7 +102155,6 @@ musiclenta.tk, 1 musiclite.tk, 1 musicmasala.tk, 1 -musicnotesroom.com, 1 musicompare.com, 1 musicradar.co.il, 1 musicradio.ga, 1 @@ -102074,6 +102184,7 @@ musikhaus-korn.de, 1 musikholics.com, 1 musikidersi.tk, 1 +musikkfondene.no, 1 musiktag2020.ch, 1 musiktest24.de, 1 musikverein-elten.de, 1 @@ -102114,6 +102225,7 @@ mustard.llc, 1 mustasj.no, 1 mustat.com, 1 +mustdonewzealand.co.nz, 1 muster-folien.de, 1 muster-schablonen.de, 1 musterionsec.com, 1 @@ -102166,7 +102278,6 @@ muusikoiden.net, 1 muv.ac, 1 muv.co.uk, 1 -muvac.com, 1 muvy.tube, 1 muwatenraqamy.org, 1 muwi.tk, 1 @@ -102239,10 +102350,9 @@ mvzstartpagina.tk, 1 mw-power.ru, 1 mw.search.yahoo.com, 0 -mwahyunz.id, 1 +mwahyunz.id, 0 mwai.edu.ph, 1 mwamitours.com, 1 -mwanamama.com, 1 mwancloud.com, 1 mwanevents.com, 1 mwanmobile.com, 1 @@ -102287,7 +102397,9 @@ mxgateway.eu, 1 mxin.ltd, 1 mxinfo.fr, 1 +mxlink.cn, 1 mxlog.com.br, 1 +mxradar.com, 1 mxtm.de, 1 mxtsoluciones.com.mx, 1 my-aftershave-store.co.uk, 1 @@ -102329,6 +102441,7 @@ my-pawnshop.com.ua, 0 my-pharmacie.com, 1 my-phone.tk, 1 +my-profile.org, 1 my-salesforce-communities.com, 1 my-salesforce-community-builder.com, 1 my-salesforce-community-live-preview.com, 1 @@ -102338,7 +102451,6 @@ my-salesforce-sites.com, 1 my-salesforce.com, 1 my-salesforcescrt.com, 1 -my-scheduler.net, 1 my-sex-cam.com, 1 my-static-demo-808795.c.cdn77.org, 1 my-static-live-808795.c.cdn77.org, 1 @@ -102380,7 +102492,7 @@ myakkatactical.com, 1 myalliancechurch.com, 1 myalmeria.com, 1 -myalpine.shop, 0 +myalpine.shop, 1 myalsadd.tk, 1 myalumil.com, 1 myamend.com, 1 @@ -102422,8 +102534,10 @@ mybestbook.tk, 1 mybestbooks.gq, 1 mybestteam.tk, 1 +mybetterlife.blog, 1 mybicc.org, 1 mybieo.com, 1 +mybillie.com, 1 mybirds.tk, 1 mybisnis.tk, 1 mybizzmail.com, 1 @@ -102453,6 +102567,7 @@ mybusiness-mentor.de, 1 mybusinessgrant.com.au, 1 mybusinessgrants.com.au, 1 +mybzz.com, 1 mycafebarista.com, 1 mycaffee.ir, 1 mycake.me, 1 @@ -102477,12 +102592,14 @@ mychemicallove.com, 1 mychemromance.tk, 1 mychicken.info, 1 +mychicken.nl, 1 mychildatschool.com, 1 mycigna.com.hk, 1 mycinema.pro, 1 mycircleworks.com, 1 myclang.com, 1 myclearhead.com, 1 +myclimate.com, 1 myclinicalstudybuddy.com, 1 myclon.tk, 1 mycloud-system.com, 1 @@ -102496,7 +102613,6 @@ mycofairtrade.com, 0 mycoins.gallery, 1 mycoldjet.com, 1 -mycollegebag.in, 1 mycolo.gq, 1 mycolorado.gov, 1 mycommerce.tk, 1 @@ -102593,6 +102709,7 @@ myeducationhub.tk, 1 myedumundo.com, 1 myeisenbahn.de, 1 +myekon.com, 1 myelebest.ga, 1 myelinalicante.com, 1 myelka.tk, 1 @@ -102643,6 +102760,7 @@ myfirstcallmedical.com, 1 myfirstchessclub.com, 1 myfishpalace.at, 1 +myfitmare.com, 1 myfitnessbenefit.com, 1 myfitnesscare.com, 1 myfitsociety.com, 1 @@ -102704,6 +102822,7 @@ myglobalopti.nl, 1 mygnmr.com, 0 mygo.pw, 1 +mygoalguide.com, 1 mygobelin.tk, 1 mygolfsimulator.com, 1 mygolod.com, 1 @@ -102718,7 +102837,6 @@ mygrodno.tk, 1 mygtcup.co, 1 mygve.com, 1 -mygwacal.com, 1 mygymer.ch, 1 myhabitshop.com, 1 myhappiness.tk, 1 @@ -102771,13 +102889,14 @@ myinvista.com, 1 myip.solutions, 1 myisolved.com, 1 +myitero.com, 1 myjbn.org, 1 myjobsearchengine.com, 1 myjourneytolakehead.ca, 1 myjoystores.com.br, 1 myjudo.net, 1 myjumpsuit.de, 1 -myjuvelirika.ru, 1 +mykad.ca, 1 mykademia.com, 1 mykarelia.ga, 1 mykarelia.tk, 1 @@ -102868,6 +102987,7 @@ mymo.in.th, 1 mymommyworld.com, 1 mymoneycoin.ml, 1 +mymoranguito.com, 1 mymotor.nl, 1 mymovein.com, 1 mympdv.com, 1 @@ -102895,7 +103015,6 @@ mynaturebox.com, 0 mynaughtyalbum.com, 1 mynaui.com, 1 -mynavi-kaigo.jp, 1 myndcommunication.com, 0 myndighetermeddnssec.se, 1 myndighetermedipv6.se, 1 @@ -103101,6 +103220,7 @@ mysbi.tk, 1 mysched.co, 1 myschool.edu.au, 1 +myschoolelection.nz, 1 myschoolphoto.org, 1 myschools.nyc, 1 mysciencecloset.com, 1 @@ -103131,20 +103251,17 @@ mysmallbusinesssidekick.com, 1 mysmartloan.ca, 1 mysmartserve.com, 0 -mysmmstore.com, 1 mysmmstore.in, 1 mysmsapp.cn, 1 mysociallinks.org, 1 mysociety.ml, 1 mysockfactory.ch, 1 mysoft.com.tr, 1 -mysoft.one, 1 mysoft.tr, 1 mysoftbtrans.com, 1 mysoftebelge.com, 1 mysoftlonca.com, 1 mysoundtalks.com, 0 -mysourcebank.com, 1 mysourceofhealth.com, 0 myspicer.com, 1 mysports.com, 1 @@ -103162,7 +103279,6 @@ mysterymind.ch, 0 mysteryshow.site, 1 mysterytag.com, 1 -mystex.me, 1 mystgames.tk, 1 mystia.org, 1 mystic-falls.tk, 1 @@ -103201,7 +103317,6 @@ myswimmingclub.uk, 1 myswitchelectric.com, 1 myswooop.de, 1 -mysys.com, 1 myszg.com, 1 mytana.com, 1 mytaratata.com, 1 @@ -103222,7 +103337,6 @@ mytime.gl, 1 mytimer.tk, 1 myting.net, 1 -mytitleapp.com, 1 mytlevelshub.com, 1 mytntware.com, 1 mytoncityut.gov, 1 @@ -103240,7 +103354,6 @@ mytrinity.com.ua, 1 mytroc.pro, 1 mytruecare.org, 1 -mytruemedia.com, 1 mytrustadviser.com, 1 mytty.net, 1 mytuleap.com, 1 @@ -103272,6 +103385,7 @@ myvetjobs.com.au, 1 myvi.gov, 1 myviewboard.com, 1 +myvirtualserver.com, 0 myvologda.tk, 1 myvotect.gov, 1 myvulcan-platinum.ru, 1 @@ -103313,21 +103427,38 @@ myzoetrope.com, 1 mz-mz.net, 1 mz.al, 1 +mz2023.cc, 1 +mz2024.cc, 1 +mz2025.cc, 1 +mz2026.cc, 1 +mz2027.cc, 1 +mz2028.cc, 1 +mz2029.cc, 1 +mz2030.cc, 1 +mz2031.cc, 1 +mz2032.cc, 1 +mz2033.cc, 1 mza.com, 1 mzademiryolu.com, 1 mzadqatar.com, 1 mzak.pro, 1 +mzakariya.com, 1 +mzcdn.cc, 1 mzcsgo.top, 1 +mzdy.cc, 1 +mzdy.in, 1 mzflirt.de, 1 mzg.fan, 1 mzgit.io, 1 mzlog.win, 1 +mzly.cc, 1 mzmtech.com, 1 mzorn.photography, 0 mzr.jp, 1 mzstatic.cc, 1 mzuther.de, 1 mzyxsl.top, 1 +n-ag.de, 1 n-cis.ru, 1 n-design-service.de, 1 n-design.de, 1 @@ -103376,7 +103507,6 @@ n6957.co, 1 n7.education, 0 n8.gay, 1 -n82365.com, 1 n854.com, 1 n87pedia.tk, 1 n8ch.net, 1 @@ -103417,6 +103547,7 @@ nabokov.tk, 1 naboplastic.com, 1 nabosoft.tk, 1 +nabthat.com, 1 nabzgroup.com, 1 nac.gov.pl, 1 nacc.gov.lb, 1 @@ -103433,6 +103564,8 @@ nachanimoroccotrips.com, 1 nachdenken-erlaubt.de, 1 nachhaltig-in-graz.at, 1 +nachhaltige-anleger.de, 1 +nachnamen.net, 1 nachoblanco.tk, 1 nachovni.org, 1 nachrichten-heute.net, 1 @@ -103491,6 +103624,7 @@ nafco-online.com, 1 nafezly.com, 1 nafhroaviano.com, 1 +nafilia.com, 1 nafod.net, 1 nafri.gov, 1 nafto.org, 1 @@ -103502,6 +103636,7 @@ nagashi.ma, 1 nagato.tk, 1 nagaya.biz, 1 +nagaya.si, 1 nagb.gov, 1 nagb.org, 1 nagel-dentaltechnik.de, 1 @@ -103509,6 +103644,7 @@ nagelideeen.ml, 1 naggie.net, 1 nagoonline.com, 1 +nagorik.com, 1 nagoya.tk, 1 nagpurinstar.tk, 1 nagrad.tk, 1 @@ -103559,6 +103695,7 @@ nairus.com.br, 1 nais.org, 1 nais0ne.com, 1 +najada.games, 1 najany.de, 1 najany.dk, 1 najany.nl, 1 @@ -103751,10 +103888,12 @@ nanubo.com, 1 nanubo.de, 1 nanxin.xyz, 1 +nanyuan.com, 1 nao-news.net, 1 nao.sh, 1 naocan.cf, 1 naocan.ml, 1 +naohasa.ru, 1 naotron.com, 1 napalha.com.br, 1 napavalleyregister.com, 1 @@ -103831,7 +103970,6 @@ narmafzar.tk, 1 narmos.ch, 0 naro-oh.jp, 1 -naro.se, 1 narod-sobe.cz, 1 narodnaya-medizina.tk, 1 narodniki.com, 1 @@ -103857,7 +103995,6 @@ narushil-pdd.tk, 1 naruszeniagdynia.pl, 1 naruto-best.tk, 1 -naruto-hoodies.xyz, 1 narutodelivery.com.br, 1 narutolimits.tk, 1 narutoshippuden.tk, 1 @@ -103882,11 +104019,9 @@ nascloud.be, 1 nasdarq.com, 1 nasecasomira.cz, 1 -nasedluhy.cz, 1 naseehah.ga, 1 nasehyar.ir, 1 naserron.gr, 1 -nasets-marcusgard.se, 1 nash-dom.tk, 1 nash-megagid.tk, 1 nash-server.tk, 1 @@ -103919,7 +104054,6 @@ nasosmarket.com.ua, 1 nasosvdom.com, 1 nasosvdom.com.ua, 1 -naspghan.org, 1 nasr.mobi, 1 nasrabady.tk, 1 nasrullaganjnews.tk, 1 @@ -103942,7 +104076,6 @@ nat-hazards-earth-syst-sci.net, 1 nat-neocron.tk, 1 nataez.tk, 1 -nataldigital.com, 1 natalia-in-quebec.tk, 1 natalia-shablo.ru, 1 natalia-venezuela.tk, 1 @@ -104106,6 +104239,7 @@ naturabis.com.mx, 1 naturabuy.fr, 1 natural-hazards-and-earth-system-sciences.net, 1 +natural.cn, 1 naturalbadbreathcures.com, 1 naturalbeautyadvisor.com, 1 naturalbladdercontrol.tk, 1 @@ -104118,6 +104252,7 @@ naturallycurly.com, 1 naturallyuncommon.com, 1 naturalmentesinescuela.com, 1 +naturalprobiotica.com, 1 naturalreaders.com, 1 naturalresources.wales, 1 naturalstyle.tk, 1 @@ -104139,6 +104274,7 @@ naturel.tk, 1 naturelife.bg, 1 naturelk.org, 1 +naturesain.fr, 0 naturesbest.co.uk, 1 natureshealthandbody.com, 1 naturesinfusions.com.au, 1 @@ -104184,7 +104320,7 @@ nautiljon.com, 1 nautilusoceanica.com, 1 nautours.de, 1 -nautsch.de, 1 +nautsch.de, 0 nauz-art.com, 1 nav.no, 1 nava.org, 1 @@ -104218,12 +104354,13 @@ navigo.global, 1 navigyurci.hu, 1 navinmolecular.com, 1 -navirefi.com, 1 naviteq.eu, 1 navkor.tk, 1 navlnachekg.cz, 1 navneetsingh.co, 1 navnet.ml, 1 +navoice.at, 1 +navoice.eu, 1 navoiyrapmafia.tk, 1 navrh-rozvadece.cz, 1 navyadvancement.com, 1 @@ -104299,6 +104436,7 @@ nbotvinnik.com, 1 nbr.uno, 1 nbrain.de, 1 +nbri.ru, 1 nbriresearch.com, 1 nbrown.us, 1 nbwp.uk, 1 @@ -104324,6 +104462,7 @@ ncc-qualityandsafety.org, 1 nccauto.gov.in, 1 nccc.com, 1 +ncceinc.org, 1 nccemail.net, 1 ncchd.go.jp, 1 nccny.com, 1 @@ -104389,7 +104528,6 @@ ncsis.gov, 1 ncskurir.com, 1 ncsparta.gov, 1 -ncswa-nm.org, 1 ncswboard.gov, 1 nctm.org, 1 nctu.moe, 1 @@ -104518,13 +104656,13 @@ nedapflux.com, 1 nedcdata.org, 1 nedco.ca, 1 -nedcv-preview.nl, 1 nedcv.nl, 1 nedela.tk, 1 nederbetuwe.nl, 0 nederland.nl.eu.org, 1 nederlandmobiel.nl, 1 nederlandse-modelspoor-database.nl, 1 +nederlandseloterij.nl, 1 nederlandwereldwijd.nl, 1 nedermisp.nl, 1 nedhome.ml, 1 @@ -104542,6 +104680,7 @@ needfire.ga, 1 needflare.com, 1 needing.cf, 1 +needle-demo.azurewebsites.net, 1 needle.net.nz, 1 needle.nz, 1 needme.com, 1 @@ -104603,6 +104742,7 @@ nehrp.gov, 1 nehta.gov.au, 1 nehtw.com, 1 +nei.org, 1 neide.ga, 1 neighbor.co.il, 1 neighborhood-threat.tk, 1 @@ -104616,11 +104756,11 @@ neilcoolingphotography.com, 1 neildaniels.com, 1 neilfarrington.com, 1 -neilfenwick.net, 1 neilgaimanphilippines.tk, 1 neilpatel.com, 1 neilrooney.com, 1 neilwynne.com, 1 +neilyanto.com, 1 nein-zu-bayern.de, 1 neishe.net, 1 neiu.edu, 1 @@ -104632,6 +104772,7 @@ nejmaklerka.cz, 1 nejrecept.cz, 1 nejsvetla.cz, 1 +nekenieh.net, 0 nekkit.xyz, 1 nekljudov.ga, 1 neko-city.tk, 1 @@ -104698,7 +104839,6 @@ nemagiya.tk, 1 nemahacountyne.gov, 1 nemberone.com, 1 -nemconcept.vn, 1 nemecl.eu, 1 nemesisenterprises.de, 1 nemesiz.tk, 1 @@ -104730,6 +104870,7 @@ nenco.nl, 1 nenderus.su, 1 nenergy.pt, 1 +nenesiosi.lt, 1 nenflow.com, 1 nenkin-kikin.jp, 1 neno.io, 1 @@ -104863,7 +105004,6 @@ nerdnet.goip.de, 1 nerdoftheherd.com, 1 nerdoutstudios.tv, 1 -nerdplusart.com, 1 nerdpol.ch, 1 nerdpol.org, 1 nerdpress.net, 1 @@ -104929,7 +105069,6 @@ nestra.tk, 1 nestreeo.com, 1 neswec.org.uk, 1 -net-abuse.email, 1 net-combo-ja.com, 1 net-file.tk, 1 net-news.gq, 1 @@ -104971,7 +105110,6 @@ netco-privacy.de, 1 netco-system.de, 1 netconnect.at, 0 -netcoolusers.org, 1 netcoresmartech.com, 1 netcost-security.fr, 1 netcracker.com, 1 @@ -105293,6 +105431,7 @@ neuropharmacology.com, 1 neurophysiotherapy.ga, 1 neuropsicologiaperin.com.br, 1 +neuropsiperches.com, 1 neuropsychologisthouston.com, 1 neurosurgeryinmexico.com, 1 neuroticosanonimos.tk, 1 @@ -105356,7 +105495,6 @@ new-black-order.com, 1 new-boiler-prices.co.uk, 1 new-flyer.co, 1 -new-jersey-online-casinos.com, 1 new-mexico-sexcams.com, 1 new-ohtani-dent.com, 1 new-pornvideos.com, 1 @@ -105408,7 +105546,7 @@ newbronze.com.br, 1 newbrunswick.today, 1 newbrunswicknj.gov, 1 -newbrunswickonlinedivorce.com, 1 +newbrunswickonlinedivorce.com, 0 newbrunswicktoday.com, 1 newbss.co.uk, 1 newbuilding.tk, 1 @@ -105461,7 +105599,6 @@ newenglandradioforum.tk, 1 newenglandtek.com, 1 newenglandworkinjury.com, 1 -neweve.uk, 1 newfacialbeautycream.com, 1 newfairfieldct.gov, 1 newfangledscoop.com, 1 @@ -105472,6 +105609,7 @@ newflexcareer.com, 1 newflorencemo.gov, 1 newflyer.ca, 1 +newflyer.com, 1 newflyeramerica.com, 1 newflyerofamerica.com, 1 newfoldenmn.gov, 1 @@ -105672,6 +105810,7 @@ newsticker.tk, 1 newstj.ml, 1 newstone-tech.com, 1 +newstoter.com, 1 newstraveltoday.gq, 1 newstver.ru, 1 newsuk.tk, 1 @@ -105680,7 +105819,6 @@ newsvideo.tk, 1 newsvirginian.com, 1 newsvoice.com, 1 -newswaker.com, 1 newswav.com, 1 newsweekme.com, 1 newsworld247.tk, 1 @@ -105702,18 +105840,34 @@ newtonhaus.com, 1 newtrackon.com, 1 newtravelplans.com, 1 +newtrendsbykate.com, 1 newusatoday.ga, 1 newvehicle.com, 1 newvisionhealing.com, 1 newwaterford-oh.gov, 1 -newwavelinen.com, 1 newway.ie, 1 newwind.tk, 1 newwise.com, 1 +newworldnew.com, 0 newworldnewlife.tk, 1 newxit.tk, 1 newyearsdishes.tk, 1 +newyork.cn, 1 +newyork.co.uk, 1 +newyork.com.au, 1 +newyork.fi, 1 +newyork.jp, 1 +newyork.kr, 1 +newyork.nl, 1 +newyork.no, 1 +newyork.se, 1 +newyorkattractionpasses.com, 1 newyorkcardiac.com, 1 +newyorkcity.de, 1 +newyorkcity.dk, 1 +newyorkcity.fr, 1 +newyorkcity.it, 1 +newyorkcity.ru, 1 newyorkcoffeejobs.com, 1 newyorkland.forsale, 1 newyorkmyc.org, 1 @@ -105733,13 +105887,11 @@ nex.io, 1 nex.li, 1 nexacu.com.au, 1 -nexaking.com, 1 nexarda.com, 1 nexcoda.io, 1 nexd.com, 1 nexflow.com, 1 nexgeneration-solutions.com, 1 -nexgenwebdesign.co.uk, 1 nexgi.com, 1 nexhealth.info, 1 nexicafiles.com, 1 @@ -105786,11 +105938,13 @@ nextdayvapes.co.uk, 1 nextdoorhobby.com, 1 nextdoorhobby.de, 1 +nextdyna.co.jp, 1 nextedgecloud.com, 1 nextevolution.co.uk, 1 nextfm.tk, 1 nextg.gg, 1 nextgen-life-insurance.com, 1 +nextgen-mw.com, 1 nextgen-wealth.com, 1 nextgen.com, 0 nextgen.sk, 1 @@ -105845,8 +105999,6 @@ nexxus-sistemas.net.br, 1 nexy7574.co.uk, 1 nexzus.com, 1 -ney-hcc.co.uk, 1 -neyer-lorenz.de, 1 neyjens.com, 1 nezis.tk, 1 nezkakukec.si, 1 @@ -105870,6 +106022,7 @@ nfbpwm.co.za, 1 nfbst.co.za, 1 nfcc.org, 1 +nfclegal.com, 1 nfcq.co.uk, 1 nfcu.org, 1 nfcweb.de, 1 @@ -105890,6 +106043,7 @@ nflo.pl, 1 nfls.io, 1 nfmhof.com, 1 +nfo.co.il, 1 nfobar.com, 1 nforto.com, 1 nfpors.gov, 1 @@ -105903,7 +106057,6 @@ nft.io, 1 nftactually.com, 1 nftdelegation.com, 1 -nftnow.com, 1 nftshowroom.com, 1 nfwkh.de, 1 ng-musique.com, 1 @@ -106070,7 +106223,6 @@ nice-autosurf.com, 1 nice-germany.tk, 1 nice-links.tk, 1 -nice-pay.com, 0 nice-school.com.ua, 1 nice.ch, 1 niceactimize.com, 0 @@ -106140,7 +106292,6 @@ nicknamez.tk, 1 nickoticko.tk, 1 nickplotnek.co.uk, 1 -nickrichards.site, 1 nickrickard.co.uk, 1 nickrickard.uk, 1 nicks-autos.com, 1 @@ -106186,7 +106337,6 @@ nicolaschelly.tk, 1 nicolasfrebert.fr, 1 nicolasfriedli.ch, 1 -nicolashervaud.com, 1 nicolasiung.me, 0 nicolasjpsanchez.com, 1 nicolasmeric.ovh, 1 @@ -106232,7 +106382,6 @@ nie-wieder-muede.de, 1 niebieskiorzel.pl, 1 niederalt.com, 1 -niedermaier.eu.org, 1 niedermaier.pp.ua, 1 niedermair.bz, 1 niederrhein-foto.de, 1 @@ -106262,7 +106411,6 @@ nierenpraxis-dr-merkel.de, 1 nierenpraxis-merkel.de, 1 niers.land, 1 -nierstichting.nl, 1 nieselregen.com, 1 niesstar.com, 0 nietmvwoensel.com, 1 @@ -106392,7 +106540,6 @@ nike-studio.com, 1 nikeairjordan.cc, 0 nikelunartw.net, 1 -nikeoutletshoes.us, 1 nikesoccerbodotoutlet.ga, 1 nikest.cf, 1 nikest.tk, 1 @@ -106467,11 +106614,10 @@ nilrem.org, 0 nils.ch, 1 nils.moe, 1 +nilslab.com, 1 nilslandscaping.com.au, 1 nilsnet.tk, 1 -nilupul.org, 1 nimahoda.net, 1 -nimb.dk, 1 nimbl.nz, 1 nimble.com.br, 1 nimblefins.co.uk, 1 @@ -106502,7 +106648,7 @@ ninarocha.ch, 1 ninasky.tk, 1 ninasofian.ro, 1 -ninaundandre.de, 1 +ninaundandre.de, 0 ninavegas.net, 1 ninchat.com, 1 nine-chronicles.com, 1 @@ -106553,7 +106699,7 @@ ninverse.com, 1 niols.fr, 1 niourk.com, 1 -nipit.biz, 0 +nipit.biz, 1 nippel.tk, 1 nipplefucking.com, 1 nippon-mirai.jp, 1 @@ -106570,6 +106716,7 @@ nirex.cz, 1 nirex.sk, 1 nirhub.ru, 1 +nirinarabeson.fr, 1 nirjonmela.com, 1 nirma.co.in, 1 nirmalroy.ml, 1 @@ -106578,6 +106725,7 @@ nirudo.me, 1 nirvana-esport.fr, 1 nirvananirvana.tk, 1 +nirvati.me, 1 nirvati.org, 1 nirvel-shop.com, 0 nis2directive.eu, 1 @@ -106607,7 +106755,6 @@ nitix.games, 1 nitolab.com, 1 nitoville.com, 1 -nitranoviny.sk, 1 nitrd.gov, 1 nitrix.me, 1 nitro-tv.de, 1 @@ -106640,7 +106787,6 @@ nix13.xyz, 1 nixcore.gq, 1 nixie.fashion, 1 -nixny.com, 1 nixonlibrary.gov, 1 nixos.world, 1 nixpare.com, 1 @@ -106748,6 +106894,7 @@ nlrb.gov, 1 nlrwu.gov, 1 nluug.nl, 1 +nlx.ai, 1 nlyfeue.gq, 1 nm-arge10.de, 1 nm.cx, 1 @@ -106764,6 +106911,7 @@ nmegent.be, 1 nmeoverbetuwe.nl, 1 nmfinanciallaw.com, 1 +nmhincorp.com, 1 nmhp.com, 1 nmi.nl, 1 nmijudiciary.gov, 1 @@ -106776,6 +106924,7 @@ nmosknews.ru, 1 nmoss.com, 1 nms-thoracic-surgery.com, 1 +nmshippingshield.com, 1 nmslo.gov, 1 nmsuroundup.com, 1 nmugroup.com, 1 @@ -106950,6 +107099,7 @@ noexec.org, 1 noexpo.org, 1 nofilter.gq, 1 +nofraud-test.com, 1 nofrillsdns.com, 1 nofuss.co.za, 1 noga4you.de, 1 @@ -107015,6 +107165,7 @@ nolate.de, 1 nolatepayments.com, 1 nolaviz.org, 1 +noldor.com, 1 noleggio-bagni-chimici.it, 1 noleggiobagnichimici.perugia.it, 1 noleggioimbarcazioni.it, 1 @@ -107025,11 +107176,12 @@ nolovus.com, 1 nolt.io, 1 nolte-tver.ru, 1 -nolto.com, 1 +nolto.com, 0 nolutut.ga, 1 nomada.gt, 1 nomadaregalos.com, 1 nomadcasino.com, 1 +nomadgrowth.cl, 1 nomadichome.com, 1 nomadichome.org, 1 nomadichomes.com, 1 @@ -107041,7 +107193,6 @@ nomadnessmarketing.com, 1 nomadproject.io, 0 nomadtech.servehttp.com, 1 -nomadworks.com, 1 nomadworld.net, 1 nomasfraudecolorado.gov, 1 nomaspicaduras.com, 1 @@ -107062,6 +107213,7 @@ nomsing.tk, 1 nomtechbytes.com, 1 nomzamo.spdns.org, 1 +nona.com.my, 1 nona.my, 1 noname-ev.de, 0 nonametheme.com, 1 @@ -107174,6 +107326,7 @@ nordhealth.fi, 1 nordhealth.no, 1 nordheide.design, 1 +nordhenergy.se, 1 nordhessen-zum-anklicken.de, 1 nordicequities.com, 1 nordichealthcaregroup.com, 1 @@ -107181,13 +107334,14 @@ nordicnews.net, 1 nordicportalen.tk, 1 nordicsemi.com, 1 -nordicsolutionsgroup.com, 1 nordicsrit.tk, 1 nordictaxirvk.is, 1 nordicway.dk, 1 nordinfo.fi, 1 nordiskhiss.se, 1 nordiskhissvarmland.se, 1 +nordkampen.com, 1 +nordkampen.de, 1 nordlandsbanken.no, 1 nordlandverliebt.de, 1 nordlayer.com, 1 @@ -107272,7 +107426,6 @@ northbaypolice.ca, 1 northbayvillage-fl.gov, 1 northbengaltourism.com, 1 -northboot.xyz, 0 northbranch-md.com, 1 northbranfordct.gov, 1 northbranfordpdct.gov, 1 @@ -107289,6 +107442,7 @@ northcreekresort.com, 1 northcreekresortblue.ca, 1 northdakotatitlesearch.com, 1 +northdallasendo.com, 1 northdavisfireut.gov, 1 northdevonbouncycastles.co.uk, 1 northeastconference.org, 1 @@ -107344,7 +107498,6 @@ northstarcommunitytrust.org, 1 northstarcommunitytrust.org.uk, 1 northstaredit.org.uk, 1 -northstarmodular.com, 1 northstartrust.co.uk, 1 northstartrust.com, 1 northstartrust.org, 1 @@ -107406,7 +107559,7 @@ nosoxo.com, 1 nosproduitsdequalite.fr, 1 nossasenhoradodesterro.com.br, 1 -nossasenhoradopranto.pt, 1 +nossasenhoradopranto.pt, 0 nossorepresentante.com.br, 1 nostalgia-90s.com, 1 nostalgicinfinity.tk, 1 @@ -107483,13 +107636,10 @@ notebrook.com, 1 notecoffee.tw, 1 noted.de, 1 -notedebookpro.com.br, 0 -notedesigner.com.br, 1 notedinstyle.co.uk, 1 notenarchiv.eu, 1 notequal.me, 1 noterica.com, 1 -notes.ac, 1 notesforpebble.com, 1 noteshare.net, 1 noteskeeper.ru, 1 @@ -107542,14 +107692,13 @@ notnewz.tk, 1 notnize.net, 1 notnl.com, 1 -notokyc.com, 1 notomalayan.tk, 1 notonprem.com, 1 notora.tech, 1 +notorious.cn, 1 notoriousdev.com, 1 notre-planete.info, 1 notrefuse.tk, 1 -notrero13.com, 1 notresiteduvercors.tk, 1 notrid.com, 1 notsafefor.work, 1 @@ -107662,6 +107811,7 @@ novilist.hr, 1 novinkihd.tk, 1 novinsource.ir, 1 +novinvisa.com, 1 noviny.sk, 1 novip.tk, 1 noviyan.com, 1 @@ -107688,6 +107838,7 @@ novosad-kom.tk, 1 novosel.ga, 1 novoselie.ga, 1 +novoshoes.com.au, 1 novosibavia.ru, 0 novosibirsk-news.net, 1 novosti-novorossii.ml, 1 @@ -107705,6 +107856,7 @@ novumclinic.pl, 1 novumnet.com.br, 1 novurania.com, 0 +novus365.com, 1 novy.software, 1 novy.vip, 1 novychas.online, 1 @@ -107737,6 +107889,7 @@ nowtime.cc, 1 nowtips.gq, 1 nowtricity.com, 1 +nowysacz.pl, 1 nowzad.com, 1 nowzarimd.com, 1 noxh.net, 1 @@ -107923,11 +108076,9 @@ ntj125app.com, 1 ntk-institute.org, 1 ntlabs.org, 1 -ntma.ie, 1 ntnews.com, 1 ntnlst.com, 1 ntnlsvc-uat-webadmin.azurewebsites.net, 1 -ntns.info, 1 ntokens.com, 1 ntokens.com.br, 1 ntotten.com, 1 @@ -107997,7 +108148,7 @@ nuecescountytx.gov, 1 nuel.cl, 1 nuernbergwillwandel.de, 1 -nuespacios.com, 0 +nuespacios.com, 1 nuestraboda.ec, 1 nuestrasdanzashn.tk, 1 nuetel.com, 1 @@ -108006,6 +108157,8 @@ nuevapublicidad.tk, 1 nuevarepublica.cr, 1 nuevarepublicacr.com, 1 +nuevayork.com, 1 +nuevayork.es, 1 nuffield.nl, 1 nuffieldtrust.org.uk, 1 nuforma.net, 1 @@ -108071,6 +108224,7 @@ numerama.com, 1 numerasolution.com, 1 numericall.gq, 1 +numericolor.com, 1 numeriquoi.com, 1 numeritelefonici.it, 1 numerli.com, 1 @@ -108158,17 +108312,19 @@ nutmeg.com, 1 nutra-creations.com, 0 nutra.tk, 1 +nutrafitsuplementos.com.br, 1 nutralivbio.com, 1 nutrashop.fr, 1 nutriciametabolics-shop.de, 1 nutricionistatulioalmeida.com, 1 nutriclub.co.id, 1 +nutriflex.co.za, 1 nutrifyyourself.com, 1 nutrijets.com, 1 -nutriking.com.tr, 1 nutrineyfelipe.com, 1 nutripure.fr, 1 nutrisabela.com.br, 1 +nutriservice.org, 1 nutrisidangym.com, 1 nutrislice.com, 1 nutrisoy.com.sg, 1 @@ -108187,6 +108343,7 @@ nuts-choco.com, 1 nutsforfruits.com.au, 1 nutwgent.tk, 1 +nuuls.com, 1 nuus.hu, 1 nuva.hu, 1 nuvabridge.com, 1 @@ -108317,6 +108474,7 @@ nyauth.com, 1 nyawau.ch, 1 nyawork.com, 1 +nyb.agency, 1 nybcreative.com, 1 nycctp.com, 1 nycdentalimplantscenter.com, 1 @@ -108325,7 +108483,6 @@ nycfpa.org, 1 nycgangland.com, 1 nycgastroenterologists.com, 1 -nych.com, 1 nycoyote.org, 1 nycpac.net, 0 nycstonecare.com, 1 @@ -108466,14 +108623,15 @@ o-bereg.ru, 1 o-dvor.tk, 1 o-n-s.co.jp, 1 +o-o.au, 1 o-results.ch, 1 o-ta-su-ke.net, 1 o-we.vn, 1 o.ee, 1 o00.eu, 1 o00228.com, 1 +o00o.net, 1 o0c.cc, 1 -o11y.top, 1 o15y.com, 1 o2.tn, 1 o2design.tk, 1 @@ -108492,7 +108650,6 @@ o6asan.com, 1 o6i.de, 1 o7.nz, 1 -o82365.com, 1 o9297.co, 1 o9728.co, 1 o98.net, 0 @@ -108539,6 +108696,7 @@ oasisautospa.org, 1 oasisbodycare.jp, 1 oasisbodywork.com, 1 +oasishealth.ae, 1 oasislab.id, 1 oat-online.ch, 1 oatmealdome.me, 1 @@ -108580,6 +108738,7 @@ oberlinreview.org, 1 obermeiers.eu, 1 oberndorf-am-lech.de, 1 +oberpfalzverein.de, 1 oberrot.de, 1 obertshausen.de, 1 obery.com, 1 @@ -108616,6 +108775,7 @@ obl.ong, 1 oblak.host, 1 oblak.studio, 1 +oblat.lv, 1 oblique.security, 1 oblitsov.ru, 1 oblivious.ml, 1 @@ -108682,6 +108842,7 @@ ocab.se, 1 ocabj.net, 1 ocacnews.net, 1 +ocadefusion.fr, 1 ocalafl.gov, 1 ocalapd.gov, 1 ocalhukuk.com, 1 @@ -108742,7 +108903,6 @@ oceanic.ws, 1 oceanicquest.com, 1 oceanings.com, 1 -oceanlogisticgroup.com, 1 oceanlord.me, 1 oceanofapk.com, 1 oceanohost.com, 1 @@ -108769,6 +108929,7 @@ ochatoosenbei.tk, 1 ochemindessens.com, 1 ochevidcy.com, 1 +ochioneta.es, 1 ochki-linzi.tk, 1 ochobeatsmedia.net, 1 ochotnicky.com, 1 @@ -108867,7 +109028,6 @@ octovpn.com, 1 ocufekojip.ga, 1 ocularbaby.com.br, 1 -ocularsolution.com, 1 oculta.ml, 1 oculus.com, 1 ocunclaimed.gov, 1 @@ -108943,6 +109103,7 @@ odoru.ga, 1 odorucinema.ga, 1 odosblog.de, 1 +odosermou.gr, 1 odpbusurl.com, 1 odpikedoslike.com, 1 odpudzovace.sk, 1 @@ -108998,7 +109159,7 @@ oessi.eu, 1 oesv.at, 1 oettig.de, 1 -oetzies-quiz.com, 0 +oetzies-quiz.com, 1 of-sound-mind.com, 1 of2106.dnsalias.org, 1 of2m.fr, 1 @@ -109015,7 +109176,6 @@ ofertasadsl.com, 1 ofertastop.es, 1 ofertatis.store, 1 -ofertiendas.com, 1 ofertolino.fr, 1 ofertyn.pl, 1 off-festival.pl, 1 @@ -109036,6 +109196,7 @@ offentligsektormedmoln.se, 1 offeo.com, 1 offer-today.ml, 1 +offer.cn, 1 offerfit.ai, 1 offerground.com, 1 offerhome.com, 1 @@ -109085,6 +109246,7 @@ officesib.ddns.net, 1 officetechrentals.com.br, 1 official-sensitive.org, 1 +official.cn, 1 official.link, 1 official.my, 1 officialdubaidev.com, 1 @@ -109144,6 +109306,7 @@ oftamedic.com, 0 oftn.org, 1 ofuquemalitaestoy.tk, 1 +ofzenandcomputing.com, 0 oga.fit, 0 ogamerezine.tk, 1 ogar.ga, 1 @@ -109184,6 +109347,7 @@ ogznet.com, 1 oh-my-lash.nl, 1 oh14.de, 0 +oh64.moe, 1 ohai.is, 1 ohai.social, 1 ohai.su, 1 @@ -109193,7 +109357,6 @@ ohbabybean.com, 1 ohcanvas.com, 1 ohchouette.com, 1 -ohcomassagechairs.com, 1 oheila.com, 1 ohentpay.com, 1 ohglowup.nl, 1 @@ -109243,7 +109406,6 @@ oikontroloi.tk, 1 oikosweb.com, 1 oil-heaters.tk, 1 -oilandgasiq.com, 1 oilman.ml, 1 oilpaintingsonly.com, 1 oilsan.com, 1 @@ -109367,7 +109529,6 @@ oktober.tk, 1 oktoplus.com.br, 1 oktos.tk, 1 -oktour.ca, 1 oktransportation.gov, 1 okubo-shika.jp, 1 okudairatrading.com, 1 @@ -109379,7 +109540,6 @@ okuscapital.com, 1 okusiassociates.com, 1 okv.de, 1 -okviz.com, 1 okwnews.com, 1 okwu.cz, 1 ola.finance, 1 @@ -109448,7 +109608,9 @@ oldscans.tk, 1 oldschool.wiki, 1 oldshara.tk, 1 +oldskoolanthemz.net, 1 oldskoolreviews.tk, 1 +oldskooltunes.com, 1 oldskooltunez.com, 1 oldsoul.id, 0 oldspice.com, 1 @@ -109474,17 +109636,20 @@ olegchursin.com, 0 olegon.ru, 1 olejostores.com, 1 +olekotenizavivki.bg, 1 oleksandr-petrusenko.com, 1 oleksii.name, 0 olemon.eu.org, 1 olenergies.com, 1 olenergies.eu, 1 +olennolla.fi, 1 olennolla.net, 1 oleodecopayba.com.br, 1 olepiraatti.fi, 1 olered.com, 1 oleren.com, 0 olerogas.xyz, 1 +olerth.com, 1 oles-hundehaus.de, 1 olesaradio.tk, 1 olevalmis.ee, 1 @@ -109501,7 +109666,6 @@ olgui.net, 0 olgun.eu, 1 olhcparish.net, 1 -olibarcenas.es, 0 olidetrim.com, 1 oliebollenbakservice.nl, 1 olifant.fr, 0 @@ -109517,6 +109681,7 @@ olisius.com, 1 olive.dental, 1 olive.my, 1 +olivea.cz, 0 olivedon.com, 1 olivehealth.co.uk, 1 oliveoil.bot, 1 @@ -109532,6 +109697,7 @@ olivereats.ca, 1 oliverfaircliff.com, 1 oliverflecke.me, 1 +oliverhough.io, 1 oliverlanguages.com, 1 olivernaraki.com, 1 oliverniebuhr.de, 1 @@ -109550,6 +109716,7 @@ oliviercreation.tk, 1 olivierdurand.tk, 1 oliviervaillancourt.com, 1 +olivinehoney.com.au, 1 olivlabs.com, 1 oljyakatemia.fi, 1 olk9mo.com, 1 @@ -109572,7 +109739,6 @@ olmc-nutley.org, 1 olmcjc.com, 1 olmcnewark.com, 1 -olmecaaltos.com, 1 olmik.net, 1 olmportal.com, 1 olmsted.io, 1 @@ -109592,6 +109758,7 @@ olshop.ai, 1 olson25.org, 0 olsonproperties.com, 1 +oltayagelme.org, 1 oluchiedmundmusic.com, 1 oludeniz.tk, 1 olustvere.edu.ee, 1 @@ -109662,6 +109829,7 @@ omegachess.tk, 1 omegacode.pl, 1 omegahosting.net, 1 +omegamc.ua, 1 omegathermoproducts.nl, 1 omegleporn.to, 1 omenprinting.com.au, 1 @@ -109682,7 +109850,9 @@ omg.fun, 1 omgbouncycastlehire.co.uk, 1 omgchocolatedesserts.com, 1 +omgdevil.com, 1 omgevingsdiensthaaglanden.nl, 1 +omgidol.com, 1 omgit.works, 1 omgpu.com, 1 omgvaneyckwashere.be, 1 @@ -109691,7 +109861,6 @@ omgvaneyckwashere.gent, 1 omhome.net, 1 omicawholesale.com, 1 -omicron3069.com, 1 omid16b.com, 1 omidfan.ir, 0 omiltem.net, 1 @@ -109706,10 +109875,10 @@ ommcitalflex.com, 1 omn.cc, 1 omnel.ml, 1 +omnepresent.com, 1 omngc.gov, 1 omniaaerospace.com, 1 omniaclubs.com, 1 -omniadigital.it, 1 omniaintranet.de, 1 omniaintranet.dk, 1 omniaintranet.se, 1 @@ -109773,7 +109942,6 @@ on-tandemdrive.nl, 1 on-targettrainingcourses.com, 1 on-tech.co.uk, 1 -on-the-wave.com, 1 on-tv.tk, 1 on-ze.com, 1 on2it.net, 1 @@ -109791,7 +109959,6 @@ onawaymi.com, 1 onbettertech.com, 1 onbley.com.br, 1 -onboardfred.co.uk, 1 onboardmail.co.uk, 1 onboardweb.co.uk, 1 onbrand.me, 1 @@ -109862,6 +110029,7 @@ onecharge.biz, 1 onechoice.co.nz, 1 onechronos.com, 1 +oneclick.accountant, 1 oneclick2books.cf, 1 oneclickbooks.gq, 1 oneclickbooks.ml, 1 @@ -109869,6 +110037,7 @@ oneclickmoney.cf, 1 oneclickmoney.ml, 1 oneclickmoney.tk, 1 +onecloud.nsupdate.info, 1 oneclub.ua, 1 onecore.media, 1 onecore.rocks, 1 @@ -109908,8 +110077,8 @@ onehost.kz, 0 oneidacityny.gov, 1 oneidacountywi.gov, 1 -oneigroup.net, 0 oneindex.tk, 1 +oneinternetamerica.com, 1 oneiroi.co.uk, 1 oneirosociety.tk, 1 onejustice.org, 1 @@ -109948,6 +110117,7 @@ onepointsafeband.ca, 1 onepointsafeband.com, 1 onepointtwocapital.com, 1 +onepointzero.com, 1 onepotliving.com, 1 oneprose.com, 1 ones-familydc.com, 1 @@ -109959,7 +110129,6 @@ onesoccer.ca, 1 onespan.com, 0 onestarclassics.com, 1 -onestasolar.com, 1 onestepbooks.gq, 1 onestepbooks.ml, 1 onestepgps.com, 1 @@ -109997,7 +110166,6 @@ onevisionstudio.com, 1 oneway.ga, 1 oneweb.hu, 1 -onewebdesign.nl, 0 onewebdev.info, 1 onewhim.com, 1 onewyo.gov, 1 @@ -110046,6 +110214,7 @@ onkfaktor.de, 1 onkologiya.ga, 1 onkoloogiakeskus.ee, 1 +onkoplus.de, 1 onkvwave.ru, 1 onlanka.com, 1 onld.de, 1 @@ -110123,7 +110292,6 @@ onlinecosmeticsstore.tk, 1 onlinecounselingprograms.com, 1 onlinecrafts.tk, 1 -onlinecredite.ro, 1 onlinedapoxetina.gq, 1 onlinedivorce.com, 1 onlinedivorce.lawyer, 1 @@ -110250,7 +110418,6 @@ onmyside.com, 1 onnatuurlijk.tk, 1 onnee.ch, 1 -onnytech.co.uk, 1 onohawaiianbbq.com, 1 onondaga.gov, 1 ononoki.org, 1 @@ -110306,6 +110473,7 @@ ontogenese.net, 1 ontopoflove.nl, 1 ontourmarketing.at, 1 +ontreams.com, 1 ontrio.cz, 1 ontrip.dk, 1 ontrip.kr, 1 @@ -110323,7 +110491,6 @@ onvori.com, 1 onvori.de, 1 onvousment.fr, 1 -onwie.com, 1 onwie.fr, 1 onwing.ai, 1 onx.dk, 1 @@ -110355,7 +110522,7 @@ ooii.net, 1 ooiiuu.com, 1 oomepu.com, 1 -oompf.de, 0 +oompf.de, 1 oomph-delikatessen.tk, 1 oomuj.info, 1 ooo-santal.ml, 1 @@ -110424,7 +110591,6 @@ open-source.gr, 1 open-spending.eu, 1 open-to-repair.fr, 0 -open-trip.id, 1 open-work.space, 1 open-xchange.com, 1 open.film, 1 @@ -110439,6 +110605,7 @@ openalt.org, 1 openarch.nl, 1 openargus.org, 1 +openaudio.it, 1 openbackdoor.com, 1 openbarhospitality.com, 1 openbayes.network, 1 @@ -110468,6 +110635,7 @@ openconnect.com.au, 1 opencpes.com, 0 opencpes.net, 1 +opencrm.co.uk, 1 openctp.com, 1 openctp.net, 1 openctp.org, 1 @@ -110614,7 +110782,6 @@ ophepartners.org, 1 ophidian.tk, 1 ophthalmologynotes.tk, 1 -opiates.ca, 1 opic.gov, 1 opid.my.id, 1 opieoils.co.uk, 0 @@ -110643,7 +110810,6 @@ oplata-mvd.ga, 1 oplata-vklike.tk, 1 oplata.uz, 1 -oplop.appspot.com, 1 opm.gov, 1 opmaakonderscheidingen.nl, 1 opnx.dk, 1 @@ -110702,7 +110868,6 @@ opsnotepad.com, 1 opso.gov, 1 opspedia.id, 1 -opsre.ru, 1 opstory.com, 1 opstrengning.tk, 1 opswill.com, 1 @@ -110717,6 +110882,7 @@ optibelt.com, 1 optic-street.ru, 1 optical-faking.tk, 1 +opticaltest.com, 1 opticamasvision.com, 1 opticasocialvision.com, 1 opticiansri.org, 1 @@ -110806,7 +110972,6 @@ opture.ch, 1 optykgill.pl, 1 optymyze.com, 1 -opulentdivision.com, 1 opus-codium.fr, 1 opus-labs.fr, 1 opus-nail.com, 1 @@ -110842,15 +111007,12 @@ oralemiraza.com, 1 oralight.ml, 1 orang-utans.com, 1 -orange-hb.eu, 1 -orange-hb.nl, 1 orange-spa.com, 1 orange.bf, 1 orange.md, 1 orangeacademy.cz, 1 orangeappalam.com, 1 orangecityfl.gov, 1 -orangecookie.com, 1 orangecorners.com, 1 orangefinanse.com.pl, 1 orangehome.ga, 1 @@ -110878,8 +111040,10 @@ orano.vn, 1 oranous.tk, 1 oranweb.tk, 1 +orap.de, 1 oraz.tk, 1 orazen.it, 1 +orbaden.com, 1 orbassano5aele2021.tk, 1 orbesurgeons.com.au, 1 orbik.com, 1 @@ -110944,6 +111108,7 @@ ordermygear.com, 1 ordernerd.com, 1 ordernize.io, 1 +ordernow.at, 0 orderomnicef.gq, 1 orderpizza.tk, 1 orderseason.digital, 1 @@ -110961,7 +111126,6 @@ ordoro.com, 1 ordr.net, 1 ordr.no, 1 -ordremk.fr, 1 orduhaberleri.tk, 1 ore.cool, 1 orebate.com.br, 1 @@ -111131,6 +111295,7 @@ ornua.com, 1 oro.milano.it, 1 oro.roma.it, 1 +oro97.com, 1 orocojuco.com, 1 oroconews.com.br, 1 orodelsalento.com, 1 @@ -111140,7 +111305,6 @@ oronomn.gov, 1 oroshikikin.jp, 1 orpea.com, 1 -orphee-beaute.com, 0 orpheus.network, 1 orpheus2.com.ec, 1 orquestas.tk, 1 @@ -111300,7 +111464,8 @@ osirisrising.tk, 1 osirisrp.online, 1 osirium.com, 1 -osk-group.ru, 1 +osiriz.xyz, 1 +osk-group.ru, 0 oskarkopra.fi, 1 oskety.com, 1 oskrba.net, 1 @@ -111323,6 +111488,7 @@ osmre.gov, 1 osmt.cc, 1 osnova.cz, 1 +osnovazabor.ru, 1 osobniterapeutka.cz, 1 osobnyak.tk, 1 osohq.com, 1 @@ -111356,7 +111522,6 @@ ostek.tk, 1 ostendorf.com, 1 osteolaclusaz.com, 0 -osteopathe-grandfougeray.fr, 1 osteopathe-voisine.com, 1 osteopatiaymasaje.com, 1 osteriadelponte.tk, 1 @@ -111401,7 +111566,6 @@ ot-vinta.tk, 1 ot.id, 1 otaikajang.org, 1 -otakaroltd.co.nz, 1 otako.pl, 0 otaku-treasure.com, 1 otakubox.de, 1 @@ -111432,6 +111596,7 @@ oticasvisao.net.br, 1 otima.digital, 1 otimismoemrede.tk, 1 +otimo.ro, 1 otinane.eu, 1 otiocafes.com, 1 otipax.ru, 1 @@ -111490,7 +111655,7 @@ otthonelektronika.hu, 1 otthonkatalog.hu, 1 otticait.com, 1 -otticaturi.it, 1 +otticaturi.it, 0 ottingergolf.com, 1 ottmarliebert.tk, 1 ottogroup.com, 1 @@ -111502,7 +111667,6 @@ otvaracie-hodiny.sk, 1 otya.me, 1 otzyvy.cc, 1 -otzyvy.ws, 1 ouaibe.qc.ca, 1 ouaie.be, 1 ouaisetalors.fr, 1 @@ -111513,6 +111677,7 @@ oudersvannu.nl, 1 ouestacro.fr, 1 ouestfrance-auto.pro, 1 +ouestlabs.com, 0 ouestlebug.com, 1 ouezzan.tk, 1 ouglor.com, 1 @@ -111595,7 +111760,6 @@ outandproud.pl, 1 outbackspectacular.com.au, 1 outbankapp.com, 1 -outbot.com, 1 outbound.tk, 1 outbrain.com, 1 outcasts-guild.eu, 1 @@ -111613,6 +111777,7 @@ outdoorsytravel.com, 1 outerface.net, 1 outerheaven.pro, 1 +outerlandstravel.com, 1 outerlimitsdigital.com, 1 outernet.tk, 1 outerspace.ga, 1 @@ -111629,7 +111794,6 @@ outlaw-star.tk, 1 outlet-center.by, 1 outletcity.bg, 1 -outlets.se, 1 outletstoresmalls.com, 1 outline.ski, 1 outline.vn, 1 @@ -111643,7 +111807,6 @@ outnetic.com, 1 outnow.ch, 1 outofservice.com, 1 -outoftheboxfitness.com, 1 outofthefog.net, 1 outofyourcomfortzone.net, 1 outplayed.in, 1 @@ -111720,7 +111883,6 @@ overlook.tk, 1 overlooklakeaustin.com, 1 overlord.network, 1 -overmorgen.nl, 1 overnetfaq.tk, 1 overnetworld.tk, 1 overnightglasses.com, 1 @@ -111826,6 +111988,7 @@ ownhosting.cloud, 1 ownhosting.de, 1 owningless.fr, 1 +ownparking.com, 1 ownservercloud.ddns.net, 1 ownsport.fr, 1 owntips.ml, 1 @@ -111930,7 +112093,6 @@ oyoshi.com.my, 1 oyosoft.net, 1 oyr79.tk, 1 -oysterboxhotel.com, 1 oysterlink.com, 1 oysterworldwide.com, 1 oytic.com, 1 @@ -111948,6 +112110,7 @@ ozacek.fun, 1 ozark-serial.net, 1 ozarkinspected.com, 1 +ozat-tools.com, 1 ozaukeecounty.gov, 1 ozawadental.com, 1 ozaymotor.com, 1 @@ -111974,7 +112137,6 @@ ozgurkazancci.com, 1 ozhegov.site, 0 ozinter.com, 0 -oziosos.com, 0 ozli.ga, 1 ozmo.ml, 1 ozna.tk, 1 @@ -111995,7 +112157,6 @@ oztorah.com, 1 ozvoip.net, 1 ozvolvo.org, 1 -ozyurttesisat.com, 1 ozzie.fr, 1 ozzyfant.de, 1 p-art.design, 1 @@ -112009,9 +112170,9 @@ p-p.site, 1 p-pac.com, 0 p-pc.de, 1 -p-soc.com.br, 1 p-t.io, 1 p.ac, 1 +p.lease, 1 p.lu, 1 p.sb, 1 p02.de, 1 @@ -112037,7 +112198,6 @@ p333j.net, 0 p35consulting.com, 1 p36533.com, 1 -p3medicalinc.com, 1 p4.pm, 1 p4c-admin.azurewebsites.net, 1 p4plus2.com, 1 @@ -112050,7 +112210,6 @@ p7m.de, 1 p7m.eu, 1 p7sesvhc.com, 1 -p82365.com, 1 p8r.de, 1 p9297.co, 1 p9728.co, 1 @@ -112099,8 +112258,10 @@ pabloarteaga.xyz, 1 pablocamino.tk, 1 pablocelorio.com, 1 +pablodominio.sbs, 1 pablofain.com, 0 pablofonta.es, 1 +pablogracia.es, 1 pablolopezlujan.es, 0 pablomachado.tk, 1 pablomarjim.es, 1 @@ -112210,6 +112371,7 @@ pacteo.com, 1 pactf-flag-4boxdpa21ogonzkcrs9p.com, 1 pactf.com, 1 +pactnetwork.com.au, 1 pactrol.com, 1 pactum.com, 1 pacxodka.ru, 1 @@ -112252,7 +112414,6 @@ paga.red, 1 pagalofacil.com, 1 pagalworld-news.ml, 1 -pagalworld.com, 1 pagamesssddr.com, 1 paganchristianity.org, 1 pagancollective.cf, 1 @@ -112298,6 +112459,8 @@ paging.blog, 0 pagliucadb.ddns.net, 1 pagodart.com.br, 1 +pagodil.it, 1 +pagoonline.com.br, 1 pagueveloz.com.br, 1 paguponku.com, 1 pagure.io, 1 @@ -112319,7 +112482,6 @@ paidtodev.com, 1 paiementdp.com, 1 paige.ai, 1 -paigejulianne.com, 1 paigethegeek.com, 1 paimboeuf.fr, 1 paincareehr.com, 1 @@ -112364,6 +112526,7 @@ pajbot.de, 1 pajobsite.com, 1 pajuvuo.fi, 1 +pakal.org, 1 pakaranggrek.com, 1 pakawal.com, 1 paket.monster, 1 @@ -112440,6 +112603,7 @@ paleoself.com, 1 paleospirit.com, 1 paleosquawk.com, 1 +palermo-plovdiv.com, 1 palermoantagonista.tk, 1 palermofc.com, 1 palermofilmfestival.tk, 1 @@ -112466,7 +112630,6 @@ palma.es, 1 palmademallorca.es, 1 palmaprop.com, 1 -palmarinaestrada.com.br, 1 palmaroyale.com, 1 palmatin.com, 1 palmbayfl.gov, 1 @@ -112475,7 +112638,6 @@ palmbeachcuisine.com, 1 palmbeachelections.gov, 1 palmbeachvotes.gov, 1 -palmcity.co.nz, 1 palmcoast.gov, 1 palmdesert.gov, 1 palmedconsultants.com, 1 @@ -112491,6 +112653,7 @@ palmspringsairmuseum.org, 1 palmyramo.gov, 1 palner.eu, 1 +palngdev.wpenginepowered.com, 1 paloalto.gov, 1 paloma.tk, 1 palomadefert.com, 1 @@ -112523,7 +112686,6 @@ pamperedpersians.com, 1 pamplicosc.gov, 1 pamsorel.co.za, 1 -pamukhaliyikama.net, 1 pamvo.com, 1 pan-lleveme.com, 1 pan-portugal.com, 1 @@ -112568,7 +112730,6 @@ panaxis.li, 1 pancake-world.com, 1 pancake.gg, 1 -pancani.it, 1 panchajanyafashions.com, 1 panda-bg.com, 1 panda-community.com, 1 @@ -112629,12 +112790,14 @@ pangalactic.io, 1 pangea-it.com, 1 pangea.cloud, 1 +pangge.io, 1 pangoconcierge.com, 1 pangolin.exchange, 0 pangolin.org, 1 pangoly.com, 1 pangtru.com, 1 pangtru.net, 1 +panhandlefloridatlhkce.com, 1 panhandlefop.org, 1 panhandleprairiewings.com, 1 panhardclub.nl, 0 @@ -112678,7 +112841,6 @@ panoramiquesorganya.tk, 1 panoramixbycallens.eu, 1 panorays.com, 1 -panoti.com, 0 panotur360.com, 1 panpsychism.com, 1 panpsychist.com, 1 @@ -112711,7 +112873,6 @@ pantsu.club, 1 pantsuservice.tk, 1 pantuflas.tk, 1 -pantunerharmonix.com, 1 pantypit.com, 1 panwchi.com, 1 panyajt.in.th, 1 @@ -112722,7 +112883,7 @@ pao.moe, 1 paocaibang.net, 1 paocloud.co.th, 1 -paolodapul.net, 1 +paolodapul.net, 0 paolodemichele.it, 0 paolomargari.tk, 1 paolomarzano.com, 1 @@ -112828,7 +112989,7 @@ paradoxdesigns.org, 1 paradoxhotels.com, 1 paradoxium.ml, 1 -paradymecompanies.com, 1 +paradymecompanies.com, 0 paraelganzo.tk, 1 parafarmacia.it, 1 paragliding-lessons.com, 1 @@ -112847,6 +113008,7 @@ paramascotas.vip, 1 paramedicchiefs.ca, 1 parameter.sk, 1 +parametricaeng.com, 1 paramloda.online, 1 paramo-pineiro.tk, 1 paramount.jp, 1 @@ -112898,7 +113060,6 @@ parcelauditpartners.com, 1 parceltrackr.com, 1 parcelup.com, 1 -parchcraftaustralia.com, 1 parcheggi-firenze.it, 1 parcheggio-aeroportofiumicino.it, 1 parcheggio-aeroportomalpensa.it, 1 @@ -112923,7 +113084,6 @@ parents-as-allies.com, 1 parentsandzebrasunited.com, 1 parentsguidetotheworld.com, 0 -parenttheirpassion.com, 1 pareshukuk.com, 1 pareto.space, 1 paretoit.com, 1 @@ -112933,7 +113093,6 @@ parfumer.tk, 1 parfumi-eu.com, 1 parfumi.tk, 1 -parfumpamoor.site, 1 parfumtester-100.ml, 1 parhoonshop.com, 1 pari-match.in, 1 @@ -112962,10 +113121,10 @@ parimatch.com, 1 parimatch.in, 1 parimatch.kz, 1 -parimatch8.com, 1 parimatchlive.com, 1 parimatchsports.com, 1 parimatchtop.com, 1 +parina.vn, 1 pario.li, 1 paripesa.com, 1 paripesa.ng, 1 @@ -113100,7 +113259,6 @@ parkingcheap.co.uk, 1 parkinggaragepressurewashingchicago.com, 1 parkinginparis.fr, 1 -parkingmasters.be, 1 parkingparisnord.fr, 1 parkinsons.tk, 1 parkmobile.io, 1 @@ -113135,7 +113293,6 @@ parleur.net, 1 parliament.gov.to, 1 parliamentcamp.com, 1 -parmacalor.it, 1 parmartecultura.it, 1 parmatoday.it, 1 parmatwp.gov, 1 @@ -113158,7 +113315,6 @@ parovozov.ga, 1 paroxetine.gq, 1 parperfeito.pt, 1 -parqcloud.com, 1 parque-batlle.tk, 1 parquebatlle.tk, 1 parquestejo.pt, 1 @@ -113320,7 +113476,6 @@ pascovotes.gov, 1 pascualberniz.tk, 1 pascualinmuebles.com, 1 -pascucci.it, 1 pasearch.nl, 1 paseka-putilinyh.ru, 1 pashminacachemire.com, 1 @@ -113418,6 +113573,7 @@ pastebin.bet, 1 pasteblin.com, 1 pasteht.ml, 1 +pasteleriaflomar.es, 1 pastelpixels.studio, 1 pasternak.net, 1 pasternok.org, 1 @@ -113472,6 +113628,7 @@ patentpanelest.ga, 1 patentu.ga, 1 patentverwag.com, 1 +patenworks.store, 1 patersonpdnj.gov, 1 patguzmanconstruction.com, 1 pathai.com, 1 @@ -113487,9 +113644,10 @@ pathwayscenterforgrief.org, 1 pathwayscenterforgriefandloss.org, 1 pathwaysthroughgrief.org, 1 -pathzero.com, 1 +pathzero.com, 0 patient.info, 0 patientcheckin.com, 1 +patientenverfuegung.digital, 1 patientjourneyapp.com, 0 patientspaid.com, 1 patientup.com, 1 @@ -113548,7 +113706,6 @@ patrikjohan.tk, 1 patriksima.cz, 1 patrikx3.com, 1 -patriotbailbondsdenver.com, 1 patriotbearingsupply.com, 1 patriotcs.tk, 1 patriotinsurancebrokers.com, 0 @@ -113750,6 +113907,7 @@ pay.gov, 0 pay.hockey, 1 pay.hospital, 1 +pay.im, 1 pay.insure, 1 pay.kitchen, 1 pay.lawyer, 1 @@ -113783,6 +113941,7 @@ payboy.rocks, 1 paycaptain.com, 1 paycardtech.com, 1 +paycentre.com, 1 paycom.com, 0 paycomdfw.com, 0 paycomonline.com, 0 @@ -113821,7 +113980,7 @@ paymentjs.com, 1 payments.google.com, 1 paymeservice.com, 1 -paymongo.com, 1 +paymongo.com, 0 paymongo.help, 1 paymore.org, 1 paymyphysician.com, 0 @@ -113830,7 +113989,6 @@ paynode.com, 1 payonline-api.xyz, 1 payop.com, 1 -paypac.au, 1 paypac.biz, 1 paypac.co.nz, 1 paypac.co.uk, 1 @@ -113872,7 +114030,6 @@ paysera.com, 1 paysera.ee, 1 paysera.lt, 1 -payservices.com, 1 paysitesreviews.net, 1 payskins.xyz, 1 paysley.com, 1 @@ -113898,6 +114055,7 @@ pb-eatz.com, 1 pb.ax, 0 pback.se, 1 +pband.ch, 1 pbatourexperience.com, 1 pbbm.com.ph, 1 pbc.gov, 1 @@ -114081,7 +114239,6 @@ pdq.com, 1 pds.police.uk, 1 pdsk.ch, 1 -pdtech.ltd, 1 pdtppfl.gov, 1 pdvault.co, 1 pdxcoinclub.org, 1 @@ -114120,6 +114277,7 @@ peaksix.ch, 1 peaksports.com, 0 peaksupport.io, 1 +peaktribe.ro, 1 peakvets.co.uk, 1 peanutbutter.com, 1 peanutpay.de, 1 @@ -114198,7 +114356,6 @@ pedrazanoticias.tk, 1 pedrobotias.tk, 1 pedrolamas.com, 1 -pedrollo-ua.com, 1 pedroministro.pt, 1 pedromunoz.tk, 1 pedrooliveira.tk, 1 @@ -114270,11 +114427,12 @@ peiercomputers.com, 1 peierphotography.com, 1 peierphotography.de, 1 -peifeng.li, 1 +peifeng.li, 0 peifi.de, 0 peihouston.com, 1 peippo.at, 1 peirong.me, 1 +pekarnasazava.cz, 1 pekarskarodina.cz, 1 pekarskis.com, 1 pekarstvivetvrzi.cz, 1 @@ -114285,7 +114443,6 @@ peklostroj.eu, 1 peklostroj.sk, 1 peko.com.mk, 1 -pekoe.se, 1 pelachim.com.br, 1 pelagicus.co.uk, 1 pelajaran.co.id, 1 @@ -114336,6 +114493,7 @@ peluqueriacanina.tk, 1 peluqueriacaninacavecanem.es, 1 pemagrid.org, 1 +pemangkin.my, 1 pemasalem.com, 1 pembiayaanbpkb.com, 1 pembinewi.gov, 1 @@ -114577,6 +114735,7 @@ percymagic.tk, 1 perd.re, 1 perdanabagus.tk, 1 +perdele-draperii.ro, 1 perdita-capelli.tk, 1 perdolyathlendr.tk, 1 perecraft.com, 1 @@ -114647,7 +114806,6 @@ perfmatters.io, 1 perfmed.ro, 1 perforazioni.it, 1 -perforlabs.com, 1 performance-advertising.de, 1 performance.gov, 1 performancehealth.com, 0 @@ -114655,6 +114813,7 @@ performancerh.fr, 1 performancerunningsolutions.com, 1 performances-supervision.fr, 1 +performancetillagebolt.com, 1 performancetransmission.net, 1 performansguru.com, 1 performidi.com, 1 @@ -114739,6 +114898,7 @@ perniciousgames.com, 0 pernod-ricard.io, 1 peroduaselangor.com, 1 +peronmedya.com, 1 perot.me, 1 perpetua.io, 1 perpetual.ga, 1 @@ -114781,6 +114941,7 @@ perso.pl, 1 persoform.ch, 1 personabrindesbr.com.br, 1 +personacommunications.com.au, 1 personal-genome.com, 1 personal-scrum.de, 1 personal-scrum.eu, 1 @@ -114804,12 +114965,14 @@ personalpages.us, 1 personalstructures.com, 1 personaltrainer-senti.de, 1 +personaltransporter.es, 1 personalwebsite.services, 1 personcar.com.br, 1 persondatakonsulenterne.dk, 1 personetics.com, 1 personjob.ru, 1 personlookup.com.au, 1 +personnalisathion.be, 1 personnedisparue.fr, 1 personnelplusinc.com, 1 persoonlijkeblog.nl, 1 @@ -114875,6 +115038,7 @@ pestalertsest.ga, 1 pestcontrol.co.uk, 1 pestdefense.com, 1 +pested.com, 1 pesterchum.online, 1 pesterchum.xyz, 1 pesthotelers.ga, 1 @@ -114896,7 +115060,6 @@ petabits.de, 1 petabundant.ga, 1 petal-ms.gov, 1 -petaladdin.com, 1 petalsoft.tk, 1 petamazing.ga, 1 petaouchnok.ch, 1 @@ -114905,6 +115068,7 @@ petblaster.ga, 1 petblender.ga, 1 petbooking.it, 1 +petbr.com.br, 1 petbrowser.ga, 1 petburial.cf, 1 petcareclub.com, 1 @@ -115013,7 +115177,6 @@ petitmaison.net, 1 petitnuagephotographie.be, 1 petitsfrenchies.com, 1 -petitsfreresdespauvres.fr, 1 petitu.mx, 1 petjoy.co.za, 1 petkiss.ga, 1 @@ -115061,8 +115224,10 @@ petrifiedhaggis.net, 1 petrifiedhaggis.org, 1 petrkulik.cz, 1 +petro.cn, 1 petrochemprojects.ga, 1 petrol-power.tk, 1 +petrol.cn, 1 petrol.com.ua, 1 petroleum-schools.com, 1 petroleumservicecompany.com, 1 @@ -115182,7 +115347,6 @@ pfnpc.org, 1 pfolta.net, 1 pfonboarding.org, 1 -pfonks.com, 1 pfp.com.au, 1 pfp.works, 1 pfr.email, 1 @@ -115230,7 +115394,6 @@ pgsec.cz, 1 pgsec.eu, 1 pgsek.cz, 1 -pgsentertainment.com, 1 pgsindustries.com.au, 1 pgsolusi.com, 1 pgsupplier.com, 1 @@ -115246,6 +115409,7 @@ ph89.de, 1 pha.pub, 1 phaedranyx.co.uk, 1 +phaenos.com, 1 phagyo.com, 1 phannuoc.net, 1 phantasia.tk, 1 @@ -115261,7 +115425,6 @@ phantomphans.tk, 1 phantomware.tk, 1 pharma-insights.nl, 0 -pharma-iq.com, 1 pharmaabsoluta.com.br, 1 pharmabach.com, 1 pharmaboard.de, 1 @@ -115356,6 +115519,7 @@ philia-sa.com, 0 philiip11.de, 1 philinnon.net, 1 +philip.im, 1 philipbuckmaster.co.uk, 1 philipdb.com, 1 philipdb.nl, 1 @@ -115460,11 +115624,13 @@ phoenixnest.ltd, 1 phoenixpower.tk, 1 phoenixpwn.com, 1 +phoenixrisingconsult.com, 1 phoenixsalon.eu, 1 phoenixurbanspaces.com, 0 phoenixville.online, 1 phoenixwebsitedesign.com, 1 phographer.com, 0 +phol.io, 1 pholder.com, 1 pholio.com, 1 phone-service-center.de, 1 @@ -115587,6 +115753,7 @@ photosafaribg.com, 1 photosavi.com, 1 photosbyadeline.com, 1 +photosbybstuartseniors.com, 1 photosbyzachary.tk, 1 photoscheduleers.ga, 1 photoscheduleest.ga, 1 @@ -115744,6 +115911,7 @@ pianoschmitz.de, 1 pianotaku.com, 1 pianotuning.cn, 0 +pianyigou.com, 1 piaohong.tk, 1 piasativa.com, 1 piasto.com.cy, 1 @@ -115762,7 +115930,7 @@ pic2map.com, 1 pic2pat.com, 1 pic2pat.nl, 1 -picante.today, 1 +picalendar.com, 1 picapollochino.tk, 1 picarones.es, 1 picasoft.net, 1 @@ -115831,7 +115999,6 @@ picstar.tk, 1 picsto.re, 0 pictominoes.com, 1 -pictonwaterfrontapartments.co.nz, 1 pictopat.com, 1 pictopat.nl, 1 pictoplasma.com, 1 @@ -115900,12 +116067,12 @@ pierreterrien.fr, 1 pierrevieville.fr, 0 pierreyvesdick.fr, 1 +pierrot-bg.com, 1 piersmana.com, 1 pierson.tk, 1 pierstone.com, 1 piesel-piepser.de, 1 pietbrakman.tk, 1 -pietcees.nl, 1 pietechsf.com, 0 pieter-verweij.nl, 1 pieterbamps.tk, 1 @@ -115930,9 +116097,9 @@ piggingcleaning.com, 1 pigment.com, 1 pigop.com, 1 -pigsbytebooks.org, 1 +pigsbytebooks.org, 0 pigslv.com, 1 -piguet.com, 1 +piguet.com, 0 pigzilla.co, 1 pihaar.de, 1 pii-protect.com, 1 @@ -115960,7 +116127,6 @@ pikker.ee, 1 pikkuegypti.tk, 1 pikminwiki.com, 1 -pikmy.com, 1 piknichok.ml, 1 pilani.ch, 0 pilar.moe, 1 @@ -115975,6 +116141,7 @@ pilbaraports.com.au, 1 pilchuck.org, 1 pildat.org, 1 +pile.systems, 1 pileawayremovals.com, 1 pilgermaske.org, 1 pili-serv.ovh, 1 @@ -116073,15 +116240,15 @@ pinesol.com, 1 pinetreeadvisors.us, 1 pineviewlogan.com, 1 -pinflux2.com, 1 pinfong.com, 1 ping-books.cf, 1 +pingbandiannao.com, 0 +pingce.com, 1 pingminer.com, 1 pingnp.me, 0 pingodoce.pt, 1 pingperfect.com, 1 pingpongparkinson.at, 1 -pingpongsourcing.com, 1 pingrc.net, 1 pinguinita.tk, 1 pinguinreal.sk, 1 @@ -116138,7 +116305,6 @@ pinot.it, 1 pinotag.ru, 1 pinoydeal.ph, 1 -pinoyseoservices.com, 1 pinoysurvey.com, 1 pinoytambayan.ga, 1 pinoytambayan.tk, 1 @@ -116207,7 +116373,6 @@ pionplex.de, 1 piovan.com, 1 pip-maker.com, 1 -pipa-shop.nl, 1 piparitaikina.fi, 1 pipeclub.tk, 1 pipecon.ch, 1 @@ -116332,7 +116497,6 @@ pittsvillewi.gov, 1 pitu.gov, 1 piu.moe, 1 -piuralift.nl, 1 piurvolium.tk, 1 piute.gov, 1 piutesd.gov, 1 @@ -116366,6 +116530,7 @@ pixel4k.com, 1 pixelats.cat, 1 pixelbass.nl, 1 +pixelbattle.fun, 1 pixelcatproductions.net, 1 pixelchannel.ga, 1 pixelcomunicacion.com, 1 @@ -116458,12 +116623,11 @@ pizzariaroma.cf, 1 pizzaslut.xyz, 1 pizzeriaamadeus.hr, 1 -pizzeriasmallorca.com, 1 pizzeriaveneziana.it, 1 pj11018.com, 1 pj4488.cc, 1 pjatnashki.ru, 1 -pjax.xyz, 1 +pjax.xyz, 0 pjc.is, 1 pjentertainments.co.uk, 1 pjleisure.co.uk, 1 @@ -116500,6 +116664,7 @@ pkshs.my, 1 pkspskov.tk, 1 pkvgamesqq.asia, 1 +pkvmanager.info, 1 pkwebsolutions.cf, 1 pl-cours.ch, 0 pl-trans.tk, 1 @@ -116559,8 +116724,6 @@ plaloo.gq, 1 plaloo.tk, 1 plamenapanayotova.co.uk, 1 -plan-in-architektur.de, 1 -plan-it-events.de, 1 planable.io, 1 planafy.com, 1 planate.com, 0 @@ -116602,7 +116765,6 @@ planetchiropracticga.com, 1 planetconnected.com, 1 planetcopy.gr, 1 -planetdrives.com, 1 planete-lira.fr, 1 planete-secu.com, 1 planeteroliste.com, 1 @@ -116669,7 +116831,6 @@ plansaude.med.br, 1 planshetnik.tk, 1 plant-gift.jp, 1 -plantacioneseltejo.es, 1 plantarportugal.org, 1 plantastique.ch, 0 plantationsnicholas.com, 1 @@ -116691,6 +116852,7 @@ plantsupplement.co.uk, 1 plantuml.online, 1 planujemywesele.pl, 1 +planungsdetail.de, 1 planungsregion-abw.de, 1 planview.com, 1 planvoyages.com, 1 @@ -116717,6 +116879,7 @@ plasticdonut.tk, 1 plasticflash.com, 1 plasticisers.org, 1 +plasticobiodegradable.com, 1 plasticosbiobasados.com, 1 plasticpassion.tk, 1 plasticstare.com, 1 @@ -116767,6 +116930,7 @@ platinumtalkest.ga, 1 platitudemusic.com, 1 platodecomida.com, 1 +platord.com, 1 platpoint.com, 1 platspuhtaks.ee, 1 plattecountymovotes.gov, 1 @@ -116838,6 +117002,7 @@ playinfinityvr.com, 1 playit.rs, 1 playkids.com, 0 +playmat.com, 1 playmei.com, 0 playmyinbox.com, 1 playnow.com, 1 @@ -116932,7 +117097,6 @@ plexnet.cz, 1 plexopedia.com, 1 plexpy13.ddns.net, 1 -plextv.de, 1 plexusmd.com, 0 plexusworldwide.com, 1 plgr.cc, 1 @@ -117016,7 +117180,6 @@ plungepools.ae, 1 plural.cafe, 1 pluralistic.net, 1 -pluralpedia.org, 1 pluricosmetica.com, 1 plurilock.com, 1 pluriumint.com, 1 @@ -117107,7 +117270,6 @@ pmi.gov, 1 pmi.it, 1 pmiandulive.com, 1 -pmibags.com, 1 pmk.ddns.net, 0 pml4t.net, 1 pmme.io, 1 @@ -117131,7 +117293,6 @@ pn.id.lv, 1 pnakosoft.com.au, 1 pnbholdings.com, 1 -pnbindia.in, 0 pnbnet.net.in, 1 pnch.fi, 1 pneu01.fr, 1 @@ -117229,7 +117390,6 @@ poc75.com, 1 poc76.com, 1 poc768.com, 1 -poc77.com, 1 poc771.com, 1 poc772.com, 1 poc773.com, 1 @@ -117461,6 +117621,7 @@ pokeli.de, 1 pokemmo.com, 1 pokemonargentina.tk, 1 +pokemoncentral.it, 1 pokemondb.net, 1 pokemonforums.tk, 1 pokemongoclub.tk, 1 @@ -117489,7 +117650,6 @@ pokerreligioners.ga, 1 pokerreligionest.ga, 1 pokerslab.com, 1 -pokerstarslearn.com, 1 pokerventure.ga, 1 pokerventureers.ga, 1 pokerventureest.ga, 1 @@ -117613,7 +117773,6 @@ polishforums.com, 1 polishhockey.tk, 1 polishmarriage.org, 1 -polishmodels.net, 1 polishtranslation.com, 1 polisi.go.tz, 1 polisipati.tk, 1 @@ -117625,7 +117784,6 @@ polit-it.pro, 1 polit.im, 1 politagree.com, 1 -politeiaudesa.org, 0 politeka.net, 1 politex.tk, 1 politic.org.ua, 1 @@ -117676,6 +117834,7 @@ pollock.gallery, 1 pollock.tk, 1 pollpodium.nl, 1 +pollunit.com, 1 polly.spdns.org, 1 pollypaps.ru, 1 pollyundpaule.de, 1 @@ -117685,7 +117844,6 @@ polomack.eu, 1 poloniainfo.com, 1 polonialidzbark.tk, 1 -polopompa.com, 1 polorize.com, 1 polourize.com, 1 polparts.nl, 1 @@ -117700,7 +117858,6 @@ poltax.com.pl, 1 poltsamaa.edu.ee, 1 poltsamaalasteaed.edu.ee, 1 -poly-direct.com, 1 poly.se, 1 polycoise.com, 1 polycraftual.co.uk, 0 @@ -117727,6 +117884,7 @@ polytarian.com, 1 polytekniskforening.dk, 1 polyvalents.fr, 1 +pomadas.com, 1 pomadgw.xyz, 1 pomba.pl, 1 pombalhome.duckdns.org, 1 @@ -117757,13 +117915,14 @@ pomtom.co.nz, 1 poname.ru, 1 ponca-nsn.gov, 1 +poncagedemarbre.fr, 1 poncatribe-ne.gov, 1 poncho-bedrucken.de, 0 pondacademy.com, 1 pondband.net, 1 pondof.fish, 1 -pondot.it, 1 pondsama.com, 1 +pondsec.com, 1 poneiras.com, 1 ponga.se, 1 pongplace.com, 1 @@ -117795,6 +117954,7 @@ poobert.tk, 1 poochpark.tk, 1 poodlefan.net, 1 +poohcottage.co.uk, 1 pooi.me, 1 poojanews.com, 0 pookhaarden.nl, 1 @@ -117810,7 +117970,7 @@ pooltools.net, 1 poolvilla-margarita.net, 1 poon.io, 1 -poonawallafincorp.com, 1 +poonawallafincorp.com, 0 poopa.loan, 1 poopjournal.rocks, 1 poopr.ru, 1 @@ -117863,7 +118023,6 @@ popokin.tk, 1 popolini.ch, 1 popolini.com, 1 -popotesetcocottes.fr, 1 popova.tk, 1 popovdent.com, 1 popoway.cloud, 1 @@ -117901,7 +118060,6 @@ popupbazaar.tk, 1 popwaifu.click, 1 poquiloco.com, 1 -poquvi.net, 0 poradls.cz, 1 poradludkastanka.cz, 1 porady-wnetrzarskie.pl, 1 @@ -118044,6 +118202,7 @@ portalcarriers.com, 1 portalceara.com, 1 portalchega.pt, 1 +portaldabiblia.com.br, 1 portaldamizade.com, 1 portaldenuncias.com.br, 1 portaldocredito.pt, 1 @@ -118051,6 +118210,7 @@ portalelavoro.org, 1 portaleldense.tk, 1 portalexpressservices.com, 1 +portall.in, 1 portalm.tk, 1 portalmundo.xyz, 1 portalpandalandia.tk, 1 @@ -118069,6 +118229,7 @@ portcities.ca, 1 portcomputingsolutions.com.au, 1 portcoquitlam.mywire.org, 1 +portcullisco.com, 1 porte.roma.it, 1 portedwardswi.gov, 1 portent.com, 0 @@ -118128,11 +118289,9 @@ portugal-a-programar.org, 1 portugal-a-programar.pt, 1 portugal-car-hire.net, 1 -portugalbnb.net, 0 portugalbycar.com, 1 portugalivre.tk, 1 portugalsko.net, 1 -portugalsurflessons.com, 1 portuma.com, 1 portusidades.com.pt, 1 portvaletickets.com, 1 @@ -118179,6 +118338,7 @@ positronicmoron.tk, 1 poskacrew.org, 1 poslednigenerace.cz, 1 +posleinsulta.ee, 1 posluhy-asenizatora.com.ua, 1 posoco.in, 1 pospisilik.eu, 1 @@ -118222,6 +118382,7 @@ posteo.com, 1 posteo.de, 1 posteo.net, 1 +postermaniacs.pe, 1 postermywall.com, 1 postern.net, 1 postern.nl, 1 @@ -118229,12 +118390,14 @@ postern.uk, 1 posters.win, 1 posterspy.com, 1 +postfactum.info, 1 postfalls-naturopathic.com, 1 postfalls.gov, 1 postfallspolice.gov, 1 postfinance.ch, 1 postimages.org, 1 postimg.cc, 1 +postkassetrimmen.no, 1 postlakeswi.gov, 1 postlifepreps.com, 1 postling.com, 1 @@ -118289,7 +118452,6 @@ potatosouprecipe.ml, 1 potatotee.com, 1 potatron.tech, 1 -potature.it, 1 potature.rimini.it, 1 potature.roma.it, 1 potbelly.com, 1 @@ -118328,7 +118490,6 @@ pottershouse.tk, 1 potterybroker.ga, 1 pottia.gov, 1 -pottkinder.de, 1 pottshome.co.uk, 1 pottsvillepa.gov, 1 potvorka.tk, 1 @@ -118401,6 +118562,7 @@ powercounty.gov, 1 poweredbybp.nl, 1 poweredbyiris.nl, 1 +powerembedded.com.br, 1 powerenglish.cl, 1 powerentertainment.tv, 1 powerfifty.com, 1 @@ -118463,11 +118625,11 @@ powersurgedatasystems.com, 1 powerswitch.org.nz, 1 powertecno.ml, 1 -powertofail.org, 1 powertofly.com, 1 powertop.com, 1 powertrike.tk, 1 powertrunk.com, 1 +powertuning.com.br, 1 poweruser.su, 1 powervolt.ru, 1 powerwellness-korecki.de, 1 @@ -118505,6 +118667,7 @@ ppapogey.ru, 1 ppbi.com, 1 ppcgeeks.com, 1 +ppcpump.com, 1 ppcsesco.com, 1 ppep.jp, 1 ppf.co.uk, 1 @@ -118531,7 +118694,6 @@ ppsltd.ca, 1 ppssh.org, 1 ppt.org, 1 -pptavmdata.org, 1 pptbliss.com, 1 ppuglobe.com, 1 ppweb.pro, 1 @@ -118576,7 +118738,6 @@ practixdevelopment.com, 1 practo.com, 1 practodev.com, 1 -practopulse.com, 1 pracusalev.tk, 1 pradeek.tk, 1 pradeepagrawal.com, 1 @@ -118615,6 +118776,7 @@ praiagrande.tk, 1 prairiedulongil.gov, 1 prairienursery.com, 1 +prairietechsolutions.com, 1 prairievilletwp-mi.gov, 1 praiss.net, 1 prajituricisialtele.ro, 1 @@ -118635,7 +118797,6 @@ praktijktoetsen.nl, 1 praktiker.hu, 1 praktikum.tk, 1 -praladofuturo.blog, 1 praleria.com, 1 pramadillo.com, 1 pramuwaskito.org, 1 @@ -118657,7 +118818,6 @@ prashantcafe.tk, 1 prasinoscomputers.ml, 1 prasos.fi, 1 -prasso.se, 0 prateep.io, 1 pratelloshop.tk, 1 pratemarkets.com, 1 @@ -118818,6 +118978,7 @@ preme.name, 1 premiachef.com, 1 premier-dream.co, 1 +premier-mt.uk, 1 premier-pallets.com, 1 premier-podiatry.com, 1 premieramerica.com, 1 @@ -118827,7 +118988,6 @@ premiercountertops.com, 1 premierdesigns.org, 1 premierdisco.co.uk, 1 -premiereco.com.sg, 1 premieresloges.ca, 1 premierevents.ie, 1 premierheart.com, 1 @@ -118867,10 +119027,10 @@ premiumplus.io, 1 premiumresidency.in, 1 premiumshop24.de, 1 +premiumsleepingbags.com, 1 premiumsmile.ru, 1 premiumtimesng.com, 1 premiumturkey.ml, 1 -premiumusedautoparts.com, 0 premiumweb.co.id, 1 premiumwebdesign.it, 1 premkumar.net, 1 @@ -118878,7 +119038,9 @@ premsarswat.me, 1 premstarinc.com, 1 prenatal.com, 1 +prenataldnatesting.com, 1 prendashop.es, 1 +prendsendelagraine.ca, 1 prensaalterna.com, 1 prensacomunitaria.org, 1 prensahispana.ga, 1 @@ -118971,7 +119133,6 @@ pressspace2hack.com, 1 pressspacetohack.com, 1 pressup.it, 1 -pressurepowerwashing.com, 1 pressureradio.com, 1 pressurewashers.ml, 1 pressurewashersandiego.com, 1 @@ -119025,11 +119186,10 @@ pretty-smile.com.tw, 1 prettycities.ga, 1 prettycloud.net, 1 -prettycobs.com, 1 prettydirtyteens.com, 1 prettygirlcheats.com, 1 prettykeira.tk, 1 -prettylatin.com, 1 +prettynightjob.net, 1 prettyporn.com, 1 prettysimplemom.com, 1 prettyskin.com.tw, 1 @@ -119039,11 +119199,13 @@ preums.co, 1 preussner-grafik-design.de, 1 prevajalska-agencija.si, 1 +prevascloud.com, 1 preventive-therapy.com, 1 preventshare.com, 1 preview-it-now.com, 1 preview-mini.com, 1 preview.ninja, 1 +preview.site, 1 preview918.com, 1 previewfreemovies.com, 1 previewninja.com, 1 @@ -119051,7 +119213,6 @@ previh.eu, 1 previous.one, 1 previousmagazine.com, 1 -previsiemens.com.br, 0 previstart.fr, 1 prevodivie.com, 1 prevodkazet.cz, 1 @@ -119081,6 +119242,7 @@ pricelesspics.tk, 1 pricelistforbxmodules.ga, 1 pricelooper.com, 0 +priceofbusiness.com, 1 pricepropharmacy.com, 1 priceshop.com, 1 pricesmax.com.mx, 0 @@ -119091,6 +119253,7 @@ pricing-fox.cz, 1 pricing-fox.sk, 1 priczone.com, 1 +priczone.live, 1 pride-enterprises.org, 1 pridecounseling.com, 1 pridecraft.gay, 1 @@ -119212,6 +119375,7 @@ princelishan.com.tw, 1 princemathew.tk, 1 princemolak.ga, 1 +princeruperthotel.co.uk, 1 princes-st.org.nz, 1 princesparktouch.com, 1 princess.software, 1 @@ -119224,6 +119388,7 @@ princetonradiationoncology.com, 1 princetontxcdc.gov, 1 princevikal.cf, 1 +princewen.cn, 1 princez.uk, 1 princezna.club, 1 princh.com, 1 @@ -119246,12 +119411,12 @@ printable-map-az.com, 1 printablemapaz.com, 1 printablemapforyou.com, 1 -printablerebateform.net, 1 printableschedule.net, 1 printandgo.fr, 1 printbase.cz, 1 printbigjournal.tk, 1 printeknologies.com, 1 +printerdrivers.com, 1 printerinks.com, 1 printerinktoutlet.nl, 1 printersdrivers.net, 1 @@ -119304,7 +119469,6 @@ prismaot.tk, 1 prismatic.ro, 1 prismomarketing.com, 1 -prismosystems.com, 1 prisneutajovanamista.cz, 1 prisonerresource.com, 1 pristinegrace.org, 1 @@ -119364,7 +119528,7 @@ private-krankenversicherung.tk, 1 private-net.spdns.org, 1 private-relay.email, 1 -private.coffee, 1 +private.cn, 1 privateadvisorgroup.com, 1 privateamateure.com, 1 privateaudiobooks.stream, 1 @@ -119374,6 +119538,7 @@ privatecamsites.com, 1 privatecapsecurity.org, 1 privatedata.tk, 1 +privatedomaincontrol.com, 1 privateger.me, 1 privategiant.com, 1 privatehd.to, 1 @@ -119387,7 +119552,6 @@ privatenext.cloud, 1 privatepilot.lu, 0 privaterelay.com, 0 -privatesangels.com, 1 privateschoolreview.com, 1 privatesecretsanta.com, 1 privateservice.cz, 1 @@ -119441,6 +119605,7 @@ pro-c.me, 1 pro-co.at, 1 pro-esb.net, 1 +pro-etic.com, 1 pro-fichat.com, 1 pro-furgoleros.tk, 1 pro-ing.com, 0 @@ -119485,7 +119650,6 @@ proarbor.com, 0 proastec.com.br, 1 proaudiogc.com, 1 -proautoconsultant.com, 0 proaxiom.com, 1 proaxiom.com.au, 1 probably.group, 1 @@ -119499,6 +119663,7 @@ probinarin.ga, 1 probioticnacistila.si, 1 problem-solver.ml, 1 +problemlos-privat-versichert.de, 1 problemstate.com, 1 problemstate.de, 1 problemstate.net, 1 @@ -119523,7 +119688,6 @@ procesadorafenix.com.mx, 1 processesinmotion.com, 1 processevolution.com.au, 1 -processexcellencenetwork.com, 1 processtec.com.br, 1 prochainephase.com, 1 procharter.com, 1 @@ -119551,8 +119715,6 @@ proctorial.cf, 1 proctorio.com, 1 proctorio.net, 1 -proculair.com, 1 -proculair.nl, 1 procupros.com, 1 procurant.com, 1 procurement.moscow, 0 @@ -119560,6 +119722,7 @@ procursus.social, 1 prod-bp-geotab-api.azurewebsites.net, 1 prod-vigl-www-master.azurewebsites.net, 1 +prodcdn.com, 1 prodemos.nl, 1 prodesigntools.com, 1 prodesk.bg, 1 @@ -119590,7 +119753,6 @@ productive.io, 1 productivemachine.net, 1 productiveplastics.com, 1 -productosdeteruel.es, 0 productosquimicosrd.com, 1 productpeo.pl, 1 products-for-health.tk, 1 @@ -119602,14 +119764,13 @@ produkt.cf, 1 produra.nl, 1 produtosdeacademia.com, 1 -proecommerce.com, 1 +produttori.it, 1 proefexamenbvca.nl, 1 proefexamensvhsocialehygiene.nl, 1 proeflokaalbakker.nl, 1 proefteksten.nl, 0 proekt.moscow, 1 proekt.tk, 1 -proelectro.pro, 1 proemployeeprotection.com, 1 proemployeeprotection.net, 1 proenfar.com, 1 @@ -119641,7 +119802,6 @@ professor-d.ga, 1 professorwidget.tk, 1 proffbar.ru, 1 -profi-durchgangsmelder.de, 1 profi.de, 1 profian.com, 1 proficio.at, 1 @@ -119783,7 +119943,7 @@ prohost24.tk, 1 prohrcloud.com, 1 proi.net, 1 -proid.studio, 1 +proid.studio, 0 proitlb.com, 1 proj.org.cn, 1 proj3ct.me, 1 @@ -119812,6 +119972,7 @@ projectdesign.io, 1 projectemail.co, 1 projectfreehosting.ga, 1 +projectfriends.de, 1 projectgazaabindo.com, 1 projecthelius.com, 1 projecthopeless.tk, 1 @@ -119925,7 +120086,7 @@ promods.net, 1 promods.store, 1 promofirstmedia.co.id, 1 -promohulp.nl, 1 +promohulp.nl, 0 promohunt.ru, 0 promokodi.tk, 1 promolife.be, 1 @@ -119937,12 +120098,11 @@ promosjungle.com, 1 promosolucoes.tk, 1 promossale.com, 1 -promotable.co.uk, 1 -promotable.net, 1 promotech.pro, 1 promoteiq.com, 0 promotennis.ch, 1 promoteroute.com, 1 +promotioncentre.co.uk, 1 promotiongeeks.com, 0 promotionnissanauto.com, 1 promotionvillanakarin.com, 1 @@ -119964,8 +120124,8 @@ prontointerventoimmediato.it, 1 prontolockandkey.com, 1 prontossl.com, 1 -prontt.com, 1 pronty.it, 1 +proofby.ac, 1 proofed.com, 1 prooffice.de, 1 proofofwork.art, 1 @@ -119980,7 +120140,7 @@ propagationtools.com, 1 propanesale.cf, 1 propbot.com, 1 -propco.co.uk, 1 +propco.co.uk, 0 propecia.ml, 1 propelate.com, 1 propeld.com.au, 1 @@ -120044,6 +120204,7 @@ prosantena.it, 1 proscore-vr2005-1plc.de, 1 proscore-vr2006-1plc.de, 1 +proscost.com, 1 prose.org, 1 proseriesevents.com, 1 proservice.ma, 1 @@ -120092,7 +120253,6 @@ prostoporno.sexy, 1 prostoporno.zone, 1 prostor.cf, 1 -prostore.vn, 1 prostoskidki.ml, 1 prostozaim.ml, 1 prostye-recepty.com, 1 @@ -120117,6 +120277,7 @@ protectasecurity.pe, 1 protected-forms.com, 1 protectem.de, 1 +protecti.com, 1 protection-plexi.com, 1 protection-plexi.fr, 1 protection.ga, 1 @@ -120160,10 +120321,10 @@ protonpix.com, 1 protonvpn.com, 1 protopia.ai, 1 +protorg-msk.ru, 1 prototayl.gq, 1 prototech.store, 1 prototype.bg, 1 -prototypefund.de, 1 prototyping-computer.ml, 1 protown.in.ua, 1 protrainerbrasil.com.br, 1 @@ -120278,6 +120439,7 @@ pruchovi.tk, 1 prudenceandthecrow.com, 1 prudential.com.sg, 1 +prudentialzenith.com, 1 pruebapg.cl, 1 pruebasrapidasdrogas.com, 1 pruem.software, 1 @@ -120303,11 +120465,9 @@ przepisykolejowe.tk, 1 przerabianiezdjec.pl, 1 przybys.eu, 1 -przyczepki.online, 1 ps-clinic.jp, 1 ps-fr.ddns.net, 1 ps-provider.co.jp, 1 -ps-rosatom.ru, 1 ps-sale.ru, 1 ps-w.ru, 1 ps.energy, 0 @@ -120352,7 +120512,6 @@ psdreams.com, 1 psdsfn.com, 1 psdsuc.com, 1 -pseac.org, 1 pseek.com, 1 psemc.com, 1 pseta.ru, 1 @@ -120392,6 +120551,7 @@ psihotest.tk, 1 psii.global, 0 psikokoro.com, 1 +psikotest.com, 1 psikoucka.cz, 1 psilly.com, 1 psinergy.info, 1 @@ -120466,6 +120626,7 @@ psych2go.net, 1 psychcare.cz, 1 psychcaremd.com, 1 +psychedelia.wiki, 1 psycheteelia.com, 1 psychiatriepapezova.net, 1 psychiatriepraktijkutrecht.nl, 1 @@ -120474,7 +120635,6 @@ psychicfairnetwork.cf, 1 psychicfairnetwork.gq, 1 psychicfairnetwork.ml, 1 -psychiq.com, 1 psychische-systeme.de, 1 psycho-familles.com, 1 psycho-lobby.fr, 1 @@ -120489,7 +120649,7 @@ psychologische-coronahilfe.de, 1 psychologischepraktijkphilips.nl, 1 psychologist.ga, 1 -psychologlodz.info, 1 +psychologlodz.info, 0 psychologos.life, 1 psychologue-a-paris.com, 1 psychologue-grenoble.org, 1 @@ -120531,7 +120691,6 @@ psycolleges.com, 1 psydix.org, 1 psydprograms.org, 1 -psyelena.be, 1 psygame.cf, 1 psyh.tk, 1 psyhelp.ro, 1 @@ -120636,7 +120795,6 @@ publicagent.com, 1 publicamenucards.com, 1 publicare-gmbh.de, 1 -publicaronline.net, 1 publicboards.com, 1 publiccarauctionscalifornia.com, 1 publicdatacloud.com, 1 @@ -120658,6 +120816,7 @@ publicnoticesbaycountyfl.gov, 1 publicntp.org, 1 publicpickups.com, 1 +publicrea.com, 1 publicschoolreview.com, 1 publicserviceloanforgiveness.gov, 1 publicsevasolution.com, 1 @@ -120824,6 +120983,7 @@ pupilgauge.com, 1 pupok.cf, 1 pupok.gq, 1 +puppiza.com, 1 puppo.space, 1 puppy.actor, 1 puppyfinder.com, 1 @@ -120875,7 +121035,6 @@ puredns.org, 1 purefarminggame.com, 1 purefoot.jp, 1 -purehemp.pl, 1 pureholisticwellness.com, 1 pureleverage.com, 1 purelife.photography, 1 @@ -120884,6 +121043,7 @@ purelymail.com, 1 purelypestcontrol.com, 1 puremosquito.com, 1 +purenhd.com, 1 purepestandlawn.com, 0 pureromance.com, 1 puresanitization.com, 1 @@ -120904,9 +121064,9 @@ puritynews.com, 1 purkupalvelut.fi, 1 purneauniversity.org, 1 +puroprazer.pt, 1 purovive.tk, 1 puroyorganico.co, 1 -purpl.ink, 1 purple.tech, 1 purplehost.com.br, 1 purplehotel.cf, 1 @@ -121057,7 +121217,6 @@ pvplist.ml, 1 pvportal.me, 1 pvpready.gov, 1 -pvpserverler.pro, 1 pvpzone.fr, 0 pvrtours.com, 1 pvtschlag.com, 0 @@ -121088,7 +121247,6 @@ pwoss.xyz, 1 pwr990ay.pl, 1 pws.my, 1 -pwskills.com, 1 pwsplash.com, 1 pwss.gov.au, 0 pwud.ga, 1 @@ -121205,7 +121363,6 @@ q6957.co, 1 q78kg.eu.org, 1 q7k.net, 1 -q82365.com, 1 q8igh228tq.tk, 1 q9.ee, 1 q9.io, 1 @@ -121232,7 +121389,6 @@ qalpuch.cc, 1 qanatnews.tk, 1 qani.me, 1 -qanw.com.br, 1 qao.qld.gov.au, 1 qaq.cloud, 1 qaq.icu, 1 @@ -121245,7 +121401,6 @@ qatesol.org.au, 1 qawasmigroup.com, 1 qaz.cloud, 1 -qazcloud.com, 0 qbasic.tk, 1 qbasicsite.tk, 1 qbcorescripts.com, 1 @@ -121274,8 +121429,7 @@ qcstudentcenter.com, 0 qcstyleacademy.com, 0 qctimes.com, 1 -qctravelschool.com, 0 -qcuarto.com.py, 1 +qcuarto.com.py, 0 qdabogados.com, 1 qde.com, 1 qde.org, 1 @@ -121323,9 +121477,11 @@ qianmo.com, 1 qiannews.net, 0 qianqiao.me, 1 -qiantuwenlu.com, 1 +qiantuwenlu.com, 0 qiaohong.org, 1 +qiaowai.com, 1 qiber.org, 1 +qibgroup.com.au, 1 qicoder.com, 1 qidn.ie, 1 qifu.me, 1 @@ -121340,13 +121496,16 @@ qin.moe, 1 qingan.ca, 1 qingchuan.cc, 1 -qingkong.net, 0 +qingjie.com, 1 +qingkong.net, 1 qinglingyu.cn, 1 qingly.me, 1 qingniantuzhai.com, 1 qingpat.com, 0 qingpei.me, 1 qingran.net, 1 +qingsha.com, 1 +qingyule.com, 1 qinlili.bid, 1 qionouu.cn, 1 qiqitv.info, 1 @@ -121357,7 +121516,7 @@ qisheiosxz.com, 1 qissajewels.com, 1 qitano.com, 1 -qitarabutrans.com, 1 +qitarabutrans.com, 0 qiu.moe, 0 qiu006.com, 1 qiuwenbaike.cn, 1 @@ -121389,6 +121548,7 @@ qmarket.tk, 1 qmdcoin.com, 1 qmee.com, 1 +qmeeting.com, 1 qmenta.com, 1 qmeriaux.fr, 1 qmp-media.nl, 0 @@ -121412,7 +121572,6 @@ qofpeacechurch.org, 1 qombo.nl, 1 qoml.net, 1 -qonnected.nl, 1 qontinuum.space, 1 qoostudio.com, 1 qoptalk.com, 1 @@ -121421,6 +121580,7 @@ qosqo.tk, 1 qotw.net, 1 qoyyim.com, 1 +qozido.de, 1 qp666d.com, 0 qpai.net, 1 qpaypro.com, 1 @@ -121431,6 +121591,7 @@ qprcaquatics.com.au, 1 qpsinc.com, 1 qptechnologies.com, 1 +qq-p.co.uk, 1 qq.ee, 1 qq.wtf, 1 qq201314.com, 0 @@ -121479,6 +121640,7 @@ qrprincipal.com, 1 qrpth.eu, 1 qrsa.com.au, 1 +qruiser.com, 1 qrz.one, 1 qscloud.de, 1 qseek.cf, 1 @@ -121488,6 +121650,7 @@ qspirit.net, 1 qssupplies.co.uk, 1 qstivi.de, 1 +qstpcj25427.com, 1 qt.ax, 1 qtacairsoft.com, 1 qtakehd.com, 1 @@ -121499,7 +121662,6 @@ qto.support, 1 qtpass.org, 1 qtpower.co.uk, 1 -qtpower.net, 1 qtpower.org, 1 qtspace.cn, 1 qttransformation.com, 1 @@ -121509,7 +121671,7 @@ quackapp.com, 1 quacksire.dev, 1 quad9.com, 1 -quad9.net, 1 +quad9.net, 0 quadcityjuggalos.tk, 1 quadernoapp.com, 1 quadomania.tk, 1 @@ -121523,6 +121685,7 @@ quadros.shop, 1 quaedam.org, 1 quafe.tech, 1 +quai.ly, 1 quakekare.com, 1 quakeroaksfarm.org, 1 quaketips.ga, 1 @@ -121568,6 +121731,8 @@ qualli.com, 1 qualtrics.com, 1 qualyven.com, 1 +quande.com, 1 +quanmei.com, 1 quanquan.space, 1 quantability.net, 1 quantaloupe.tech, 1 @@ -121597,6 +121762,7 @@ quantuin.com, 1 quantuin.dk, 1 quantum-evolution.jp, 1 +quantum-gebaeudereinigung.de, 1 quantum-lviv.pp.ua, 1 quantum.games, 1 quantum.gdn, 1 @@ -121607,6 +121773,7 @@ quantum5.ca, 1 quantumca.com.cn, 1 quantumcrypto.nl, 1 +quantumdynamics.ae, 1 quantumfinance.com.au, 1 quantumfinancialgrp.com, 1 quantuminformationframework.com, 1 @@ -121619,6 +121786,7 @@ quantuscreative.com, 0 quantweb.tk, 1 quantxperts.com, 1 +quanyin.edu.eu.org, 1 quapawnation.gov, 1 quape.com, 1 quarantadue.digital, 1 @@ -121649,7 +121817,6 @@ quatermass.tk, 1 quaternion.tk, 1 quattro.tk, 1 -quatuor-courtage.fr, 1 quaxio.com, 1 quay.net, 1 quayconsultingllc.com, 1 @@ -121657,6 +121824,7 @@ qubeit.co, 1 qubes-os.org, 1 qubhockey.tk, 1 +qubit.capital, 1 qubitoss.com, 1 qubitsandbytes.co.uk, 1 qubyte.codes, 1 @@ -121722,7 +121890,6 @@ quentinaurat.com, 1 quentinchevre.ch, 1 quentingemine.be, 1 -quentinrichard.com, 1 quepourlesjuristes.fr, 1 quera.ir, 1 querelle.tk, 1 @@ -121732,6 +121899,7 @@ querocalcular.com.br, 1 query-massage.com, 0 query.gov.ps, 1 +queryguard.net, 1 quesartencomprar.com, 1 quesecelebra.info, 1 quessinternational.com, 1 @@ -121810,6 +121978,7 @@ quicksus.com, 1 quicktapstudios.com, 1 quicktaxinmessina.tk, 1 +quicktree.com, 1 quicktricks.net, 1 quickudpinternetconnections.com, 1 quickvideo.tk, 1 @@ -121831,7 +122000,6 @@ quietapple.org, 1 quietcorner.cloud, 1 quietlife.tk, 1 -quietluxury.top, 1 quietplace.tk, 1 quietstudyactivities.tk, 1 quietus.gq, 1 @@ -121849,9 +122017,9 @@ quimba.tk, 1 quimica.science, 1 quin.md, 0 -quincyclegg.com, 1 quinder.tk, 1 quinmedia.tk, 1 +quinnappliances.com, 1 quinnlabs.com, 0 quinnlawcenters.com, 1 quinnstech.ga, 1 @@ -121913,6 +122081,7 @@ qul.link, 1 qulix.by, 1 qulix.ch, 1 +qumin.com, 1 qumirezi.tk, 1 qunzi.la, 1 quocdesign.ch, 0 @@ -122066,6 +122235,7 @@ raaf-kommunikation.de, 1 raafwelfaretrustfund.gov.au, 1 raailto.com, 1 +raakvlak.net, 1 raamattuopisto.fi, 1 raar.tk, 1 raas.today, 1 @@ -122114,6 +122284,7 @@ racaliz.tk, 1 racamera.com, 1 racasdecachorro.org, 1 +racco.com.br, 1 raccoltadifferenziata.it, 1 raccoltarifiuti.com, 1 raccoltarifiuti.milano.it, 1 @@ -122124,7 +122295,6 @@ racemanager.io, 1 racesimscoring.com, 1 racetraq.net, 1 -racextract.com, 1 rachaelcorciaphotography.com, 1 rachaelholtphotography.com, 1 rachaelsmaids.com, 1 @@ -122147,6 +122317,7 @@ racingfanclub.tk, 1 racingteameelde.tk, 1 racius.com, 1 +racketlonindia.co.in, 1 racketscore.com, 1 racketscore.nl, 1 rackoon.de, 1 @@ -122167,6 +122338,7 @@ racunovodstvo-prina.si, 1 rad-route.de, 1 rad.com, 1 +rad.plus, 1 rad2share.com, 1 rada-group.eu, 1 radaar.io, 1 @@ -122198,6 +122370,7 @@ radchakan.com, 1 radcliffky.gov, 1 radconinc.net, 1 +raddeluxe.com, 1 radechefonne.it, 1 radegundisfest.de, 1 radekmazar.eu, 1 @@ -122246,7 +122419,6 @@ radio-online.tk, 1 radio-pulsar.com, 1 radio-pulsar.eu, 1 -radio-scouting.info, 1 radio-t.com, 1 radio-utopie.de, 1 radio-valois-multien.fr, 1 @@ -122371,7 +122543,6 @@ radioperfect.tk, 1 radiopharereims.tk, 1 radiopicaflor.tk, 1 -radioplanetario.com, 1 radioplayer.ie, 1 radiopleer.net, 1 radiopolarniki.spb.ru, 1 @@ -122494,6 +122665,7 @@ rage4.com, 1 ragebin.com, 1 ragic.com, 1 +ragingbearinteractive.com, 1 raginggaming.ga, 1 ragingrune.tk, 1 ragingserenity.com, 1 @@ -122671,7 +122843,6 @@ rajudhoni.ga, 1 rak-business-service.com, 1 rakennuspeli.com, 1 -rakeprofit.com, 1 rakeshkaryana.com, 1 raketa.travel, 1 raketaholst.com.ua, 1 @@ -122752,6 +122923,8 @@ ramos.tur.br, 1 ramowitha.com, 1 ramp.com, 1 +rampal.eu, 1 +rampal.io, 1 rampao.org, 1 rampeboreal.ca, 1 rampestyuma.com, 1 @@ -122848,7 +123021,6 @@ range-finder.com, 1 range-mate.co.uk, 1 range.co, 1 -rangedace.fr, 1 rangeforce.com, 1 rangeforce.eu, 1 rangerfiles.tk, 1 @@ -122856,10 +123028,10 @@ rangersofbelgium.be, 1 rangeweb.ga, 1 ranginkamonkadeh.ir, 1 -rango.jp, 1 rangsmo.se, 0 rangzol.now.sh, 1 raniermn.gov, 1 +raniperearstikeskus.ee, 1 ranjanbiswas.net, 1 ranjeetmehta.tk, 1 rankeco.com, 1 @@ -122928,6 +123100,7 @@ rapidssl.com.ru, 1 rapidstone.com, 1 rapidverify.io, 1 +rapidwater.au, 1 raposafixe.pt, 1 rapoteka.tk, 1 rappels-produits.com, 1 @@ -122988,7 +123161,6 @@ raspinaparvaz.com, 1 raspitec.ddns.net, 1 rassadacvetov.com, 0 -rassemblementnational.fr, 1 rasset.ie, 1 rassistem.rs, 1 rassro.sk, 1 @@ -122999,6 +123171,7 @@ rat.pw, 1 rataassociates.com, 1 ratajczak.one, 1 +ratasdesign.com, 0 ratatosk.net, 1 ratbarricade.com, 1 ratd.net, 1 @@ -123010,6 +123183,7 @@ ratemyfishtank.com, 1 rates.ca, 1 ratespy.com, 1 +ratethor.com, 1 rathbonesonline.com, 1 rathcroghan.ie, 1 rathdrum.gov, 1 @@ -123018,7 +123192,6 @@ rathmann-couture.de, 0 rathorian.fr, 1 rathsallaghhouseonline.com, 1 -ratingexpertise.com, 1 ratingostar.com, 1 ratinq.co, 1 ratiocinat.ga, 1 @@ -123037,7 +123210,6 @@ ratujemyzwierzaki.net, 1 ratujmydzikiekoty.org, 1 ratusha.ml, 1 -rauhenebrach.de, 1 raulmalea.ro, 1 raulrivero.es, 1 raulval.com, 1 @@ -123127,13 +123299,12 @@ raxion.tk, 1 ray-works.de, 1 rayann.cn, 1 -raybans-outlet.cc, 1 raycarruthersphotography.co.uk, 1 raycast.xyz, 1 raycountymo.gov, 1 raydius.de, 1 +rayensalud.com, 1 rayfalling.com, 1 -rayhillforsupremecourt.com, 1 rayhneatess.com, 1 rayiris.com, 1 rayj.me, 1 @@ -123185,6 +123356,7 @@ razvlekuhablog.tk, 1 rb-china.net, 1 rb.cz, 1 +rballday-entertainment.nl, 1 rbbaader.de, 1 rbbuae.com, 1 rbcafe.com, 1 @@ -123361,6 +123533,7 @@ reachdigital.com.au, 1 reachhead.com, 1 reachingapp.com, 1 +reachlawtech.com, 1 reachley.net, 1 reachout-ghana.com, 1 reachout2.nl, 1 @@ -123384,6 +123557,7 @@ readable.pw, 1 readapt-nutrition.com, 1 readaster.com, 1 +readbar.com, 1 readcomics.gq, 1 readersfavorite.com, 1 reades.co.uk, 1 @@ -123423,13 +123597,12 @@ readysiskiyou.gov, 1 readystep.ga, 1 readysurrync.gov, 1 -readytocleanga.com, 1 readywithresourcestn.gov, 1 reaff.com, 0 reaganlibrary.gov, 1 reakcjonista.tk, 1 reaksi.id, 1 -reaktionsfaehig.net, 1 +reaktionsfaehig.net, 0 real-it.nl, 1 real-linux.tk, 1 real-site.tk, 1 @@ -123448,6 +123621,7 @@ realbiz.ml, 1 realbluesmagazine.com, 1 realcapoeira.ru, 1 +realcdn.nl, 1 realclearlife.com, 1 realclinic.jp, 1 realdomdom.cf, 1 @@ -123462,10 +123636,9 @@ realestateexecutives.tk, 1 realestategreenville.tk, 1 realestatekanada.tk, 1 -realestatelegalupdate.com, 1 +realestatelegalupdate.com, 0 realestatemaryland.tk, 1 realestateofnewmexico.com, 1 -realestateonehowell.com, 1 realestates.istanbul, 1 realestatesales.gov, 1 realestatestagingassociation.com, 1 @@ -123482,6 +123655,7 @@ realidad.tk, 1 realincest.tv, 1 realinsurance.com.au, 1 +reality.cn, 1 realitycrazy.com, 1 realitydudes.com, 1 realitydudesnetwork.com, 1 @@ -123510,6 +123684,7 @@ realm-of-shade.com, 1 realm.is, 1 realmadridoffice.tk, 1 +realmake.com, 1 realmaturetube.com, 1 realmixwell.tk, 1 realmjoin.com, 1 @@ -123546,6 +123721,7 @@ realware.com, 1 realwebsite.ga, 1 realwinner.es, 1 +realworksforms.com.au, 1 realworldholidays.co.uk, 1 realytics.io, 1 realyux.com, 1 @@ -123601,8 +123777,9 @@ rebsumner.com, 1 rebtoor.com, 0 rebuga.com, 1 +rebuild96.ru, 1 rebull.fr, 1 -rebure.com, 1 +rebure.com, 0 rebus.support, 1 rebusfarm.net, 1 reby.cf, 1 @@ -123671,7 +123848,6 @@ reckord-bau.de, 1 reckord.org, 1 reclaimmysparkle.com, 1 -reclaimyourface.eu, 1 reclamejagers.nl, 1 reclamewereldsmp.eu, 1 reclinerfactory.com, 1 @@ -123770,7 +123946,6 @@ red-trigger.net, 1 red-wine.tk, 1 red031000.com, 1 -red1it.net, 1 red2fred2.com, 1 redaa.org, 1 redable.nl, 1 @@ -123788,7 +123963,6 @@ redcandycane.tk, 1 redcapital.cl, 1 redcardinal.tk, 1 -redcarnationhotels.com, 1 redcarpetmonday.com, 1 redcatrampageforum.com, 1 redcedar.gov, 1 @@ -123799,6 +123973,7 @@ redcode-web.design, 1 redcoded.com, 1 redcone.net, 1 +redconsultant.com, 1 redcontralarepresion.org, 1 redcorus.com, 1 redcreek.tk, 1 @@ -123835,6 +124010,7 @@ redenvelope.co, 1 redes-neuronales.tk, 1 redeyeguatemala.tk, 1 +redeyenetworks.com, 1 redfish.tk, 1 redflare.com.au, 1 redfog.com, 1 @@ -123844,7 +124020,7 @@ redfox-media.org, 1 redfoxmarketiing.com, 1 redfoxwebdesign.com.au, 1 -redfrogbeach.com, 1 +redfrogbeach.com, 0 redgatesoftware.co.uk, 1 redgeek.cf, 1 redgeek.ga, 1 @@ -123930,7 +124106,6 @@ redsequence.com, 1 redshank-largeformat.co.uk, 1 redshell.pw, 1 -redshiftcybersecurity.co.za, 1 redshoeswalking.net, 1 redsiege.com, 1 redsift.com, 1 @@ -123967,6 +124142,7 @@ reduktorntc-k.com.ua, 1 redulla.com, 1 redunion.tk, 1 +redusa.com, 1 redux.show, 1 redvau.lt, 1 redvent-decor.ru, 1 @@ -124010,6 +124186,7 @@ reentrycenterofocala.com, 1 reerguer.pt, 1 rees-carter.net, 1 +reesefortraviscounty.org, 1 reesmichael1.com, 1 reeson.at, 1 reeson.de, 1 @@ -124040,7 +124217,6 @@ refernet.de, 1 referralforest.com, 1 referrer.website, 1 -refettoriogastromotiva.org, 1 reffect.io, 1 refillthecity.eu, 1 refinedimagelawnlandscape.ca, 1 @@ -124179,7 +124355,6 @@ regentsh.com, 1 regenwaterput.com, 1 regex.bingo, 1 -regg.ae, 1 reggaesumfest.com, 0 reggaexplosion.tk, 1 reggea.tk, 1 @@ -124266,9 +124441,10 @@ rehasport-informationen.de, 1 rehasport-marketing.de, 1 rehasportwelt.de, 1 -rehau-ua.com, 1 rehazonaliftservice.nl, 1 +rehena.com, 1 reher.pro, 1 +rehiring.com, 1 rehive.com, 1 rehoboth-hollandscheveld.nl, 1 rehobothbeachde.gov, 1 @@ -124288,7 +124464,6 @@ reiciunas.lt, 1 reidasbombas.com, 1 reidasmalas.com.br, 1 -reidasofficial.lt, 1 reidopecalcados.com.br, 1 reidostorrents.com, 1 reidrice.com, 1 @@ -124334,7 +124509,6 @@ reisdemuthwiltgen.com, 1 reisebuero-baader.de, 1 reisen.ga, 1 -reisenbauer.at, 1 reisenbauer.ee, 0 reiseziel-hiddensee.de, 0 reiseziele.tk, 1 @@ -124468,13 +124642,11 @@ relsak.cz, 0 reltio.com, 1 relution.io, 1 -relvan.com, 1 relvan.tech, 1 relycomply.com, 1 relyhost.io, 1 relyon-plasma.cn, 1 relyon-plasma.com, 1 -relyonnutec.com, 1 rem0te.net, 1 remain.london, 1 remake-projects.tk, 1 @@ -124518,7 +124690,7 @@ remissan.com, 1 remissionclinic.com, 0 remitano.com, 1 -remmeltbrink.nl, 1 +remix64.com, 1 remmik.com, 1 remminhdang.com, 1 remo.health, 1 @@ -124581,12 +124753,13 @@ remyb.me, 1 remyphotography.fr, 1 remyroguevolution.tk, 1 +remzi.info, 1 renaatsioncke.com, 1 renaissanceproperty.ie, 1 renalco.ch, 1 renard-pierne-avocats.fr, 1 renascercorretora.com.br, 1 -renascerstp.org, 1 +renascerstp.org, 0 renate-kretschmer.de, 1 renate-lietz.de, 1 renateonline.tk, 1 @@ -124600,6 +124773,7 @@ renaultzambezi.co.za, 1 rencontredemerde.fr, 1 rendall.tv, 1 +rendatododia.xyz, 1 renderferma-cash.tk, 1 renderloop.com, 1 renderstack.io, 1 @@ -124639,6 +124813,8 @@ renewcleaningservices.net, 1 renewedhr.com, 0 renewgsa.com, 1 +renewittke.ch, 1 +renewittke.com, 1 renewmdcoastal.com, 1 renewmedispa.com, 0 renewpfc.com, 1 @@ -124646,6 +124822,7 @@ renjyaku-dental.com, 1 renkenlaw.com, 1 renklihobi.com, 1 +renner-und-koenigk.de, 1 rennes-bachata.com, 1 rennes-blues.com, 1 rennes-danse-africaine.com, 1 @@ -124680,16 +124857,20 @@ renovation-interieur.paris, 1 renovation-maison-93.fr, 1 renovation-maison.paris, 1 +renovationen.com, 1 +renovationmp.fr, 1 renovationsatl.com, 1 renovationsf.cf, 1 renovationsf.ga, 1 renovera.be, 1 renovum.es, 1 renpac.org, 1 +renren.pro, 0 renrenche.com, 0 rens.nu, 1 rent-a-c.io, 1 rent-a-coder.de, 1 +rent-bot.am, 1 rent-car.ga, 1 rent-to-own-home.ga, 1 rent.ie, 1 @@ -124741,6 +124922,7 @@ renvisegrad.hu, 1 renwerks.com, 1 renxinge.cn, 0 +renyiyou.com, 1 renyu.ai, 1 reo.gov, 0 reoccupyportugal.com, 1 @@ -124754,6 +124936,7 @@ repairtly.com, 0 repairtoolbox.com, 1 repalriley38.com, 1 +repan.com, 1 repaper.org, 1 reparacionesdecalefones.com, 1 reparacionmovilesmurcia.com, 1 @@ -124816,6 +124999,7 @@ reposaarenkuva.fi, 1 reposeed.dev, 1 reposeed.org, 1 +represa.com, 1 represent.us, 1 represii.net, 1 reproaccess.gov, 1 @@ -124908,7 +125092,6 @@ reservationsair.com, 1 reservecalifornia.com, 1 reservetonshift.com, 1 -reservevaparks.com, 1 reservilaisliitto.fi, 1 reset12.co.uk, 1 resfriatech.com.br, 1 @@ -124921,7 +125104,6 @@ residence-simoncelli.com, 1 residencedesign.net, 1 residencemagazine.se, 1 -residencepanoramique.com, 0 residencescauri.it, 1 residency-bond.eu, 1 resident-evil.tk, 1 @@ -124934,6 +125116,7 @@ residentialpressurewashingchicago.com, 1 residentinfo.net, 1 residenz-wuerzburg.de, 1 +residenzaperanziani.it, 1 residualpayments.com, 1 resigno.tk, 1 resilience.sh, 1 @@ -124948,7 +125131,6 @@ resinflooringcompany.com, 1 resist.bot, 1 resistancebooks.com, 1 -resistav.com, 1 resize2fs.de, 0 resju21.ch, 0 resmigazete.gov.tr, 1 @@ -125036,7 +125218,6 @@ restaurantcleaningchicago.com, 1 restaurantdetgulepakhus.tk, 1 restaurantedonono.com.br, 1 -restauranteplatoubeda.es, 1 restaurantesimonetti.com.br, 1 restaurantguru.com, 1 restauranthugo.nl, 1 @@ -125044,6 +125225,7 @@ restaurants.sg, 1 restauranttester.at, 1 restaurantzumsternen.ch, 1 +restauratori.it, 1 restauratorin-maubach-dresden.de, 1 restaured.net, 1 restauriedili.roma.it, 1 @@ -125051,18 +125233,18 @@ rester-a-domicile.ch, 1 rester-autonome-chez-soi.ch, 1 restic.net, 1 -restior.com, 1 restioson.me, 1 restless.it, 1 restlesseshop.com, 1 restlesslegs.tk, 1 resto-renaissance.be, 1 +restock.ru, 1 restoclub.ru, 1 restomojo.tk, 1 restoran.cf, 1 restoranlibertas.com, 1 restorationphotos.tk, 1 -restorebodybalance.net, 1 +restorebodybalance.net, 0 restorehair.com, 1 restorerivers.eu, 1 restorers.org.uk, 1 @@ -125077,7 +125259,6 @@ resume4dummies.com, 1 resumecompanion.com, 1 resumegenius.com, 1 -resumegets.com, 1 resumehelp.com, 1 resumehelp.io, 1 resumelibros.tk, 1 @@ -125106,6 +125287,8 @@ retailmarket.net, 1 retailnext.net, 1 retailroadshow.com, 1 +retailzpos.com, 1 +retalicecream.us, 1 retaque.tk, 1 retarara.tk, 1 retard.ca, 1 @@ -125116,7 +125299,6 @@ retetop95.it, 0 reth.ch, 1 rethinkingchurch.net, 1 -rethinkmi.com, 1 rethymnorooms.tk, 1 retia.cloud, 1 reticle.cf, 1 @@ -125137,6 +125319,7 @@ retiringifa.co.uk, 1 retivabet.com, 1 retmig.dk, 1 +retmus.com, 1 reto.ch, 0 reto.io, 1 retohaeberli.com, 0 @@ -125159,6 +125342,7 @@ retrocdn.net, 1 retrofitness.com, 1 retrogamenews.tk, 1 +retrogarb.co.uk, 1 retroguarda.pt, 1 retrohousewifegoesgreen.com, 1 retrojar.top, 1 @@ -125248,7 +125432,6 @@ reviewheaven.ml, 1 reviewku.id, 1 reviews.anime.my, 0 -reviewskia.com, 1 reviewsonline.ml, 1 reviewsverdict.com, 1 revijahak.hr, 1 @@ -125334,6 +125517,7 @@ rewire.com, 1 rewirenewsgroup.com, 1 rewisto.de, 1 +rewolucja.com, 1 rewolucja1905.online, 1 rework.fm, 1 rewoven.au, 1 @@ -125387,7 +125571,7 @@ rfasafedrop.org, 1 rfbcnet.tk, 1 rfbz.ca, 1 -rfc3161.top, 1 +rfc3161.top, 0 rfdirectory.tk, 1 rfec.com, 1 rfeif.org, 1 @@ -125449,7 +125633,6 @@ rhelevate.com, 1 rhese.net, 1 rhetorical.ml, 0 -rhetorik.com, 1 rhettabutler.com, 1 rhetthenckel.com, 1 rheumatoidarthritis.net, 1 @@ -125480,10 +125663,10 @@ rhona.pe, 1 rhonni.com, 1 rhost.nl, 1 +rhris.com, 1 rhrplumbing.com, 0 rhsb.ch, 1 rhswl.com, 1 -rhtube.us, 1 rhubarb.land, 1 rhumblineadvisers.com, 1 rhwebdesigns.co.uk, 1 @@ -125520,8 +125703,6 @@ riba-lov.ga, 1 ribafs.tk, 1 ribapo.com, 1 -ribar.com, 1 -ribblu.com, 1 ribeirocavalcante.com.br, 1 ribella.net, 1 ribfixation.com, 1 @@ -125542,7 +125723,6 @@ ricardotorres.com.pt, 1 ricassiocosta.me, 1 ricaud.me, 1 -ricaurteingenieros.net, 1 riccardogiannetto.com, 1 ricciardoantoninotindaro.art, 1 riccocoffeeco.com, 1 @@ -125608,6 +125788,7 @@ richies.uk, 1 richiesroom.com, 1 richieste.it, 1 +richini.com, 1 richlandcenterwi.gov, 1 richlandcountyoh.gov, 1 richlandcountywi.gov, 1 @@ -125678,7 +125859,6 @@ ridetour.ru, 1 ridewayexpress.com, 1 ridewithloop-url.com, 1 -rideworks.com, 0 ridgecrestca.gov, 1 ridgefieldct.gov, 1 ridgelysradar.com, 1 @@ -125712,6 +125892,7 @@ riffable.com, 1 riffnation.tk, 1 riffreporter.de, 0 +rifiutozero.it, 1 riflajelemn.ro, 1 rifledesign.co.uk, 1 rift.pictures, 1 @@ -125779,7 +125960,6 @@ rijsinkunst.nl, 1 rik.onl, 1 rikardhallberg.com, 1 -rikels-slaapexperts.nl, 1 rikkarlskoga.se, 1 riklewis.com, 1 rikmeijer.nl, 1 @@ -125898,11 +126078,12 @@ riscone.info, 1 riscoscommunity.org, 1 riscoshardware.tk, 1 +riscure.com, 0 rise-technologies.com, 1 rise.ae, 1 rise.com, 1 -rise.global, 1 rise.md, 1 +riseabovecredit.com, 1 riseandrank.com, 0 risecannabis.com, 1 risecannabis.io, 1 @@ -125920,7 +126101,6 @@ risi-china.com, 1 risilience.com, 1 rising-cubers.tk, 1 -risings.ca, 1 risingsoftware.com, 1 risingtidecapital.org, 1 risitas.com.ar, 1 @@ -125930,7 +126110,7 @@ riskiq.com, 0 riskledger.com, 1 riskmitigation.ch, 1 -risksciences.com, 1 +risko.com, 1 riskstudio.com, 1 riskxchange.co, 1 risky.services, 1 @@ -125964,7 +126144,6 @@ ritacaldeira.com.br, 1 ritaescortsdelhi.com, 1 ritaohio.gov, 1 -ritaora.com, 1 ritas.tk, 1 ritchieneville.tk, 1 rite-tech.us, 1 @@ -125976,12 +126155,14 @@ ritirocalcinacci.roma.it, 1 ritirocalcinacci.viterbo.it, 1 ritma.ca, 1 +ritmoloco.fr, 1 ritmos.tk, 1 ritmuzic.ml, 1 ritoge.com, 1 ritoner.it, 1 ritos.ru, 1 ritrium.com, 1 +ritsen.com, 1 ritsf.com, 1 rittau.org, 1 rittersprinting.com, 1 @@ -125990,7 +126171,6 @@ ritual.ml, 0 ritunewasser.ch, 1 ritus.md, 1 -ritzcarltonclub.com, 1 ritzlux.com.tw, 1 riv.ar, 1 rivaforum.de, 1 @@ -126014,8 +126194,6 @@ riverlandenergy.com, 1 riverlea.com.au, 1 riverlinegaragedoor.com, 1 -riveroakaa.com, 0 -riveroaksdentaljax.com, 1 riverotravel.cl, 1 riverpark.casa, 1 riverridgecc.com, 1 @@ -126175,6 +126353,7 @@ roadaccident.tk, 1 roadandtransport.ga, 1 roadbikes.tk, 1 +roadbridge.com, 1 roaddoc.de, 1 roadguardiansoftware.com, 1 roadkillcustoms.com, 1 @@ -126223,7 +126402,6 @@ robert-flynn.de, 1 robert-reisemobil.de, 1 robert-wiek-transporte.de, 1 -robertattfield.com, 1 robertayamashita.com.br, 1 robertbln.com, 1 robertbo.es, 1 @@ -126259,7 +126437,6 @@ robertsoncountytn.gov, 1 robesoncountync.gov, 1 robgorman.ie, 1 -robhorstmanshof.nl, 1 robi-net.it, 1 robicue.com, 0 robin-kusch.de, 1 @@ -126323,7 +126500,6 @@ roboticsummit.com.br, 1 robotimeshop.com, 1 robotkvarnen.se, 1 -robotnet.dk, 1 roboto.social, 1 robotrewrite.com, 1 robots-ju.ch, 1 @@ -126333,6 +126509,7 @@ robottip.com, 1 robowars.ga, 1 robpol86.com, 1 +robpot.com, 1 robs-info.eu, 0 robsamtechnology.com, 1 robspc.repair, 1 @@ -126448,9 +126625,9 @@ rockmn.gov, 1 rocknbluestoday.tk, 1 rocknreports.com, 1 -rockpesado.com.br, 1 rockporttx.gov, 1 rockportusa.com, 1 +rockpov.com.br, 1 rockptx.com, 1 rockraiders.rocks, 1 rockrider.tk, 1 @@ -126492,7 +126669,6 @@ rodeohire.com, 1 rodeosales.co.uk, 1 roder-skarf.se, 1 -rodgersawnings.com, 1 rodichi.net, 1 rodin.tk, 1 rodinka.tk, 1 @@ -126669,6 +126845,7 @@ rolotrans.ml, 1 rolstoelappartementen.tk, 1 rolzzandik.cf, 1 +roma-lindenhof.de, 1 roma-servizi.it, 1 romab.com, 1 romacoffee.co.nz, 1 @@ -126695,7 +126872,6 @@ romanos.tk, 1 romanovka.ml, 1 romanpavlodar.kz, 1 -romantest.nl, 1 romanticdate.ga, 1 romanticdate.gq, 1 romanticdate.ml, 1 @@ -126735,6 +126911,7 @@ romeoferraris.com, 1 romeoijulio.tk, 1 romerska-ringar.se, 1 +romesite.com, 1 rommelhuntermusic.tk, 1 rommelmark.nl, 1 rommelwood.de, 1 @@ -126752,23 +126929,22 @@ ronasit.com, 1 ronbongamis.com, 1 ronc.ru, 1 +ronchonrongeurs.com, 1 roncoutilities.com, 1 ronda.tk, 1 -rondekker.com, 1 -rondekker.nl, 1 +rondekker.nl, 0 rondine.cn, 1 rondommen.nl, 1 rondouin.fr, 1 ronem.com.au, 1 ronenlaz.com, 1 ronforeman.com, 0 -ronghexx.com, 0 roninathletics.com, 1 roninf.ch, 1 roninitconsulting.com, 1 roninmotorsports.net, 1 ronkahlon.com, 1 -ronkilgarlin.com, 0 +ronkeesom.nl, 1 ronlinemarketing.com, 1 ronniegane.kiwi, 1 ronnylindner.de, 1 @@ -126905,7 +127081,6 @@ rosabrasiv.ga, 1 rosacosmos.tn, 1 rosaflorbijoux.com.br, 1 -rosakkreditatsiya-forum.ru, 1 rosalinda.cl, 1 rosalindturner.co.uk, 1 rosalopezcortes.tk, 1 @@ -127069,6 +127244,7 @@ rotunneling.net, 1 rouair.com, 1 rouamatfashion.gr, 1 +roueneternalmagic.fr, 1 rougechocolat.fr, 1 rougeetblanc.tk, 1 roughcopy.com.au, 1 @@ -127115,6 +127291,7 @@ rovid.link, 1 rovin.tk, 1 rovno-news.ru, 1 +rowan.fyi, 1 rowancasting.ie, 1 rowancounty911.com, 1 rowancounty911.org, 1 @@ -127141,8 +127318,10 @@ roxville.tk, 1 roxyfroxy.com, 1 roy-buehring.de, 1 +roy-space.com, 1 roy.wang, 1 royacshop.com, 1 +royal-coatings.com, 1 royal-flor.be, 1 royal-flowers.dp.ua, 1 royal-knights.tk, 1 @@ -127361,7 +127540,6 @@ rsridentassist.com, 1 rsrnd.org, 1 rsrural.com.br, 1 -rsrv.fr, 1 rss-reader.net, 1 rss-reader.org, 1 rss.org.uk, 1 @@ -127389,7 +127567,6 @@ rswm.in, 1 rt-inc.com, 1 rt-praxis-barbara-scheibel.de, 1 -rt.com, 1 rt22.ch, 1 rta-aus.net, 1 rtarabic.com, 1 @@ -127496,7 +127673,6 @@ rubens.cloud, 0 rubensalgado.com, 1 rubenschulz.nl, 1 -rubenshotel.com, 1 rubenshuis.be, 1 rubenslikkarchive.com, 1 rubensteinphotography.com, 1 @@ -127574,6 +127750,7 @@ ruexpert.cf, 1 ruf888.com, 1 rufartabs.ml, 1 +rufei.wang, 1 ruffbeatz.com, 1 ruffchamp.com, 1 ruffcuts.com.au, 1 @@ -127701,7 +127878,6 @@ runmyqubit.com, 1 runmyqubit.de, 1 runmyvillage.com, 1 -runner.az, 1 runnerslab.com, 1 running-tiger.de, 1 runningcitadel.com, 1 @@ -127720,7 +127896,6 @@ ruobr.ru, 1 ruonavaara.fi, 1 ruoskachile.tk, 1 -ruoungoaihaigiacat.com, 1 rupeek.com, 1 rupeespeaks.tk, 1 rupeevest.com, 1 @@ -127828,7 +128003,6 @@ russianpunkrock.tk, 1 russianrandom.ru, 1 russiantranslation.tk, 1 -russinfo.net, 1 russisch.tk, 1 russischblauzuchter.de, 1 russograffix.tk, 1 @@ -127841,7 +128015,6 @@ rustamkhanko.gq, 1 rustarg.com, 1 rustargentina.com, 1 -rustdesk.com, 1 rustfactory.io, 1 rustfu.rs, 1 rusticus-consulting.de, 0 @@ -127879,6 +128052,7 @@ ruthmarques.com.br, 1 ruthstas.com, 1 ruthstasiniewicz.com, 1 +rutice.love, 1 rutiger.com, 1 rutika.ru, 1 rutlandcountyswac.org, 1 @@ -127910,7 +128084,6 @@ rvem.org, 1 rvender.cz, 1 rvf6.com, 1 -rvgatelier.be, 1 rvmfm.com, 1 rvoigt.eu, 1 rvr.org, 1 @@ -127941,7 +128114,6 @@ rx-diet.com, 0 rx-safety.com, 0 rx2go.com, 1 -rxbn.de, 1 rxbusiness.com, 1 rxcarbon.com, 1 rxcom.net, 1 @@ -127975,7 +128147,6 @@ ryanparman.com, 1 ryanrichardwalker.com, 1 ryansmithphotography.com, 1 -ryanwordpress.com, 1 ryazagro.ru, 1 ryazan-news.net, 1 ryazan-region.ru, 1 @@ -128007,7 +128178,6 @@ ryerson.com, 1 ryfma.com, 1 ryger.no, 1 -rygiel.com.pl, 0 rylin.net, 1 rymanhp.com, 1 rymanow.tk, 1 @@ -128131,7 +128301,6 @@ s6jl.com, 1 s6n.jp, 0 s6o.de, 1 -s82365.com, 1 s88.com, 1 s8a.me, 1 s92.cloud, 1 @@ -128144,6 +128313,7 @@ sa-blog.net, 1 sa-mp.me, 1 sa-mp.ro, 1 +sa-refer.nhs.uk, 1 sa-stu.com, 1 sa-studio.chat, 1 sa-studio.ltd, 1 @@ -128160,6 +128330,7 @@ saaremaa.tk, 1 saaricraft.ml, 1 saarloosschilderwerken.nl, 1 +saarteliinid.ee, 1 saas-timessg.com, 1 saas.de, 1 saasintranet.au, 1 @@ -128194,6 +128365,7 @@ sabinehorelt.de, 1 sabiniambientes.com.br, 1 sabinov.sk, 1 +sabiote.com, 1 sabiru-develop.web.id, 1 sabisandsgamereserve.com, 1 sablanout.com, 1 @@ -128229,7 +128401,6 @@ sacha-botz.com, 0 sacharidovejednotky.eu, 1 sachasmets.be, 1 -sachbharat.in, 1 sachi.lk, 1 sachiepvien.net, 1 sachinchauhan.ml, 1 @@ -128339,6 +128510,7 @@ safechoicestas.org.au, 1 safecircuitelectric.com, 1 safeclima.com, 1 +safecode1.com, 1 safecoin.tech, 1 safecso.cf, 1 safedatabasesystems.com, 1 @@ -128352,7 +128524,6 @@ safeguardhosting.ca, 1 safeguardproperties.com, 1 safeguardpss.com, 1 -safehealthcenter.com, 1 safehero.com, 1 safeheron.com, 0 safeheron.vip, 1 @@ -128383,7 +128554,6 @@ safes24.com, 1 safesail.pt, 1 safescif.com, 1 -safesearchs.com, 1 safesecuretrusted.com, 1 safesecurevital.ca, 1 safesmartvent.com, 1 @@ -128395,7 +128565,6 @@ safethishome.com, 1 safetica.lt, 1 safetoopen.com, 1 -safetrainingservices.co.uk, 1 safetrax.in, 1 safety-in-construction.tk, 1 safety.co.nz, 1 @@ -128411,6 +128580,7 @@ safetyrisk.net, 0 safetysite.tips, 1 safetysource.co.nz, 1 +safetytools.no, 1 safevault.org, 1 safevisit.com.au, 1 safewatchsecurity.ie, 1 @@ -128456,6 +128626,7 @@ sagicorlife.com, 1 sagicorlifeusa.com, 1 sagilityhealth.com, 1 +saginawtx.org, 1 sagitta.hr, 1 saglik-haberleri.tk, 1 saglikhaber.tk, 1 @@ -128487,6 +128658,7 @@ sahibinden.com, 1 sahih.nl, 1 sahilbahl.com, 1 +sahilten.com, 1 sahinozgenhukuk.com, 1 sahinpierresnaturelles.com, 1 sahkotyot.eu, 1 @@ -128511,7 +128683,6 @@ saifoundation.in, 1 saifoundation.org, 1 saiful.web.id, 1 -saigonflowers.com, 1 saigonland24h.vn, 1 saigonstar.de, 1 saijanmasthan.org, 1 @@ -128606,6 +128777,7 @@ sairlerimiz.tk, 1 sairus.fr, 1 saisandesh.org, 1 +saisao.com, 1 saisecure.net, 1 saiserve.xyz, 1 saiserver.net, 1 @@ -128614,7 +128786,6 @@ saisyuusyou-omiya.com, 1 saisyuusyou-takasaki.com, 1 saisyuusyou-utsunomiya.com, 1 -sait.at, 1 sait.health, 1 saitapovan.com, 1 saitas.net, 1 @@ -128663,7 +128834,7 @@ sakuradental.org, 1 sakuramassagenj.com, 1 sakurapalace.tk, 1 -sakurapink.top, 1 +sakurapink.top, 0 sakuraspanj.com, 1 saladgo.id, 1 saladin.vn, 1 @@ -128710,7 +128881,7 @@ saleem.cf, 1 salegor.tk, 1 salekaz.ru, 1 -salemcountynj.gov, 1 +salemcountynj.gov, 0 salemma.gov, 1 salempress.com, 1 salensmotors-usedcars.be, 1 @@ -128786,8 +128957,8 @@ salmaghanim.com, 1 salman.agency, 1 salmanravoof.com, 1 +salmanshafi.net, 1 salmati.de, 1 -salmedia.us, 1 salmelainenwalter.tk, 1 salminencrane.tk, 1 salmo-rybak.ru, 1 @@ -128814,6 +128985,7 @@ salone-mio.com, 1 salonestella.it, 1 saloni.com, 1 +salonia.it, 1 saloniestate.ml, 1 saloniseh.com, 1 salonist.io, 1 @@ -128833,7 +129005,7 @@ saltandlight.sg, 1 saltcave.gq, 1 saltedfish.network, 1 -saltedfishes.com, 1 +saltedfishes.com, 0 saltedge.com, 1 saltedpasta.com, 1 saltercane.com, 0 @@ -128883,7 +129055,6 @@ salzamt.tk, 1 salzburg-erfahren.at, 1 salzburg-verkehr.at, 1 -salzburgrad.at, 1 salzburgsfinest.tk, 1 salzerperu.com, 1 salzmann.solutions, 1 @@ -128915,7 +129086,6 @@ samba.org, 1 sambeso.net, 1 sambi.se, 1 -sambot.ru, 1 sambot22.tk, 1 sambuchanan.tk, 1 sambull.org, 1 @@ -128947,7 +129117,6 @@ sametcanaz.tk, 1 sameteem.com, 1 sametimetomorrow.tk, 1 -sameworks.com, 1 samfw.com, 1 samhall.se, 1 samhsa.gov, 1 @@ -128961,8 +129130,10 @@ samilyanov.tk, 1 samim.io, 1 samin.tk, 1 +samina.com, 1 samir-software.tk, 1 samiratv.tk, 1 +samisallinen.fi, 1 samishnation.gov, 1 samisoft.ir, 1 samiysok.cf, 1 @@ -129004,6 +129175,8 @@ samquick.me.uk, 1 samroelants.com, 1 samsara.nl, 1 +samsat.info, 1 +samsatcorner.com, 1 samscollection.in, 1 samsebe.ml, 1 samsebe.tk, 1 @@ -129023,14 +129196,12 @@ samuelebencini.it, 1 samuelgd.com, 1 samuelgiger.com, 1 -samuelharmon.com, 1 samueljackhill.com, 1 samuelkeeley.com, 1 samuelkyalo.tk, 1 samuelphotos.com, 1 samuels-graphics.tk, 1 samuelsmithsbrewery.co.uk, 1 -samuelsuiri.info, 1 samuidiving.net, 1 samuiluxuryboats.com, 1 samuirehabcenter.com, 1 @@ -129041,7 +129212,6 @@ samusil.org, 1 samuvit.pt, 1 samvanderkris.com, 1 -samwebshop.nl, 1 samwelek.co.uk, 1 samwilberforce.com, 1 samwrigley.co.uk, 1 @@ -129104,6 +129274,7 @@ sand66.cc, 1 sandag.gov, 1 sandairephotography.com, 1 +sandbar.ai, 1 sandbar.money, 1 sandbox-infakt.pl, 1 sandbox-simplevisa.net, 1 @@ -129122,7 +129293,7 @@ sandersonfarms.com, 1 sanderspies.com, 1 sanderstaxpro.com, 1 -sandervanderstap.nl, 0 +sandervanderstap.nl, 1 sandesh.tk, 1 sandetailing.ru, 1 sandfield.co.nz, 1 @@ -129215,6 +129386,7 @@ sanidadnaval.cl, 1 sanierungskonzept.pro, 1 sanificazioni.roma.it, 1 +sanignaciomun.com, 1 sanikapandit.com, 1 sanilaccounty.gov, 1 sanilactownshipmi.gov, 1 @@ -129263,6 +129435,7 @@ sanne-content.de, 1 sanneburen.nl, 1 sannefoltz.com, 1 +sannhakhoa.vn, 1 sannikfk.gq, 1 sanodent-focsani.ro, 1 sanodent.com.ua, 1 @@ -129369,7 +129542,6 @@ santoscarmelitas.tk, 1 santosdecordoba.tk, 1 santoshpandit.com, 1 -santosmanjares.com.mx, 1 santral.org.tr, 1 santsadurni.cat, 1 santswebdesign.com, 1 @@ -129378,6 +129550,7 @@ sanukarlos.tk, 1 sanvicenteferrer.net, 1 sanweb.info, 1 +saochang.com, 1 saojudastadeu.edu.br, 1 saolucasimagem.com.br, 1 saoneth.pl, 1 @@ -129401,7 +129574,6 @@ sapien-ci.com, 1 sapien.com, 1 sapience.com, 1 -sapienml.com, 1 sapienz.tk, 1 sapienza-eclipse.com, 1 sapienzaconsulting.com, 1 @@ -129437,6 +129609,7 @@ saqara.com, 1 saracajner.com, 1 saracenmarkets.com, 1 +saradahentai.com, 1 sarafanchik.tk, 1 sarafanchiki.tk, 1 sarafani.tk, 1 @@ -129498,6 +129671,7 @@ sardegnachiama.it, 1 sardegnarifiuti.it, 1 sardegnatirocini.it, 1 +sardenha.com, 1 sardine.tk, 1 sardinhagarcia.pt, 1 sardinianvillas.co.uk, 1 @@ -129525,7 +129699,6 @@ sariyer.bel.tr, 1 sarjakuvakauppa.fi, 1 sarjas.tk, 1 -sarkaridomain.com, 1 sarkarinaukriworld.net, 1 sarkazam.ml, 1 sarkchat.cf, 1 @@ -129572,6 +129745,7 @@ sashka.com.ua, 1 sashleighaust.com, 1 sashok724.net, 1 +sashroy.shop, 1 sashware.com, 1 sasioglu.co.uk, 1 sasken.com, 1 @@ -129586,6 +129760,7 @@ sastamalandemarit.fi, 1 sastd.com, 1 sasthyaseba.com, 1 +sasuhina.com, 1 sasyabapi.com, 1 sat-kw.net, 1 sat-p.tk, 1 @@ -129640,7 +129815,6 @@ satsukii.moe, 1 satsumi.tk, 1 satta-company.tk, 1 -sattamatka420.mobi, 0 sattaresult.net, 1 sattaresult.net.in, 1 satuenergy.com, 1 @@ -129664,7 +129838,6 @@ saudia.com, 1 saudiairlines.com, 1 saudidiesel.com.sa, 1 -saudiembassy.net, 1 saudiglasses.com, 1 saudinews.ml, 1 saue.edu.ee, 1 @@ -129679,7 +129852,6 @@ saugatuckvacationhomerental.com, 1 saulchristie.com, 1 saulsplace.com, 0 -saulsplacehealth.com, 1 saulsplacewebdesign.com, 1 saultairport.com, 1 saultdefencelaw.ca, 1 @@ -129690,7 +129862,6 @@ saunatech.pl, 1 saunatime.jp, 1 saunavoordeel.nl, 1 -saunders-seismic.com, 1 sauniertec.com, 1 sauravdas.in, 1 saurel.me, 1 @@ -129712,7 +129883,6 @@ savantcare.com, 1 savart.blog, 1 savart.pro, 1 -savartjournal.org, 1 savatha.tk, 1 savbus.com, 1 savbus.net, 1 @@ -129755,6 +129925,7 @@ savewildcats.life, 1 savewithupgrade.com, 1 saveworldpets.ga, 1 +saveyourbusiness.co.uk, 1 saveyourhouse.tk, 1 savicki.co.uk, 1 savicki.cz, 1 @@ -129923,7 +130094,6 @@ sc019.com, 1 sc2labs.com, 1 sc2pte.eu, 1 -sc5.jp, 1 sca-webdesign.be, 1 scadanews.net, 1 scaffalature.roma.it, 1 @@ -129978,7 +130148,6 @@ scandocs.ai, 1 scaner.ga, 1 scangeo.net, 1 -scanigma.com, 1 scanii.com, 1 scanmailx.com, 1 scanmy.email, 1 @@ -130192,8 +130361,10 @@ schluesseldienstzentrum.de, 1 schmaeh-coaching.ch, 1 schmatloch.cloud, 1 +schmeckaner.org, 1 schmedes-gmbh.de, 1 schmelzle.io, 1 +schmetzneedles.co.uk, 1 schmicktools.com.au, 1 schmidal-et-fils.fr, 1 schmidt-fri.de, 1 @@ -130230,6 +130401,7 @@ schnyder-werbung.ch, 0 schody-rozycki.pl, 1 schoenstatt-fathers.link, 1 +schoenstatt-fathers.us, 1 schoenstatt.link, 1 schoental.de, 1 schoepski.de, 1 @@ -130299,7 +130471,9 @@ schoolscapesuk.com, 1 schoolshow.nl, 1 schoolsonice.nl, 1 +schoolstreaks.com, 1 schooltransport.com.au, 1 +schoolyogainstitute.com, 1 schoonheidssalon-annelies-santpoort.nl, 1 schoonheidssalon-annelies-velserbroek.nl, 1 schoop.me, 1 @@ -130363,6 +130537,7 @@ schulung-eup.de, 1 schulz-partner-rechtsanwaelte.de, 1 schulze-gunst.de, 1 +schulzentrum.com, 1 schuman.tk, 1 schumanandmonnet.eu, 1 schumannji.de, 1 @@ -130371,6 +130546,7 @@ schutte.tk, 1 schutterij-sintsebastianus-eys.tk, 1 schutz-vor-schmutz.de, 1 +schutzhuelle.com, 1 schutzkoffer-profilampen.at, 1 schutznetze24.de, 1 schutzwerk.com, 1 @@ -130428,7 +130604,6 @@ science360.gov, 1 scienceasfashion.ga, 1 sciencebase.gov, 1 -sciencedaily.com, 1 scienceeducation.tk, 1 scienceeurope.org, 1 sciencefictionbookclub.org, 1 @@ -130444,6 +130619,7 @@ sciencetoymaker.org, 1 sciencetram.tk, 1 scienceupfirst.com, 1 +scienceway.com, 1 scienceweb.tk, 1 sciencex.com, 1 sciencexpo.org.za, 1 @@ -130458,6 +130634,7 @@ scifisloth.com, 1 scifplus.com, 1 scifsafe.com, 1 +scigacz.pl, 1 scigov.xyz, 1 scijinks.gov, 1 scindustries.it, 1 @@ -130485,6 +130662,7 @@ scmestetic.pl, 1 scmhandling.com, 0 scmitchell.com, 1 +scml.pt, 1 scms.com.my, 1 scn9a.com, 1 scnow.com, 1 @@ -130562,7 +130740,6 @@ scottgalvin.com, 1 scotthelme.co.uk, 1 scotthelmesucks.com, 1 -scottholmesmusic.com, 1 scottipc.com, 1 scottish-paranormal.tk, 1 scottishambulance.com, 1 @@ -130624,7 +130801,6 @@ scrabbleonline.nl, 1 scrambled.online, 1 scrantonmma.com, 1 -scrap-car-removal.ca, 1 scrap.photos, 1 scrap.tf, 1 scrapautobuyer.com, 1 @@ -130764,6 +130940,7 @@ sditinsanutama.sch.id, 1 sdkco.net, 1 sdl.co.at, 1 +sdmed.com, 1 sdmetrofire.gov, 1 sdmmp.com, 1 sdn.cz, 1 @@ -130772,6 +130949,7 @@ sdocast.com, 1 sdp-grupopit.com, 1 sdp.training, 1 +sdpay.com, 1 sdpokieswiry.ga, 1 sdpokieswiry.tk, 1 sdrp.org, 1 @@ -130788,6 +130966,7 @@ sdut.gq, 1 sdvx.net, 0 sdyzmun.club, 1 +sdzp.com, 1 se-booster.com, 1 se-live.org, 1 se-theories.org, 1 @@ -130798,12 +130977,12 @@ se2.com, 1 se6.io, 1 sea-airinternational.tk, 1 +sea-force.com.au, 1 sea-godzilla.com, 1 sea.global, 1 sea.zapto.org, 1 seaapio.info, 1 seaborn.top, 0 -seachef.it, 1 seadrive.cc, 1 seadus.ee, 1 seaemporium.com, 1 @@ -130882,7 +131061,7 @@ searx.nu, 1 searx.one, 0 searx.org, 1 -searx.ru, 1 +searx.party, 1 searx.run, 1 searx.space, 1 searxng.cf, 1 @@ -130896,7 +131075,6 @@ seasonsof.berlin, 1 seaspecsdals.com, 1 seat61.com, 1 -seatable.io, 1 seatbeltpledge.com, 1 seating.dynv6.net, 1 seatinglane2u.com, 1 @@ -130925,6 +131103,7 @@ seavision.ru, 1 seavisionbeauty.com, 1 seavisionbeauty.it, 1 +seavisiongroup.it, 1 seaworld.com.au, 1 seaworldcarnivale.com.au, 1 seaworldresort.com.au, 1 @@ -130954,11 +131133,13 @@ sebastianhofmann.legal, 1 sebastiantroncoso.tk, 1 sebastianungureanu.com, 1 +sebastianwyder.ch, 1 sebastiaperis.com, 1 sebastien-meric.com, 1 sebasveeke.nl, 1 sebba.tk, 1 sebdat.cloud, 1 +sebeobjevovat.cz, 0 sebeobrana.ml, 1 sebepoznani.eu, 1 seberika.tk, 1 @@ -131051,6 +131232,7 @@ secretservercloud.ca, 1 secretsofuniverse.in, 1 secretstomartialarts.tk, 1 +secretum.tech, 1 secretworld.ml, 1 secretzone.bg, 1 secrium.io, 1 @@ -131207,7 +131389,7 @@ sedaliastpauls.org, 1 sedetc.gob.pe, 1 sedico.mx, 1 -sedicomm.com, 1 +sedicomm.com, 0 sedirector.net, 1 sedkisghairi.com, 0 sedlex.fr, 1 @@ -131221,6 +131403,7 @@ seebetterlab.com, 1 seecat.biz, 1 seecdn.com, 1 +seecdn.net, 1 seecustom.com, 1 seedandleisure.co.uk, 1 seedbox.fr, 1 @@ -131275,6 +131458,7 @@ seezeitlodge-bostalsee.de, 1 sef.co.za, 1 sefan.ru, 1 +sefareshpardeh.com, 1 seferleri.net, 1 sefirot.jp, 1 sefkateli.org.tr, 1 @@ -131346,7 +131530,6 @@ seilgold.de, 1 seimei.is, 1 seimo.cn, 1 -seineoparebrise.fr, 1 seinfeldquote.com, 1 seinolab.jp, 1 seintec-ec.com, 0 @@ -131379,6 +131562,7 @@ seized.gov, 1 seizethedaybrasil.com.br, 1 sejageek.com, 1 +sejambemvindosaofuturo.com.br, 1 sejutaproperti.com, 1 sek.ai, 1 seka-ru.com, 1 @@ -131413,6 +131597,7 @@ selbstverteidigung-catmove.de, 1 selco-himejiminami.com, 1 selcusters.nl, 1 +selea.se, 1 selebrita.ml, 1 selecadm.name, 1 selectables.tk, 1 @@ -131432,7 +131617,6 @@ seleondar.ru, 1 selerix.com, 1 selesnafes.com, 0 -selexgalileo.com, 1 selezionebarbrboguaccero.cf, 1 selezionebarbrboguaccero.ga, 1 selezionebarbrboguaccero.tk, 1 @@ -131472,6 +131656,7 @@ selistina.tk, 1 selkiemckatrick.com, 1 selkirkelementary.com, 1 +sell.is, 1 sell2orbit.com, 1 sellajoch.com, 1 sellbit.io, 1 @@ -131579,6 +131764,7 @@ semplicementelight.com, 1 sempoctet.ca, 1 sempremelhoroficial.com, 1 +sempreupdate.com.br, 1 semps-2fa.de, 1 semps-threema.de, 1 semps.de, 1 @@ -131631,6 +131817,7 @@ senderismoinfantil.tk, 1 senderosdelavida.com, 0 sendex.top, 1 +sendflowers.pk, 1 sendgb.com, 1 sendigperu.com, 1 sendingbee.com, 1 @@ -131712,7 +131899,6 @@ sensorischspelen.nl, 1 sensormatic.bg, 1 sensorshop.ir, 0 -sensorsoft-waterontharder.nl, 1 sensorville.com.br, 1 sensoscientific.com, 1 sensound.ml, 1 @@ -131767,6 +131953,7 @@ seo-smo.tk, 1 seo-srbija.rs, 1 seo-url.tk, 1 +seo.ai, 1 seo.consulting, 1 seo.london, 1 seo.pe, 0 @@ -131796,7 +131983,6 @@ seogeek.nl, 1 seogeky.com, 1 seoghoer.dk, 1 -seogilog.com, 1 seogood.cf, 1 seohackers.fr, 1 seohost.pl, 1 @@ -131929,13 +132115,12 @@ serbanpaun.ro, 1 serbiaonline.tk, 1 serc.ac.uk, 1 -sercanazizoglu.com, 0 +sercanazizoglu.com, 1 sercasindustry.tk, 1 sercoapprenticeships.uk, 1 serdarakyildiz.com, 1 serdarwork.com, 1 serdengolpinar.tk, 1 -serdikacenter.bg, 1 serecoponsillo.it, 1 sereema.com, 1 serele.fr, 1 @@ -131998,6 +132183,7 @@ seriallajna.cz, 1 serialpestirna.cz, 1 serialsemestr.cz, 1 +sericle.com, 1 seriesdatv.pt, 1 seriesfeed.com, 0 seriesgratis.tk, 1 @@ -132023,6 +132209,7 @@ serpinco.com, 1 serptoolsuite.com, 1 serpuhof.ru, 0 +serradiesel.com.br, 1 serralheriaembh.com, 1 serralheriaeseguranca.com.br, 1 serralves.pt, 1 @@ -132172,6 +132359,7 @@ servisebi.ge, 1 servisin.id, 1 servispasaoglu.com.tr, 1 +servispcznojmo.cz, 1 servitel.ga, 1 servitor.cf, 1 servitproducts.com, 1 @@ -132260,11 +132448,13 @@ setkit.net, 1 setmore.com, 1 setof88.com, 1 +setorneinvestidor.net, 1 setphaserstostun.org, 0 settberg.de, 1 setterirlandes.com.br, 1 settimanadellascienza.it, 1 settleapp.co, 1 +settleinestonia.ee, 1 settlingin.ga, 1 setuid.io, 1 setuid0.kr, 1 @@ -132310,9 +132500,9 @@ sevlaser.com, 1 sevocomm.com, 1 sevsey.ru, 1 -sevvven.us, 1 sewalaptopm2i.com, 0 sewardcountyne.gov, 1 +sewasafal.com, 1 sewatec.com, 1 sewavillamurah.tk, 1 sewfarsewgood.uk, 1 @@ -132370,6 +132560,7 @@ sexonr.com, 1 sexonsight.com, 1 sexonwax.com, 0 +sexopolis.gr, 1 sexorzn.red, 1 sexorzn.xyz, 1 sexosintabues30.com, 1 @@ -132415,9 +132606,12 @@ sexystine.net, 1 sexyteens.net, 1 sexyvenushuegel.org, 1 +seychely.com, 1 seyfarth.de, 1 +seyirmuzik.com, 1 seykapuertasautomaticas.com, 1 seymourfanclub.tk, 1 +seymourpowell.com, 1 seynam.cy, 1 seypt.de, 1 seyr.it, 1 @@ -132553,6 +132747,7 @@ sgj0.net, 1 sglazov.ru, 1 sglibellen.de, 1 +sgm-eng.ru, 1 sgn0018.com, 1 sgnation.dk, 1 sgnl.ai, 1 @@ -132605,6 +132800,7 @@ shadefix.co.za, 1 shademid.com, 0 shadeouts.net, 1 +shadesofgray.law, 1 shadesofgrayadr.com, 1 shadesofgraylaw.com, 1 shadex.net, 1 @@ -132622,7 +132818,6 @@ shadowkingdomrecords.com, 1 shadowkitsune.net, 1 shadowknight.tk, 1 -shadowlandconsulting.co.uk, 1 shadowlurker.com.au, 1 shadowmas.ddns.net, 1 shadowmorph.info, 1 @@ -132753,10 +132948,14 @@ shantiyoga.ro, 1 shanwong.com, 1 shanwong.design, 1 +shanxia.com, 1 shanxiapark.com, 1 shanyi.space, 1 shaofu.cf, 1 +shaoguang.com, 1 shaolin-kungfu.tk, 1 +shaoneng.com, 1 +shaoning.com, 1 shaoxia.xyz, 0 shape.pink, 1 shapediver.com, 1 @@ -132765,11 +132964,12 @@ shapesouthcarolina.gov, 1 shapeyourcity.ca, 1 shapeyourcityhalifax.ca, 1 +shaping.cn, 1 sharaf.net, 1 sharanyamunsi.net, 1 sharanyan.com, 1 shararam-card.tk, 1 -sharats.me, 1 +sharats.me, 0 shardanageometries.it, 1 shardbyte.com, 1 share.la, 1 @@ -132824,7 +133024,6 @@ sharine.nl, 1 sharingbipolar.com, 1 sharingcolombia.com, 1 -sharingiscaring.cc, 1 sharingphotos.co, 0 sharisharpe.com, 1 sharix.ml, 1 @@ -132913,7 +133112,6 @@ shear.tk, 1 shearin.pro, 1 shearwaterdental.com, 1 -sheatoz.com, 1 sheboygancountywi.gov, 1 sheboyganfallswi.gov, 1 shechipin.cf, 1 @@ -132980,8 +133178,8 @@ shellta.com, 1 shellwhite.ga, 1 shellwhite.tk, 1 +shelly-forum.com, 1 shelma.tk, 1 -sheloki.com, 1 shelterislandtown.gov, 1 sheltermap.de, 1 sheltieplanet.com, 1 @@ -133007,6 +133205,7 @@ shenghaiautoparts.net, 1 shenghuang.tk, 1 shengrenyu.com, 1 +shenshi.com, 1 shentengtu.idv.tw, 1 sheo-tech.fr, 1 shepherdsfriendly.co.uk, 1 @@ -133014,7 +133213,6 @@ shepherdsvilleky.gov, 1 sheppyscider.com, 1 sheptytsky.ga, 1 -sherabchammaling.com, 1 sheratsuki.tk, 1 sherbers.de, 1 sherbrookerecord.com, 1 @@ -133058,7 +133256,6 @@ shh7.com, 1 shhmale.com, 1 shia.dk, 1 -shiatsu-lifestyle.nl, 1 shiawasedo.co.jp, 1 shibahara-shika.com, 1 shibainu.com.br, 1 @@ -133088,6 +133285,7 @@ shiftcrypto.support, 1 shiftdelete.net, 1 shiftdevices.com, 1 +shifters.ch, 1 shiftfrequency.com, 1 shiftgrit.com, 1 shifthappens.to, 1 @@ -133125,7 +133323,6 @@ shimmo.de, 1 shimmy1996.com, 1 shimo.im, 1 -shin-sekai.de, 1 shinbukan-katorishintoryu.org, 1 shindocuba.tk, 1 shineads.in, 1 @@ -133150,6 +133347,7 @@ shinochip.ru, 1 shinodadc-nakano.com, 1 shinsandenki.com, 1 +shinshu.id, 1 shinsyo.com, 1 shinta.ro, 1 shintoism.com, 1 @@ -133165,12 +133363,12 @@ ship-safely.com, 1 ship-technology.com, 1 shipaik.com, 1 +shipamax.com, 0 shipard.com, 1 shipard.cz, 1 shipard.org, 1 shipbuddies.com, 1 shipengliang.com, 1 -shipeurousa.com, 1 shipgoldchandler.com, 1 shipham.co.uk, 1 shipheart.tech, 1 @@ -133236,6 +133434,7 @@ shitposts.se, 1 shitproductions.org, 1 shittywok.tk, 1 +shitu.com, 1 shiva-temple.tk, 1 shivalikbank.com, 1 shivamber.com, 1 @@ -133283,7 +133482,6 @@ shoalcreekoutfitters.com, 0 shochikubai.tk, 1 shochufes.jp, 1 -shock.ee, 0 shockbs.pro, 1 shockerdragon.tk, 1 shockproof.systems, 1 @@ -133291,7 +133489,6 @@ shoejitsu.co, 1 shoekeys.lt, 1 shoelevel.com, 1 -shoeline.com, 1 shoemakerywc.com, 1 shoenji.net, 1 shoeracks.uk, 1 @@ -133386,6 +133583,7 @@ shoplyft.co.za, 1 shopmalinka.cf, 1 shopmaxilife.com.ph, 1 +shopmenu.com, 1 shopmlr.com, 1 shopnemp.com, 1 shopnguyenlieumypham.com, 1 @@ -133635,6 +133833,7 @@ shouldtest.net, 1 shouldtest.org, 1 shouohkai-dental.com, 1 +shoushui.com, 1 shoveltoss.com, 0 shovonhasan.com, 0 show.ad.jp, 1 @@ -133735,6 +133934,7 @@ shuhacksoc.co.uk, 1 shui.ga, 0 shuizilan.com, 1 +shuizu.com, 1 shukatsu-ichiba.com, 1 shulan.moe, 1 shuletime.ml, 1 @@ -133743,6 +133943,8 @@ shuma.ga, 1 shumnyj-istochnik.tk, 1 shumov.tk, 1 +shunbangwig.com, 0 +shunbao.com, 1 shunlian.live, 1 shunlian.video, 1 shunliancloud.cn, 1 @@ -133850,7 +134052,6 @@ siciliapulizie.it, 1 sicilpiuma.it, 1 sicilyactivities.com, 1 -sicilyvacation.it, 1 sickbrothers.tk, 1 sicken.eu, 1 sickhouse.se, 1 @@ -133877,7 +134078,6 @@ sidemount-tauchen.com, 1 sideofburritos.com, 1 sideofburritos.social, 1 -sidepodcast.com, 1 sidepodcastdaily.com, 1 sidepodcastextra.com, 1 sideral.is, 1 @@ -133958,7 +134158,7 @@ sigabrt.org, 1 sigateway.com, 1 sigb.sh, 1 -sigcafe.net, 1 +sigedtour.gov.bf, 1 sigep.org, 1 sigfridlinden.se, 1 siggi.io, 1 @@ -133981,6 +134181,7 @@ sigma-explorer.com, 1 sigma957.net, 1 sigmacomputers.ga, 1 +sigmacomputing.com, 1 sigmaits.net, 1 sigmalux.ca, 1 sigmalux.co.nz, 1 @@ -134054,8 +134255,10 @@ signupgenius.com, 1 signuponline.events, 1 signwell.com, 1 +signwriting.co.nz, 1 sigparser.com, 0 sigptr.me, 1 +sigromid-construct.ro, 1 sigsync.com, 1 sigterm.no, 1 sigterm.sh, 1 @@ -134075,6 +134278,7 @@ sike.org, 1 sikevux.se, 1 sikhmissionarysociety.org, 1 +sikisi.com, 1 sikkasoft.com, 1 sikkerwindows.dk, 1 sikkind.com, 0 @@ -134108,7 +134312,6 @@ silentundo.org, 1 silesianus.pl, 1 silestoneusa.com, 1 -silex.live, 1 silhak-automation.de, 1 silhouette-api.com, 1 silicateillusion.org, 1 @@ -134143,7 +134346,6 @@ silueta21.com, 1 silv.tk, 1 silvalli.com, 1 -silvanaweb.info, 1 silver-fenrir.cn, 1 silver-heart.co.uk, 1 silver-johnes.tk, 1 @@ -134243,13 +134445,12 @@ silversgarage.org, 1 silvershadow.cc, 1 silverspringdowntown.com, 1 -silverstyle.ua, 1 silvertas.com, 1 silvertime.co.uk, 1 -silvertoken.com, 1 silvertoncolorado.com, 1 silvertorrents.cf, 1 silverwaregames.io, 1 +silverwhale.com, 1 silverwind.io, 1 silverwolf.cn, 1 silvestar.codes, 1 @@ -134271,7 +134472,6 @@ sim4seed.org, 1 simabonnement.nl, 1 simac.fr, 1 -simakui.id, 1 simaogv.net, 1 simark.ca, 1 simart.cf, 1 @@ -134284,6 +134484,7 @@ simcity-cafe.tk, 1 simcityjoy.tk, 1 simcoecurlingclub.ca, 1 +simcoepestx.com, 1 simcongroup.ir, 1 simdex.org, 1 sime.am, 1 @@ -134297,6 +134498,7 @@ simetri.tk, 1 simetria.org, 1 simex.tk, 1 +simexamericas.org, 1 simfdr.com, 1 simfree-review.com, 1 simha.online, 1 @@ -134326,13 +134528,14 @@ simoncotsworth.com, 1 simone.pl, 1 simone.sh, 1 +simonehair.com, 1 simoneicolaro.online, 1 simonetti.nl, 1 simonevans.uk, 1 simonewebdesign.it, 1 simonfischer.info, 1 simonhirscher.de, 1 -simonhogben.com, 1 +simonhogben.com, 0 simonita.cz, 1 simonkjellberg.com, 1 simonmaddox.com, 1 @@ -134483,7 +134686,6 @@ simprosuite.com, 1 simpson.edu, 1 simpsoncountyky.gov, 1 -simpul.nl, 1 simpvp.net, 1 simrail.cn, 1 simrail.nl, 1 @@ -134494,7 +134696,6 @@ simsek.biz.tr, 1 simsid-dev-applnchrapi.azurewebsites.net, 1 simsid-dev-datamanager.azurewebsites.net, 1 -simsid-dev-errorlogging.azurewebsites.net, 1 simsid-dev-newsalertsapi.azurewebsites.net, 1 simsid-partner-aplaucherapi.azurewebsites.net, 1 simsid-partner-datamanager.azurewebsites.net, 1 @@ -134544,7 +134745,6 @@ sincerely.com, 1 sincityfan.tk, 1 sinclairinat0r.com, 1 -sincordones.net, 1 sincrotools.com.br, 1 sindacato.it, 1 sindarina.com, 1 @@ -134555,13 +134755,11 @@ sindastra.de, 1 sindastra.net, 1 sindastra.org, 1 -sinde.ru, 1 sindeo.org, 1 sindicatoburgos.org, 1 sindirectory.com, 1 sindominio.net, 1 sindromebenjamin.tk, 1 -sineadobrien.com, 1 sinefili.com, 1 sinemakurd.tk, 1 sinergify.com, 1 @@ -134580,16 +134778,13 @@ singaporepsa.com, 1 singaporetoptentravel.com, 1 singaporewebdesign.tk, 1 -singaporeyachtcharter.com, 1 singapur24.tk, 1 singee.me, 1 singel.ch, 1 singen.eu.org, 1 singer.ru, 1 -singerfamily.ca, 1 singerpragathi.tk, 1 singeyel.gq, 1 -singhccc.com, 1 singingblackbird.tk, 1 singingwillow.nl, 1 singita.com, 1 @@ -134633,6 +134828,7 @@ sinonimos.com.br, 1 sinonimosonline.com, 1 sinonimosonline.com.br, 1 +sinopec.com.ua, 1 sinopx.cf, 1 sinoscandinavia.se, 1 sinpermiso.info, 1 @@ -134660,6 +134856,7 @@ sintpietersabdijgent.be, 1 sintsationeel.nl, 1 sinuate.gq, 1 +sinuel.ai, 1 sinuelovirtual.com.br, 1 sinusbot.online, 1 sinusitis-bronchitis.ch, 1 @@ -134684,6 +134881,7 @@ siphalor.de, 1 sipner.com, 1 sipo.tk, 1 +sipse.gov.bf, 1 sipsevdi.com.tr, 1 sipstix.co.za, 1 siptls.com, 1 @@ -134695,8 +134893,6 @@ siralyvisegrad.hu, 1 siranap.com, 1 sirandorung.tk, 1 -sirassins.com, 1 -sirassins.nl, 1 sirassiraadjes.nl, 1 siraweb.org, 1 sirbio.ru, 1 @@ -134779,6 +134975,7 @@ sistema20k.tk, 1 sistemair.be, 1 sistemair.it, 1 +sistemano.ru, 1 sistemapronto.ml, 1 sistemaseinformacao.com.br, 1 sistemasespecializados.com, 1 @@ -134913,12 +135110,14 @@ sixpack.gr, 1 sixpackband.tk, 1 sixpackholubice.cz, 1 +sixstarwellbeing.com.au, 1 sixstrings.tk, 1 sixtiesgroovemachine.com, 1 sixtiesgroovemachine.nl, 1 sixyy.com, 1 siyako.com, 1 siyanie-clean.ru, 1 +siyuan.com, 1 sizebay.com, 1 sizeofvoid.org, 1 sizeunknown.com, 1 @@ -135020,7 +135219,6 @@ skei.org, 1 skepneklaw.com, 1 skepp.com, 1 -skeppsbrons.se, 1 skepticalsports.com, 1 skeptics.org, 1 skeptik.tk, 1 @@ -135082,6 +135280,7 @@ skilldnsproc.com, 1 skilletfood.com, 1 skillmoe.at, 1 +skillnestpro.cloud, 1 skillonnet.com, 1 skillotour.in, 1 skills2serve.org, 0 @@ -135100,7 +135299,6 @@ skin-cosmetic.eu, 1 skin-fluencer.com, 1 skin.club, 1 -skinbet.co, 1 skinboost.ga, 1 skinboost.ml, 1 skincare-note.com, 1 @@ -135149,6 +135347,7 @@ skirts.tk, 1 skirtskenya.tk, 1 skirwin.com, 1 +skischule-sinzheim.de, 1 skischule-wildewiese.de, 1 skisportdain.it, 1 skitecsh.com, 1 @@ -135166,6 +135365,7 @@ sklepsnowboardowy.pl, 1 sklepwielobranzowymd.com, 1 sklisen.tk, 1 +skloposud.com, 1 sklotechnik.cz, 1 skm.dk, 1 skmedia.ga, 1 @@ -135225,12 +135425,12 @@ skrivargarden-nes.cf, 1 skrivebordet.tk, 1 skrsv.net, 1 -skruffl.wtf, 1 skrundz.ca, 1 skrundz.com, 1 skrundz.id, 1 skrydata.ga, 1 skryland.ovh, 1 +sks.com.au, 1 sksdrivingschool.com.au, 1 sksh.io, 1 sktan.com, 1 @@ -135305,6 +135505,7 @@ skyeeverest.tk, 1 skyem.co.uk, 0 skyeng.ru, 1 +skyeto.com, 1 skyevg.systems, 1 skyeyes.tw, 1 skyfaireliving.com, 1 @@ -135328,6 +135529,7 @@ skylander.cf, 1 skylandsoft.com, 1 skylarker.org, 1 +skyler.lol, 1 skylightcreative.com.au, 1 skylightipv.com, 1 skyline.tw, 1 @@ -135339,6 +135541,7 @@ skylinertech.com, 1 skylineservers.com, 1 skylocker.net, 1 +skyltd.com.ua, 1 skyltmax.se, 1 skym-mc.fr, 1 skymail.de, 1 @@ -135367,6 +135570,7 @@ skypefr.com, 1 skypicker.com, 1 skypicshd.com, 1 +skypioneer.com, 1 skyportcloud.com, 1 skyqueen.cc, 1 skyquid.co.uk, 1 @@ -135501,7 +135705,6 @@ slcairport.com, 1 slcdn.net, 1 slcmaquinas.com.br, 1 -sld08.com, 1 sldatatech.com, 1 sldev.ovh, 1 sldlcdn.com, 1 @@ -135526,6 +135729,7 @@ sleepshop.be, 1 sleepstar.co.uk, 1 sleepstar.fr, 1 +sleeptrain.com, 1 sleepyhollowcc.org, 1 sleepys.com, 1 sleepys.net, 1 @@ -135598,9 +135802,9 @@ sliphua.work, 1 slipknot-site.tk, 1 slipnslide.xxx, 1 +slippagetolerance.com, 1 slippening.com, 1 sliptrickrecords.com, 1 -slipusati.it, 1 slisticka.cz, 1 slite.com, 1 slivkadesigns.tk, 1 @@ -135670,7 +135874,6 @@ slowfoodandhandforgedtools.com.au, 1 slowgames.xyz, 1 slowinski.tk, 1 -slowinver.com, 1 slowsocial.email, 1 slowsocial.eu, 1 slowsocial.net, 1 @@ -135682,6 +135885,7 @@ slrealty.ru, 1 slrie.de, 1 sls.ltd, 1 +sls.org, 1 slt24.de, 1 sluciaconstruccion.com, 1 sluderno.org, 1 @@ -135743,6 +135947,7 @@ smallfarmersjournal.com, 1 smallfoot.tk, 1 smallingerland.nl, 1 +smallpark.com, 1 smallplanet.com, 0 smalls-world.tk, 1 smallsiri.gq, 1 @@ -135786,7 +135991,6 @@ smarriti.it, 1 smart-bezpeka.com, 1 smart-broker.ru, 1 -smart-cash.hu, 1 smart-center.pt, 1 smart-dianza.ga, 1 smart-house.bg, 1 @@ -135801,7 +136005,6 @@ smart-tux.de, 1 smart-wind.ru, 1 smart-zona.tk, 1 -smart5.org, 1 smartacademy.ge, 1 smartagilesolution.com, 1 smartandcom.ch, 1 @@ -135817,7 +136020,6 @@ smartbear.com, 1 smartbetaler.no, 1 smartbis.com, 1 -smartbitcoininvestments.com, 1 smartbiz.vn, 1 smartblock.cloud, 1 smartboardesl.com, 1 @@ -135843,6 +136045,7 @@ smarteco.tk, 1 smartedukasi.co.id, 1 smartedupadangpanjang.com, 1 +smartem.com, 1 smartenspaces.com, 1 smarters-protv.com, 1 smarterskies.gov, 1 @@ -135857,7 +136060,6 @@ smartfirm.com.au, 1 smartfit.cz, 1 smartfixmarburg.de, 1 -smartflexusa.com, 1 smartfons.tk, 1 smartftp.com, 1 smartgirledits.com, 1 @@ -135869,7 +136071,7 @@ smarthealthinnovationlab.com, 1 smarthrms.com, 1 smartick.com.do, 1 -smartit.gr, 1 +smartiflix.com, 1 smartius.it, 1 smartjoin.style, 1 smartland.com, 1 @@ -135889,6 +136091,7 @@ smartlogstock.com, 0 smartlogtower.com, 1 smartlooks.es, 1 +smartmail.io, 1 smartmail24.de, 1 smartme.pl, 1 smartmeal.ru, 1 @@ -135966,7 +136169,7 @@ smashbros-chile.tk, 1 smashbylaney.com, 1 smashcooper.tk, 1 -smashingconf.com, 0 +smashingconf.com, 1 smashingmagazine.com, 1 smashnl.tk, 1 smashno.ru, 1 @@ -136005,6 +136208,7 @@ smelly.cloud, 1 smeloan.sg, 1 smeltnews.com, 1 +smereka-frnt.de, 1 smereka.ua, 1 smeso.it, 1 smeta.ml, 1 @@ -136038,7 +136242,6 @@ smileeye.com.tw, 1 smilegenerator.tk, 1 smilenwa.com, 1 -smileofindia.co.in, 1 smilephi.com, 1 smilesofcary.com, 1 smilessoftplay.co.uk, 1 @@ -136051,6 +136254,7 @@ smileykylie.com, 1 smileys-emojis.com, 1 smileytechguy.com, 1 +smilingcfo.co.uk, 1 smilingdogyoga.com, 1 smilinghouse.ch, 0 smilingmiao.com, 1 @@ -136129,7 +136333,7 @@ smokingtapes.ga, 1 smokybay.is, 1 smokymountaingames.org, 1 -smokyshores.radio, 1 +smokyshores.radio, 0 smolbotbot.com, 1 smolensk-i.ru, 1 smolensk-news.net, 1 @@ -136166,6 +136370,7 @@ smprospb.ru, 1 smries.com, 1 smriticharan.com, 1 +smrtgeekdevs.com, 1 sms-pro.tk, 1 sms-v.ru, 1 sms.farm, 1 @@ -136183,6 +136388,7 @@ smsk.email, 1 smskeywords.co.uk, 1 smskmail.com, 1 +smsnic.com, 0 smssalesforce.online, 1 smstec.ru, 1 smstools.com, 1 @@ -136206,12 +136412,10 @@ smuncensored.com, 1 smurffi.net, 1 smurl.tk, 1 -smusg.com, 0 smutfactor.com, 1 smvcm.com, 1 smvpro.dk, 1 smwautoblok.com, 1 -smwenglish.com, 1 smx.net.br, 1 smxconventioncenter.com, 1 smys.uk, 1 @@ -136246,14 +136450,12 @@ snap-ci.com, 1 snapaffiliate.net, 1 snapappointments.com, 1 -snapappts.com, 1 snapbuzz.tk, 1 snapfinance.com, 1 snapintegrations.net, 1 snapkit.com, 1 snapnread.com, 1 snaps.io, 1 -snapserv.net, 1 snapshades.com, 1 snapshotreport.org, 1 snapware.tk, 1 @@ -136270,6 +136472,7 @@ snazel.ee, 1 snazzie.nl, 1 snco.gov, 1 +snd-rhein.ruhr, 1 snd-zentrum.de, 1 sndbouncycastles.co.uk, 1 sndcdn.com, 1 @@ -136326,13 +136529,13 @@ snippet.host, 1 snippet.ml, 1 snippet.wiki, 0 +snippetpress.com, 1 snitch.rocks, 1 snitchnet.tk, 1 snitko.pro, 1 snizl.com, 1 snj.pt, 1 snlianshang.com, 1 -snmart.ru, 0 snnwes.de, 1 sno-tek.net, 1 snoerendevelopment.nl, 0 @@ -136501,7 +136704,6 @@ sociality.io, 1 socializator.tk, 1 sociallink.kr, 1 -socialloots.com, 1 socialmarketingday.nl, 1 socialmatch.de, 1 socialmaturityscore.com, 1 @@ -136606,7 +136808,6 @@ sodo.top, 1 sodo969.org, 1 sodom-metal.tk, 1 -sodomenas.lt, 1 sodrama.sg, 1 sodreams.ru, 1 sodrujestvo.tk, 1 @@ -136719,6 +136920,7 @@ softwing.de, 1 softwsabri.be, 1 softx.tk, 1 +sofyad.com, 1 sog-gilde.tk, 1 sogec-digital.fr, 1 sogesel.es, 1 @@ -136748,7 +136950,7 @@ soissons-technopole.org, 1 soji.io, 1 sokak-sanati.tk, 1 -sokb.cn, 1 +sokb.cn, 0 sokenconstruction.com, 1 soket.ee, 1 sokkenkraam.nl, 1 @@ -136759,7 +136961,6 @@ sokolslavkov.tk, 1 sokouchousa.net, 1 sokrabatt.se, 1 -sokretirement.com, 1 sol-3.de, 0 sol-design.jp, 1 sol-negro.tk, 1 @@ -136772,7 +136973,6 @@ solalt.com, 1 solana-active.tk, 1 solanacasinos.io, 1 -solanaroyale.com, 1 solanocounty.gov, 1 solanowonen.nl, 1 solarace.tk, 1 @@ -136922,34 +137122,35 @@ soloparati.cf, 1 solopress.com, 1 soloprivacidad.com, 1 -soloproaudio.com, 1 soloproductos.top, 1 -soloroboto.com, 1 +soloroboto.com, 0 solosesso.tk, 1 solostocks.com, 1 solostocks.com.ar, 1 solostocks.com.br, 1 solostocks.com.co, 1 solostocks.com.mx, 1 -solostocks.de, 1 solostocks.it, 1 solostocks.ma, 1 solostocks.pl, 1 solovey.su, 0 +solovyovalawfirm.com, 1 sols.style, 1 solsea.io, 1 solsi.ga, 1 +solskin-art.fr, 0 solsocog.de, 1 solsticecam.com, 1 soltysblue.pl, 1 +solu.la, 1 solucion.gq, 1 solucionesmk.online, 1 solucionesremotas.cl, 1 solucionupsperu.com, 1 solumgb.co.uk, 1 solunet.com.ar, 1 -soluply.com, 1 solut.ai, 1 +solutico.com, 1 solution.ch, 1 solutionalbum.com, 1 solutionmotsfleches.com, 1 @@ -136967,6 +137168,7 @@ solv.ws, 1 solvation.de, 1 solvaybank.com, 1 +solvd.group, 1 solve360.com, 1 solvedapp.io, 1 solviejo.tk, 1 @@ -136975,7 +137177,6 @@ solware.co.uk, 1 solwaveovens.com, 1 solweb.co.uk, 1 -solwit.com, 1 solxsys.com, 0 solymar.co, 1 somaar.tk, 1 @@ -137086,6 +137287,7 @@ songi.net, 1 songlab.ai, 1 songlifty.com, 1 +songshu.com, 1 songsigrewupsinging.com, 1 songslaura.tk, 1 songsonline.tk, 1 @@ -137093,6 +137295,7 @@ songsthatsavedyourlife.com, 1 songtianyi.com, 1 songun.ml, 1 +songyan.com, 1 songyang.cn, 1 songzhuolun.com, 1 sonia.ai, 1 @@ -137189,7 +137392,6 @@ sopilov.tk, 1 sopira.ru, 1 sopitootsipargid.ee, 1 -sopo.me, 1 soportelatino.ml, 1 sopr.cz, 1 sopra.tk, 1 @@ -137223,7 +137425,6 @@ sorpresashop.nl, 1 sorrentofc.com.au, 1 sorrentoparking.com, 1 -sorridi.xyz, 1 sorrowfulunfounded.com, 1 sort.land, 1 sortandpack.com, 0 @@ -137295,7 +137496,6 @@ soste.fi, 0 sosteric.si, 1 sosuchki.com, 1 -sosyalat.com, 1 sosyalitya.com, 1 sosyalpro.com.tr, 1 sosysadmin.com, 1 @@ -137329,6 +137529,7 @@ souenfermagem.com.br, 1 soufastnet.com.br, 1 souga.eu.org, 1 +sougou.com, 1 soukka-seura.fi, 1 soukodou.jp, 1 soul-of-style.com, 1 @@ -137369,6 +137570,7 @@ sound-recording.org, 1 sound-wave.tk, 1 sound.as, 1 +sound.codes, 1 soundabout.nl, 1 soundar.eu.org, 1 soundar.net, 1 @@ -137439,6 +137641,7 @@ sourcecredit.ng, 1 sourcegraph.com, 1 sourcehut.net, 1 +sourceproject.ru, 1 sources.tk, 1 sourcesdegarrigue.fr, 1 sourcing4exports.co.uk, 1 @@ -137455,7 +137658,6 @@ southbankregister.com.au, 1 southbaycu.com, 1 southbaylatherapy.com, 1 -southbendflooring.com, 1 southboroughma.gov, 1 southbranchinn.com, 1 southbridge-ma.gov, 1 @@ -137521,6 +137723,7 @@ southsidebuildingcenter.com, 1 southsidepianostudio.com, 1 southsideplacetx.gov, 1 +southspring.com, 1 southstpaulmn.gov, 1 southtoowoombahawks.com.au, 0 southwebsterohio.gov, 1 @@ -137536,6 +137739,7 @@ souto.eu, 1 souvenir-fashion.com, 1 souvenirs-gifts.tk, 1 +souxiu.com, 1 souzanabellydance.com, 1 sova-center.ru, 1 sova.cc, 1 @@ -137585,6 +137789,7 @@ soxfirst.com, 1 soychef.today, 1 soychile.cl, 1 +soydanguner.com, 1 soydoula.com, 1 soydxn.com, 1 soyfri.com, 1 @@ -137594,7 +137799,6 @@ soyou.jp, 0 soytranky.com, 1 soytusitio.com, 1 -soyunperro.com, 1 soyutwind.com, 1 soyuznik.ml, 1 soyvigilante.com, 1 @@ -137630,7 +137834,6 @@ spaccamuro.it, 1 space-art.tk, 1 space-combat.tk, 1 -space-for.business, 1 space-inc.co.jp, 1 space-it.de, 1 space-mining.cf, 1 @@ -137692,10 +137895,10 @@ spadok.org.ua, 1 spaenny.tf, 1 spaghettiphreakers.tk, 1 +spaghettispeller.com, 1 spaghettiwesterns.tk, 1 spagobudapest.com, 1 spahireleeds.co.uk, 1 -spaicer.de, 1 spainemotions.com, 1 spaink.net, 1 spainpol.es, 1 @@ -137764,6 +137967,7 @@ sparendirekt.at, 0 sparepartsnow.de, 1 spargrancanaria.es, 1 +spark.cn, 1 sparkandglass.com, 1 sparkar.com, 1 sparkasse-pos.de, 1 @@ -137781,7 +137985,6 @@ sparklebastard.com, 1 sparklesvt.com, 1 sparklingice.com, 1 -sparklingimageholidaylights.com, 1 sparklingloungecampiglio.it, 1 sparklyfairy.co.nz, 1 sparkmaids.com, 1 @@ -137865,6 +138068,7 @@ spear.ga, 1 spearbearer.net, 1 speargames.net, 1 +spec-antikor.by, 1 spec-ranking.pl, 1 specdrones.us, 1 special-equipment.tk, 1 @@ -137895,7 +138099,7 @@ species-identification.org, 1 speciesism.com, 1 specificenergy.com, 1 -speciosapro.com, 0 +speciosapro.com, 1 specitec.com, 1 speckle.systems, 0 speckrot.ru, 1 @@ -138004,17 +138208,14 @@ sperrmuellaufabruf.de, 1 sperrstun.de, 1 spertto.com, 1 -spes.solutions, 1 -spesaerisparmio.com, 1 spesys-services.fr, 1 spetsialist.cf, 1 -spetskabel.ru, 1 spetsnazsecurityinternational.co.uk, 1 spettacolocame.ga, 1 speventos.es, 1 spewingmews.moe, 1 speww.com, 1 -spfusion.com, 1 +speztech.ru, 1 sphereblur.com, 1 spherefluidics.com, 1 spherejoias.com.br, 1 @@ -138136,7 +138337,6 @@ spiritous.cf, 1 spiritscorp.ddns.net, 1 spiritslovenia.si, 1 -spiritual.codes, 0 spiritualites.ch, 0 spiritualityrise.com, 1 spiritualpsychologyofacting.com, 1 @@ -138159,7 +138359,6 @@ splconsulenza.it, 1 spleis.no, 1 splendadent.it, 1 -splendidaccounts.pk, 1 splendorservizi.it, 1 spletna.net, 1 splex.com, 1 @@ -138298,6 +138497,7 @@ sportscanada.tk, 1 sportscentreuk.co.uk, 1 sportscore.io, 1 +sportscpg.bi, 1 sportsdans.tk, 1 sportsdeck.tk, 1 sportsdestinations.com, 1 @@ -138500,7 +138700,7 @@ spypornone.com, 1 spyprofit.ru, 1 spyre.com, 1 -spyretx.com, 0 +spyretx.com, 1 spyroszarzonis.com, 1 spysder.com, 1 spyse.com, 1 @@ -138522,9 +138722,7 @@ sql-query-tool-exact-online.nl, 1 sql-query-tool.com, 1 sql-und-xml.de, 1 -sql.bi, 1 sqlapius.net, 1 -sqlbi.com, 1 sqldbm.com, 1 sqli.cz, 1 sqli.rocks, 1 @@ -138563,6 +138761,7 @@ squaredtechnologies.com, 1 squareeye.com, 1 squareforums.com, 1 +squaregaming.org, 1 squaregift.com, 1 squaregift.net, 1 squaregift.org, 1 @@ -138572,6 +138771,7 @@ squareinvite.com, 1 squareinvoices.com, 1 squarelab.it, 1 +squaremeter24.com, 1 squaremetres.ng, 1 squaremktg.com, 1 squareoffer.com, 1 @@ -138711,6 +138911,7 @@ ss.lazio.it, 1 ss.lt, 1 ss.lv, 1 +ss.to, 1 ss.ua, 1 ss09.com, 0 ss5197.co, 1 @@ -138737,21 +138938,18 @@ sscnapoli.it, 1 ssconn.com, 1 sscsignatureresizer.com, 1 -ssd.today, 1 ssdax.com, 0 ssddff.com, 1 ssdpalermo.it, 1 ssenberg.nl, 1 ssense.co.jp, 0 ssentinel.com, 1 -sserc.ca, 1 ssetechnologies.com, 1 ssfca.gov, 1 ssh-keys.online, 1 ssh-vault.com, 1 sshbox.tk, 1 sshd.site, 1 -sshe.ch, 1 sshool.at, 1 sshwiki.tk, 1 sshx.top, 1 @@ -138804,7 +139002,6 @@ ssnetwork.jp, 1 ssnj.org, 1 ssone.ee, 1 -ssonetwork.com, 1 ssprod.tk, 1 sspu.ml, 1 ssqq.com, 1 @@ -138823,7 +139020,6 @@ sst.ru, 1 sstaging.com, 1 sstarnation.com, 1 -ssu.edu.ph, 1 ssuiteoffice.com, 1 ssuitesoft.com, 1 st-annen-museum.de, 1 @@ -138838,6 +139034,7 @@ st3tailor.com.br, 1 st42.fr, 1 staaldart.tk, 1 +staarwaarsserver.com, 1 staatdesinternets.nl, 1 staatdesnederlandscheninternets.nl, 1 staatdesnederlandseninternets.nl, 1 @@ -138858,12 +139055,15 @@ stablelib.com, 1 stablina.tk, 1 staceygillinphotography.com, 1 +stacisezeptat.cz, 1 stackery.io, 1 stackhub.cc, 1 stacklasvegas.com, 1 +stackroute.com, 1 stackroute.in, 1 stackstartup.com, 1 stackstartup.tech, 1 +stacykeifer.com, 1 stacylight.com, 1 stad.gent, 1 stadgent.be, 1 @@ -138879,7 +139079,7 @@ stadtbauwerk.at, 0 stadtcentrum.it, 1 stadterneuerung-hwb.de, 1 -stadtfabrikanten.org, 1 +stadtfabrikanten.org, 0 stadtkapelle-oehringen.de, 1 stadtpapa.de, 1 stadtplan-ilmenau.de, 1 @@ -139000,7 +139200,6 @@ stalker-source.tk, 1 stalkerteam.pl, 1 stalkr.net, 1 -stalkthe.net, 1 stall-frei.de, 1 stallardjw.me, 1 stallbesuch.de, 1 @@ -139143,6 +139342,7 @@ stardrive.cf, 1 starease.com, 1 starease.net, 1 +starelabs.com, 1 starengineeringinc.com, 1 starexponent.com, 1 starfall.systems, 1 @@ -139237,6 +139437,7 @@ startinganllcbusiness.com, 1 startingent.be, 1 startingyourbusiness.com, 1 +startinnov.com, 1 startit.bot, 1 startlab.sk, 1 startlap.es, 1 @@ -139263,6 +139464,7 @@ startupchile.org, 1 startupery.com, 1 startupgov.lt, 1 +startuphakk.com, 1 startupislandtaiwan.com, 1 startupislandtaiwan.net, 1 startupislandtaiwan.org, 1 @@ -139287,6 +139489,7 @@ startupweb.io, 1 startupyourmind.com, 1 startw.cf, 1 +startwithcompassion.com, 1 startwithpieter.com, 0 starvizyon.com, 1 starwarschronology.com, 1 @@ -139324,7 +139527,6 @@ statelines.ga, 1 statella.it, 1 statelywork.com, 1 -statemercantile.com.au, 1 statenislandonlinecremation.com, 1 stateofopencon.com, 1 stateofthemap.org, 1 @@ -139408,7 +139610,6 @@ stayingfitter.com, 1 staylovely.tk, 1 stayme.cz, 1 -stayokay.com, 1 stazi.tk, 1 stb-buegel.de, 1 stb-schefczyk.com, 1 @@ -139669,6 +139870,7 @@ stephandriessen.tk, 1 stephaniecalahan.com, 1 stephaniedeady.ie, 1 +stephaniedeiters.com, 1 stephaniedorrphotography.com, 1 stephanieklein.com, 1 stephanielacroix.nl, 1 @@ -139710,6 +139912,7 @@ steppowerplant.com, 1 stepstone.dk, 1 stepupforeurope.eu, 1 +stepxpress.com, 1 stepyz.com, 1 stepzen.com, 1 ster-enzo.nl, 1 @@ -139756,6 +139959,7 @@ sterva.mobi, 0 sterydki.pl, 1 sterz.io, 1 +stesmarteyes.com, 1 stestena.eu, 1 stesti.cz, 1 stethostalk.com, 1 @@ -139860,6 +140064,7 @@ sthpr.gr, 1 sthreemarketing.com, 1 stibal.art, 1 +stichelbaut.ro, 1 stichting-nice.nl, 1 stichtingcompassroemenie.nl, 1 stichtingintouchables.nl, 1 @@ -139956,13 +140161,11 @@ stirlingpoon.com, 1 stirringphoto.com, 1 stisidores.org, 1 -stitchersvillage.com, 1 stitchlabs.com, 1 stitchmerch.me, 0 stivesbouncycastlehire.co.uk, 1 stiveschambers.co.uk, 1 stjameswest.com, 1 -stjh.org.sg, 1 stjohnbjc.org, 1 stjohncamden.com, 1 stjohnin.com, 0 @@ -139989,7 +140192,7 @@ stkildaosteopathy.com.au, 1 stl-models.com, 1 stl-models.gallery, 1 -stla.net, 0 +stla.net, 1 stlautoenhancements.com, 1 stlawco.gov, 1 stleismann.de, 1 @@ -140099,7 +140302,6 @@ stoicus.com.br, 1 stoinov.com, 1 stoiximatikesetairies.tv, 1 -stokkink.com, 1 stokl.com.au, 0 stokrotkadelikatesy.pl, 1 stolarka.tk, 1 @@ -140158,9 +140360,7 @@ stonetribute.tk, 1 stonewallwcidtx.gov, 1 stoneworld.ga, 1 -stonewuu.com, 1 stoneydsp.com, 1 -stoneypointlife.com, 1 stoningtonboroughct.gov, 1 stonkslab.com, 1 stonnaltd.com, 1 @@ -140188,7 +140388,6 @@ stop-bankrotstvu.ru, 0 stop-microsoft.org, 1 stop-nikotin.tk, 1 -stop-piracy-shield.it, 1 stop-russia.tk, 1 stop-tihange.eu, 1 stop-tihange.org, 1 @@ -140258,7 +140457,6 @@ storepaperoomates.net, 1 storephotovoltaique.com, 1 storeplus.ml, 1 -storeroom.at, 1 storesonline.fr, 1 storewebshop.com, 1 storex.storage, 1 @@ -140348,7 +140546,6 @@ stowarzyszeniegetback.pl, 1 stoxford.com, 1 stp-ip.com, 1 -stp-ip.net, 1 stp.dev, 1 stpatrick.tk, 1 stpatrickathenscatskill.org, 1 @@ -140401,7 +140598,6 @@ strandenland.nl, 1 strandfuif.tk, 1 strandhaus-claassen.de, 1 -strandhaus-hinter-der-duene.de, 1 strandhousedingle.com, 1 strandkorb-jentzsch.de, 1 strandschnuppern.de, 0 @@ -140608,8 +140804,6 @@ stressfreeprobate.com, 1 stressfrei-marceva.de, 1 streszczenia.pl, 1 -stretchpc.com, 1 -stretchwrap.co.nz, 1 strettoweb.com, 1 strgco.com, 1 striae.cf, 1 @@ -140620,6 +140814,7 @@ striata.org, 1 stricken.gq, 1 stricted.net, 1 +strictlycanvas.com, 1 strictlynormal.com, 1 strideengineering.com.au, 1 strietwaelder-blaettche.de, 1 @@ -140631,7 +140826,6 @@ strikers.cf, 1 strikers.futbol, 1 stringaudio.com, 1 -stringerssociety.com, 1 strings.cf, 1 striniartglass.com, 1 strip-magazine.com, 1 @@ -140698,7 +140892,6 @@ strongsalpinesucculents.com, 1 strongspace.com, 1 strongtomorrow.tk, 1 -strongtowerpc.com, 1 stronyinternetowekoszalin.pl, 1 stronywww-lodz.pl, 1 stroomacties.nl, 1 @@ -140798,7 +140991,6 @@ studenti.tk, 1 studentinaneta.com, 1 studentingent.be, 1 -studentinsuranceusa.com, 1 studentite.bg, 1 studentjournalist.ml, 1 studentklinikk.no, 1 @@ -140839,7 +141031,6 @@ studio32.tk, 1 studio34yoga.com, 0 studio4101.ga, 1 -studio413.net, 1 studio54.tk, 1 studio678.com, 0 studio8.au, 1 @@ -140851,6 +141042,7 @@ studioamoureus.nl, 1 studioandrew.tk, 1 studioarcadia.fun, 1 +studioat55.com, 1 studioavvocato.milano.it, 1 studioavvocato.roma.it, 1 studioavvocato24.it, 1 @@ -140885,6 +141077,7 @@ studionowystyl.pl, 1 studiopanamaitalia.com, 1 studiopirrate.com, 1 +studioshiftup.net, 1 studiosql.ml, 1 studiostawki.com, 1 studiostudio.net, 1 @@ -140936,7 +141129,6 @@ studytactics.com, 1 studytour.ml, 1 studytube.nl, 1 -stuehrenberg.eu, 1 stuermer.me, 1 stuetzredli.ch, 1 stufen-los.de, 1 @@ -140964,7 +141156,6 @@ stunningwroclaw.com, 1 stunov.ga, 1 stunov.gq, 1 -stuntkoop.nl, 1 stuntman.ga, 1 stuntman.tk, 1 stuntmen.xyz, 1 @@ -140994,10 +141185,8 @@ stuudium.org, 1 stuut.info, 1 stuvel.eu, 1 -stuvus.de, 1 stuvus.uni-stuttgart.de, 1 stuyvesantoutdoor.com, 1 -stv.lol, 0 stview.me, 1 stvrainsdco.gov, 1 stwcforum.tk, 1 @@ -141038,6 +141227,7 @@ stylight.it, 1 stylight.nl, 1 stylingstudio.ga, 1 +stylishealthyliving.com, 1 stylishentertainment.co.uk, 1 stylishweddingdisco.co.uk, 1 stylistbazaar.com, 0 @@ -141058,7 +141248,6 @@ suaudeau.fr, 1 suaudeau.org, 1 suayslim.com, 1 -sub-etha.se, 1 sub-net.at, 1 sub-topia.de, 1 subahankamal.tk, 1 @@ -141124,6 +141313,7 @@ substitutealert.com, 1 substore.co.il, 1 substruct.co.uk, 1 +subteacher.co.il, 1 subteen.gq, 1 subterra.tk, 1 subtitry.ru, 1 @@ -141152,6 +141342,7 @@ successible.net, 1 successive.tech, 1 successminds.com, 1 +successor.cn, 1 successrice.com, 1 successwizard.com, 1 succmy.wang, 1 @@ -141206,6 +141397,7 @@ sudzsation.com, 1 suecaunitedfc.tk, 1 suedtirolerhotels.it, 1 +suegofaults.com, 1 sueletricidade.pt, 1 suelyonjones.com, 1 suempresa.cloud, 1 @@ -141222,6 +141414,7 @@ sufleu.ro, 1 sufleuri.ro, 1 sufni.space, 1 +sufundamento.com, 1 sufuorg.com, 1 sug.hr, 0 sugarbeatsentertainment.com, 1 @@ -141266,6 +141459,7 @@ suidouraku.com, 1 suigen.jp, 1 suijo-bus.osaka, 1 +suike.com, 1 suikerspinnetje.nl, 1 suitcompany.com, 1 suite.li, 1 @@ -141313,7 +141507,6 @@ sullivancountypa.gov, 1 sulman4paf.tk, 1 sulphurspringsar.gov, 1 -sultan-bahoo.com, 1 sultanrecords.com, 1 sultans.tk, 1 sultengterkini.id, 1 @@ -141431,7 +141624,6 @@ sunby.org, 1 suncanary.tk, 1 suncat.tk, 1 -suncheck.com, 0 sunchild.ml, 1 suncity288.com, 1 suncity288.net, 1 @@ -141544,6 +141736,7 @@ sunshinelife.tk, 1 sunshinerequest.com, 1 sunskyview.com, 1 +sunsmartnsw.com.au, 1 sunsong.org, 1 sunsparksolar.co.uk, 1 sunsquare.cz, 1 @@ -141561,7 +141754,6 @@ sunsystem-speicher.de, 1 suntechnologies.com, 1 sunticschool.org, 1 -sunwahpanama.com, 1 sunwayestates.com, 1 sunwaymedical.com, 1 sunwayreit.com, 1 @@ -141710,6 +141902,7 @@ superlol.tk, 1 supermae.pt, 1 supermagna.tk, 1 +supermama.edu.pl, 1 supermanera.tk, 1 supermarketkibris.com, 1 supermarkets.ga, 1 @@ -141742,7 +141935,6 @@ supersahnetorten.de, 1 supersales.com.ec, 1 supersandro.de, 1 -superscapes.com.au, 1 superseguros.gob.do, 1 superservers.ml, 1 supershrooms.nl, 1 @@ -141810,6 +142002,7 @@ supportlafd.org, 1 supportme123.com, 0 supportrelatecare.org, 1 +supportsave.com, 1 supportyourapp.com, 1 suppos-net.tk, 1 supra.tf, 1 @@ -141824,6 +142017,7 @@ supreme-court.tk, 1 supremearvadafencing.com, 1 supremecarnage.de, 1 +supremeconcreteco.com, 1 supremefencinglakewood.com, 1 suprememale.tk, 1 supremevi.com, 1 @@ -141907,7 +142101,7 @@ surrealistas.tk, 1 surreyandsussex.nhs.uk, 1 surreycyclingclub.co.uk, 1 -surreysportspark.co.uk, 1 +surreysportspark.co.uk, 0 surrycountync.gov, 1 surrycountyncvotes.gov, 1 surskiekraski.ru, 1 @@ -141938,6 +142132,7 @@ sus.zone, 1 susajja.com, 1 susanagomez.tk, 1 +susanahill.photography, 1 susanbpilates.co, 1 susanbpilates.com, 1 susanmmeyersauthor.com, 1 @@ -141968,7 +142163,6 @@ sussexheart.com, 1 sussexsecurityinstallations.co.uk, 0 sussexspinner.co.uk, 1 -sussexstudent.com, 1 sussexwi.gov, 1 sussmanshank.com, 1 sustain.software, 1 @@ -142017,7 +142211,6 @@ suv4.net, 1 suvacollections.com.br, 1 suvalor.com, 1 -suvari.com.tr, 1 suvidhaapay.com, 1 suvirink.lt, 1 suvisioninc.com, 1 @@ -142197,7 +142390,6 @@ swagger.london, 1 swaglookbook.com, 1 swagmoney.enterprises, 1 -swagsocial.net, 0 swahili-dictionary.com, 1 swain.tk, 1 swajp.cz, 1 @@ -142252,7 +142444,6 @@ swedbank.se, 0 swederica.tk, 1 swedish-saints.tk, 1 -swedish.so, 1 swedishforces.tk, 1 swedishhost.com, 1 swedishhost.se, 1 @@ -142287,6 +142478,7 @@ sweetlegs.jp, 1 sweetloaded.com, 1 sweetlycakes.com, 1 +sweetnest.com, 1 sweetparis.cf, 1 sweetpinkpussy.org, 1 sweetpummelfee.com, 1 @@ -142294,7 +142486,6 @@ sweets-mimatsu.com, 1 sweetsideofsweden.com, 1 sweetsinner.com, 1 -sweetspot.co.kr, 1 sweetsusinrw.org, 1 sweetvanilla.jp, 1 sweetwatercountywy.gov, 1 @@ -142479,6 +142670,7 @@ sxls.com, 1 sxmd99.com, 1 sxqxmx.com, 1 +sxyql.de, 1 sy-anduril.de, 1 sy24.ru, 1 syaeful12ips.tk, 1 @@ -142533,7 +142725,6 @@ sylveon.social, 1 sylvia.my.id, 1 sylviamartinez.com, 1 -sylviemifsud.fr, 1 sylwiart.pl, 1 sylwiaspychala.pl, 1 sym01.com, 1 @@ -142551,6 +142742,7 @@ symbolics.digital, 1 symbolnodes.org, 1 symbols.gov, 1 +symcare.com.au, 0 symend.com, 0 symeonchen.com, 1 symetrix.tk, 1 @@ -142568,6 +142760,7 @@ symphonyai.com, 1 sympletrade.com, 1 symplexia.com.br, 1 +symplicit.com.au, 1 symplyos.tk, 1 sympmarc.com, 1 symposit.com, 0 @@ -142581,6 +142774,7 @@ synap.ac, 1 synapse.ee, 1 synapse.pe, 1 +synapse76.fr, 1 synapsemedical.com.au, 1 synaptickz.me, 1 synccentre.com, 1 @@ -142644,8 +142838,7 @@ synthetis.com, 1 synthezis.tk, 1 synthgularity.net, 1 -synthpop.ai, 0 -synthroidsl.online, 1 +synthpop.ai, 1 syntia.tk, 1 syntric.io, 1 synxfps.de, 1 @@ -142726,12 +142919,12 @@ system-design.tk, 1 system-erp.com.pl, 1 system-fehler.tk, 1 -system-informer.com, 0 system-m.de, 0 system-noah.net, 1 system.is, 1 system.md, 1 system4travel.com, 1 +systemano.ru, 1 systematic-momo.com, 1 systematic-momo.dk, 1 systematik.nu, 1 @@ -142739,15 +142932,16 @@ systemb.ch, 1 systemblog.tk, 1 systemd.ch, 0 -systemd.eu.org, 1 systemd.info, 0 systemerka.pl, 1 systemerr.tk, 1 systemhaus.saarland, 1 -systeminformer.com, 0 +systeminformer.com, 1 systemintegra.ru, 0 +systemisbusy.info, 1 systemlead.pl, 1 systemli.org, 1 +systemno.ru, 1 systemofmedicine.com, 1 systemology.com, 1 systemonthego.com, 1 @@ -142767,7 +142961,6 @@ sysystems.cz, 1 syt3.net, 1 sytenko.org.ua, 1 -sytoshine.com, 1 syuez.com, 1 syunpay.cn, 1 syupfssy.com, 1 @@ -142838,6 +143031,7 @@ sztuanzi.top, 1 sztyup.com, 1 szuecs.net, 1 +szw-hessen.de, 1 szwrc.co, 1 szww99.cc, 1 szybkaekipa.pl, 1 @@ -142848,7 +143042,6 @@ szzsivf.com, 0 t-1.org, 0 t-10.in, 1 -t-10.nz, 1 t-cophony.com, 1 t-dent.com, 1 t-fischer.net, 1 @@ -142916,7 +143109,6 @@ t7e.de, 1 t7tech.net, 1 t8.software, 1 -t82365.com, 1 t8803.com, 1 t8805.com, 1 t8807.com, 1 @@ -142995,13 +143187,10 @@ tabkhetk.com, 1 tablamatica.tk, 1 tablascreek.com, 1 -table.media, 1 tableandhearth.com, 1 tableau.lt, 1 tabledown.ga, 1 -tabledusud.be, 1 tabledusud.nl, 1 -tablepaddie.com, 1 tableres.com, 1 tablerocksbestrealtors.com, 1 tablesoccer.pt, 1 @@ -143111,17 +143300,12 @@ taglioepiega.com, 1 taglioepiega.eu, 1 taglioepiega.it, 1 -tagon8.com, 0 -tagon8.com.br, 0 tagon8.net, 1 -tagon8inc.com, 0 -tagon8inc.com.br, 1 tagore-care.com, 1 tagram.net, 1 tagstationen.se, 1 tagstatravel.com, 1 tagsweekly.com, 1 -tagtoys.com, 1 taguette.com, 1 taguette.fr, 1 taguette.org, 1 @@ -143197,8 +143381,6 @@ tajniy-smisl.gq, 1 tajniy-smisl.ml, 1 tajniy-smisl.tk, 1 -tajper.pl, 1 -tajtandoori.co.uk, 1 tajtowereg.com, 1 tak-it.nl, 1 tak.gov, 1 @@ -143214,6 +143396,7 @@ takao-hs.com, 1 takao.ga, 1 takarabrig.com, 1 +takaritasmiskolc.hu, 1 takase.buzz, 1 takashimadaira-clinic.jp, 1 takayaindustries.ml, 1 @@ -143268,7 +143451,6 @@ takotv.live, 1 taks.nl, 1 taksaft.tk, 1 -takshni.com, 1 taksihesaplama.com, 1 taktak.co.uk, 0 taktika.tk, 1 @@ -143320,7 +143502,6 @@ talesbazaar.com, 1 talesfromthebigpig.com, 1 talesoftenko.tk, 1 -taliabobalia.com, 1 talichi.com, 1 talichi.es, 1 talideon.com, 0 @@ -143415,12 +143596,12 @@ tamerayd.in, 1 tamerplatform.com, 1 tameru.me, 1 +tamerx.com, 1 tamgaturk.com, 1 tami.ai, 1 tamilentertainment.tk, 1 tamilfunda.com, 1 tamilglitz.in, 1 -tamilmemes.in, 1 tamilrokers.tk, 1 tamilsms.blog, 1 tamiltax.tk, 1 @@ -143465,12 +143646,12 @@ tandartszilverschoon.nl, 1 tandblekningidag.com, 1 tandcr.com, 1 -tandem.team, 1 tandempartnerships.com, 0 tandemtransport.ca, 1 tandemvtt.com, 1 tandhoutdoors.com, 1 tandigmvaluepartners.com, 1 +tandoanh.vn, 1 tandukarbidhan.com.np, 1 tandzorg.link, 1 taneycountyad.gov, 1 @@ -143541,7 +143722,6 @@ tanomimaster.com, 1 tanorder.com, 1 tanovar.com, 1 -tanpaoperasi.com, 1 tanphu.tk, 1 tanpopo.io, 1 tansidco.org, 1 @@ -143573,10 +143753,9 @@ tao-vd.ch, 1 taoaworld.com, 1 taoburee.com, 0 +taodo.de, 1 taodung.com, 1 taoismus.eu, 1 -taolu.tv, 1 -taolubdsm10.com, 1 taoofbeauty.tk, 1 taoscountynm.gov, 1 taoshu.in, 1 @@ -143620,6 +143799,7 @@ taraiid.com, 1 tarakan-klopik.tk, 1 taraksarkar.tk, 1 +taran.ua, 1 taranagar.tk, 1 tarantino.tk, 1 tarantul.org.ua, 1 @@ -143659,7 +143839,6 @@ tarihvakti.com, 1 tarija.tk, 1 tarikigaru.ga, 1 -tarisa.net, 1 tarjaturunen.tk, 1 tarjetaolimpica.com.co, 1 tarjetasgraficas.tk, 1 @@ -143702,7 +143881,6 @@ tarvoo.com, 1 tarzanka.ml, 1 tas.best, 1 -tas2580.net, 0 tasalogistic.com, 1 tasarimgazetesi.com, 1 tasarimrehberi.com, 1 @@ -143774,7 +143952,6 @@ tatiana-kpb.tk, 1 taticul.ro, 1 tatilsepeti.com, 1 -tatilyaz.com, 1 tatjana-young.net, 1 tatler.com, 1 tato.noip.me, 0 @@ -143782,7 +143959,6 @@ tatooine.club, 1 tatort-fanpage.de, 1 tatra.ca, 1 -tatra.nl, 1 tatsidou.gr, 1 tatsoi.net, 1 tatsumi-air.com, 1 @@ -143853,6 +144029,7 @@ tavex.se, 1 tavexbullion.co.uk, 1 tavid.ee, 1 +taviskaron.ru, 1 tavola-cescato.club, 1 tavolaquadrada.com.br, 1 tavolartegusto.it, 1 @@ -143868,6 +144045,9 @@ taxassist.co.uk, 1 taxationweb.co.uk, 1 taxboard.gov.au, 1 +taxborn.com, 1 +taxcertificationform.com, 1 +taxcertificationportal.com, 1 taxcure.com, 1 taxdispute.win, 1 taxexpertsonthego.com, 1 @@ -143902,6 +144082,7 @@ taxihat.co.il, 1 taxihungary.com, 1 taxikraken.tk, 1 +taximarcaminha.com, 1 taximinvody.ml, 1 taximovies.gq, 1 taxipool.co.il, 1 @@ -143927,6 +144108,7 @@ tayebbayri.com, 1 tayho24h.com, 1 taylorandfrancis.com, 1 +taylorashford.com, 1 tayloraz.gov, 1 taylorburton-porn.com, 1 taylorcountyhdwv.gov, 1 @@ -143944,6 +144126,7 @@ taylors-castles.co.uk, 1 taylorshillsamoan.org, 1 taylorstauss.com, 1 +taysiz.ir, 1 taytaytiangge.ph, 1 tazamobile.ga, 1 tazarelax.es, 1 @@ -143981,6 +144164,7 @@ tbox.net, 1 tbpchan.cz, 1 tbq-s.com, 1 +tbreni.hu, 1 tbrindus.ca, 1 tbs-certificates.co.uk, 1 tbscan.com, 1 @@ -144014,6 +144198,7 @@ tcdn.tech, 1 tcdww.cn, 1 tcec-chess.com, 1 +tcepc.com, 1 tcf.org, 1 tcgbridge.com, 1 tcgc-adms.com, 1 @@ -144036,6 +144221,7 @@ tchnics.de, 1 tcholet.com, 1 tchoukball.ch, 0 +tchouktchouk-baroum.fr, 1 tci-style.pl, 1 tci-thaijo.org, 0 tciit.pl, 1 @@ -144048,7 +144234,6 @@ tco.zapto.org, 1 tcoa.tk, 1 tcp.com, 1 -tcpdf.org, 1 tcpride.org, 1 tcproducer.xyz, 1 tcptun.com, 1 @@ -144063,7 +144248,6 @@ tcvafrica.agency, 1 tcvanbuuren.tk, 1 tcvonline.vic.gov.au, 1 -tcvw.org, 1 tcx.de, 1 tcybert.com, 1 tcyoung.co.uk, 1 @@ -144138,6 +144322,7 @@ teachinginhighered.com, 1 teachingmama.org, 1 teachingtoday.education, 1 +teachingwithjen.com, 1 teachjam.org, 1 teachking.tk, 1 teachnowprogram.com, 1 @@ -144194,6 +144379,7 @@ teambeam.ru, 0 teambee.tk, 1 teambim.eu, 1 +teamceleris.com, 1 teamcg.ru, 1 teamclean.bg, 1 teamcoco.com, 1 @@ -144342,7 +144528,6 @@ teazer.tk, 1 teb-akademia.pl, 1 teb-x-1.com, 1 -tebebo.com, 1 teber.av.tr, 1 tebian.tk, 1 tebianco.net, 1 @@ -144370,6 +144555,7 @@ tece.de, 1 tece.se, 1 tecfidera.com, 0 +tecfix.com, 1 tecfleet.com, 1 tech-box.fr, 1 tech-clips.com, 0 @@ -144408,7 +144594,6 @@ techask.it, 1 techbaba.co, 1 techbelife.com, 1 -techblue.co.uk, 1 techboostclark.com, 1 techbrawl.org, 1 techbuz.net, 1 @@ -144443,7 +144628,6 @@ teched-creations.com, 1 techexeter.uk, 1 techexpert.tips, 1 -techexplorist.com, 1 techfibian.tk, 1 techfinancials.co.za, 1 techfishnews.com, 1 @@ -144454,6 +144638,7 @@ techfreepro.ml, 1 techfuturae.com, 1 techgama.org, 1 +techgarage.blog, 1 techgearlab.com, 1 techgo.re, 1 techgrance.com, 1 @@ -144469,7 +144654,6 @@ techieidiots.ml, 1 techieshideaway.com, 1 techiesmart.tk, 1 -techiestalk.in, 1 techikoma.social, 1 techimprovement.uk, 1 techindiana.tk, 1 @@ -144481,6 +144665,7 @@ techitalk.ga, 1 techitsol.tk, 1 techiwant.com, 1 +techjeny.org, 0 techjobplaybook.nyc, 1 techjobs.be, 1 techjournal.org, 1 @@ -144503,7 +144688,6 @@ techmammal.de, 1 techmanstan.com, 1 techmap.uk, 1 -techmasterylab.com, 1 techmatter.tk, 1 techmatterglobal.com, 1 techmatters.org, 1 @@ -144532,7 +144716,7 @@ technicaltrainer.co.za, 1 technicalustad.com, 1 technician.academy, 1 -technick.net, 1 +technician.cn, 1 technicus.nl, 1 technicv.com, 1 technikforum-backnang.de, 1 @@ -144544,7 +144728,6 @@ technikplanet.de, 1 techniqueelevage.ddns.net, 1 techniquetechs.com, 1 -technisys.com, 1 techno-utopia.com, 1 techno360.in, 1 technoairlines.com, 0 @@ -144566,7 +144749,7 @@ technoledge.jp, 1 technolink.cf, 1 technolink.ga, 1 -technologic.co.za, 1 +technologic.co.za, 0 technology.cx, 1 technologyabundant.ga, 1 technologyandroid.tk, 1 @@ -144598,6 +144781,7 @@ technologyvisual.ga, 1 technologywaterfront.ga, 1 technologywt.com, 1 +technolove.ru, 1 technolution.tk, 1 technomagia.tk, 1 technomix.tk, 1 @@ -144659,11 +144843,11 @@ techpp.com, 1 techpressable.com, 1 techprom.tk, 1 +techrad.ar, 1 techraptor.net, 1 techrek.pl, 1 techreportforall.tk, 1 techrevolution.lt, 1 -techround.co.uk, 1 techs.cf, 1 techsalot.com, 1 techsat.tk, 1 @@ -144680,6 +144864,7 @@ techsolvency.com, 1 techsoup.net.nz, 1 techstackjournal.com, 1 +techsy.me, 1 techsys.ch, 1 techsys.cz, 1 techtastic.tk, 1 @@ -144687,7 +144872,6 @@ techtivity.pl, 1 techto.date, 1 techtolia.com, 1 -techtonicgeek.com, 1 techtouch.tk, 1 techtoydeveloper.tk, 1 techtrader.ai, 1 @@ -144727,7 +144911,6 @@ tecnicapotiguar.com.br, 1 tecnicasapinzon.com, 1 tecnicfit.ovh, 1 -tecnick.com, 1 tecnicman.com, 1 tecnicman.it, 1 tecnicoelettrodomestici.roma.it, 1 @@ -144771,6 +144954,7 @@ tecserstore.com.pe, 1 tectas.co.jp, 1 tectonix.com, 1 +tectuc.com.ar, 1 tecumsehmi.gov, 1 ted.do, 0 tedamos.at, 1 @@ -144785,6 +144969,7 @@ teddysquad.com, 1 teddyss.com, 0 teddywayne.com, 1 +teddywp.com, 1 tedgautsch.com, 0 tedhardy.com, 1 tedirgin.tk, 1 @@ -144870,6 +145055,7 @@ tehnoklubi.ee, 1 tehnomagija.tk, 1 tehplace.club, 1 +tehpod.com.ua, 1 tehrabbitt.com, 0 tehrankey.ir, 1 tehranservicekaran.com, 1 @@ -144895,7 +145081,6 @@ tekila.cf, 1 tekila.ga, 1 tekila.tk, 1 -tekinfo.co.id, 1 tekingb.com, 0 tekirdagemlak.tk, 1 tekittak.com, 1 @@ -144919,7 +145104,6 @@ teknon.tk, 1 teknoparkistanbul.com.tr, 1 teknorix.com, 1 -teknoscienze.com, 1 teknow.tk, 1 teko.se, 1 tekpon.com, 1 @@ -144928,7 +145112,6 @@ teksol-boat.ru, 1 tekstover.tk, 1 tekstpesni.tk, 1 -tektouch.net, 1 tektuts.com, 1 tekyou.com.br, 1 telalresort.ae, 1 @@ -144967,6 +145150,7 @@ telechirkut.xyz, 1 telechnics.com.au, 1 teleclaro.com, 1 +teleclases.com, 1 telecom-sudparis.eu, 1 telecomarmenia.am, 1 telecommande-express.com, 1 @@ -145013,6 +145197,7 @@ telenovelas-france.tk, 1 telent.com, 1 teleogistic.net, 1 +teleoposiciones.es, 1 telepati.info, 1 telephonedirectories.us, 1 telephoni-cdma.tk, 1 @@ -145134,7 +145319,6 @@ templete.tk, 1 tempmail.ninja, 1 tempo.co, 1 -tempo.com.ph, 1 tempocams.com, 1 tempocams.net, 1 tempocams.org, 1 @@ -145161,7 +145345,6 @@ tenantacademy.co.za, 1 tenantcloud.com, 1 tenantoptions.com.au, 1 -tenantprotect.co.za, 1 tenanttraining.co.za, 1 tenber.ge, 1 tenberg.com, 1 @@ -145178,8 +145361,6 @@ tendergrupp.ru, 1 tendermint.com, 1 tenderned.nl, 1 -tenderstem.co.uk, 1 -tenderstem.ie, 1 tenderwizard.com, 1 tendiestown.com, 1 tendinite.org, 1 @@ -145193,6 +145374,7 @@ tenerife-taxi.com, 1 tenerifeperla.com, 1 teners.me, 1 +tenerunacasa.com, 1 tenfeetsquare.net, 1 tenfingerscollective.tk, 1 tengodetodo.tk, 1 @@ -145275,8 +145457,8 @@ tepui.io, 1 teq-automotive.com, 1 teqip-pms.gov.in, 1 -teqport.com, 1 tequenikality.net, 1 +tequilamessenger.com, 1 tequilazor.com, 1 terabyte.services, 1 terabyteharddrive.net, 1 @@ -145338,6 +145520,7 @@ termoidraulicadariol.it, 1 termoidraulico.milano.it, 1 termoidraulico.roma.it, 1 +termoline.by, 1 termomir.ru, 1 termopares.tk, 1 termoproof.ru, 1 @@ -145478,6 +145661,7 @@ test-verz.online, 1 test.de, 1 test.gd, 1 +test.support, 1 test1-isrewards.com, 1 test1974.nl, 1 test2-isrewards.com, 1 @@ -145499,6 +145683,7 @@ testdevelocidad.com, 1 testdomens.ga, 1 testdrogue.fr, 1 +testecta.top, 1 testehogs.tk, 1 testem.de, 1 testemo.tk, 1 @@ -145514,6 +145699,7 @@ testheat.org, 1 testikel.be, 1 testing-server.tk, 1 +testing.cn, 1 testingbot.com, 1 testingtask.tk, 1 testingxperts.com, 1 @@ -145583,7 +145769,6 @@ tetrapak.com, 1 tetrarch.co, 1 tetrimus.com, 1 -tetrisponse.io, 1 tetryyn.com, 1 tetsudo.jp.net, 1 tetsumaki.net, 1 @@ -145713,7 +145898,7 @@ tfaforms.com, 1 tfapass.com, 1 tfapass.eu, 1 -tfb.az, 1 +tfb.az, 0 tferdinand.net, 1 tfff.org, 1 tfg-bouncycastles.com, 1 @@ -145783,6 +145968,7 @@ thaiblanket.com, 1 thaiboystory.ga, 1 thaibrokersfx.com, 1 +thaicurry.net, 1 thaiforexfamily.com, 1 thaigirls.cf, 1 thaihomecooking.com, 1 @@ -145814,10 +146000,10 @@ thajske-masaze-brno.cz, 1 thajske-masaze-olomouc.cz, 1 thajske-masaze-vyskov.cz, 1 +thajskychram.cz, 1 thakurmarjhuli.tk, 1 thalamus.nz, 1 thalan.fr, 1 -thalesmachado.com.br, 1 thalhammer.it, 1 thalia.nu, 1 thalikkunushivatemple.tk, 1 @@ -145831,6 +146017,7 @@ thancon.com, 1 thanhnhua.vn, 1 thanhtrungmobile.vn, 1 +thankspenny.com, 1 thantra.tk, 1 thapduoc.com, 1 tharuka.com, 1 @@ -145928,7 +146115,6 @@ the-world.tk, 1 the.fo, 1 the1.wiki, 1 -the101.world, 1 the12by12.com, 1 the13thtribe.tk, 1 the51news.ga, 1 @@ -145976,6 +146162,7 @@ theangelgivingtree.org, 1 theangelushouse.com, 1 theanimalskingdom.com, 1 +theanimatedword.org, 1 theantarticx.com, 1 theantisocialengineer.com, 1 theantnetwork.tk, 1 @@ -146005,7 +146192,7 @@ theaterreichenhall.tk, 1 theathletic.com, 1 theatre-schools.com, 1 -theatrebeanfield.ca, 1 +theatrebeanfield.ca, 0 theatrefolk.com, 1 theatrelalicorne.com, 1 theatrepremol.com, 1 @@ -146032,11 +146219,11 @@ thebakery2go.de, 1 thebakingcafe.com, 1 thebalancedsystem.org, 1 +theballardpier.com, 1 thebalvenie.com, 1 thebamplayer.de, 1 thebannekerfoundation.org, 1 thebannerstore.com, 1 -thebarclay.org, 1 thebasementdefender.com, 1 thebasementdefender.net, 1 thebasicstudio.com, 1 @@ -146051,6 +146238,7 @@ thebeautifuledge.com, 1 thebeautyqueen.tk, 1 thebedfordcitizen.org, 1 +thebeef.info, 1 thebeeyard.org, 1 thebeginningviolinist.com, 1 thebengalinews.tk, 1 @@ -146123,12 +146311,11 @@ thebodylanguageguide.tk, 1 thebodyshop.bg, 1 theboltway.com, 1 +thebondyapp.com, 1 thebonerking.com, 1 thebook.pro, 1 thebookishhistorian.com, 1 thebookstar.bg, 1 -theboozeboss.com, 1 -theboozeboss.nl, 1 thebosshub.net, 1 thebouncedepartment.co.uk, 1 theboxofcarlos.com, 1 @@ -146221,6 +146408,7 @@ theciso.com, 0 thecitizen.support, 1 thecitycook.com, 1 +thecityscene.com, 0 thecitywarehouse.clothing, 1 thecjid.org, 1 theclair.ca, 1 @@ -146283,7 +146471,6 @@ thecubepsych.com, 1 thecup.us, 1 thecureplainsong.tk, 1 -thecuriousdev.com, 1 thecurvyfashionista.com, 0 thecustomdroid.com, 1 thecustomizewindows.com, 1 @@ -146298,6 +146485,7 @@ thedailyreporteronline.com, 1 thedailyupvote.com, 1 thedaimon.cn, 1 +thedan.pl, 1 thedanceacademybuckscounty.com, 0 thedark.ga, 1 thedark1337.com, 1 @@ -146392,7 +146580,6 @@ theestateplanninggroup.com, 1 theestatesatstgeorge.com, 1 theesuhlmann.de, 1 -theeurekalife.com, 1 theeuropeanlibrary.org, 1 theevergreen.me, 0 theeverydayprepper.com, 1 @@ -146538,6 +146725,8 @@ thegreenfields.se, 1 thegreenhead.com, 1 thegreenlawreport.com, 1 +thegreenmanofyork.co.uk, 1 +thegreenmanofyork.com, 1 thegreenmanpottery.com, 1 thegreenpagebd.com, 1 thegroovecartel.com, 1 @@ -146580,7 +146769,6 @@ thehillstx.gov, 1 thehiltonfirm.tk, 1 thehinesgaphideaway.com, 1 -thehinhonline.com.vn, 1 thehivedesign.org, 1 thehoff.ddnss.de, 1 thehofstrachronicle.com, 1 @@ -146625,7 +146813,7 @@ theindra.eu, 1 theinitium.com, 0 theinnatrsf.com, 1 -theinsightsfamily.com, 1 +theinsightsfamily.com, 0 theinstitute.cf, 1 theinsurancealliance.com.au, 1 theinsurgence.org, 1 @@ -146649,17 +146837,14 @@ thejc.com, 0 thejewisheye.com, 1 thejkdrebel.com, 1 -thejoaustralia.com, 1 thejobhackers.org, 1 thejoneshub.com, 1 thejonsey.com, 0 -thejourneydesignstudio.com, 1 thejoykiller.tk, 1 thejpegstudio.com, 1 thejukebox.tk, 1 thejunkfiles.com, 1 thekalakriti.tk, 1 -thekenyatimes.com, 1 thekeralastore.co.uk, 1 thekev.in, 1 thekickassvirtualassistant.nl, 1 @@ -146672,7 +146857,6 @@ thekitsunesden.com, 1 thekittivibe.com, 1 thekliniquehotdeal.com, 1 -theknightrider.com, 1 theknittingnetwork.co.uk, 1 theknockout.tk, 1 theknockoutchampionship.com, 1 @@ -146724,6 +146908,8 @@ thelockerroom.ie, 1 thelocxresearch.tk, 1 thelodgeonlakedetroit.com, 1 +thelogicstudio.co.nz, 1 +thelogicstudio.nz, 1 thelondondesignawards.com, 1 thelondonflorist.com, 1 thelonelyones.co.uk, 1 @@ -146740,7 +146926,6 @@ theloveequation.com, 1 theloves.com, 1 thelowell.org, 1 -theluxurytraintravelcompany.com, 1 thelwallrangers.tk, 1 themacateam.com, 1 themachinestarts.com, 1 @@ -146791,7 +146976,6 @@ themexicos.tk, 1 themexx.at, 1 themiamimarathon.com, 1 -themiddle.co, 1 themiddlewoman.com.au, 1 themify.me, 1 themify.org, 1 @@ -146856,7 +147040,6 @@ thenewannual.com, 1 thenewannual.com.au, 1 thenewclassics.com, 1 -thenewdelhi.in, 1 thenewissue.tk, 1 thenews-chronicle.com, 1 thenewsfetcher.com, 1 @@ -146878,7 +147061,6 @@ thenowheremen.com, 1 thenrdhrd.nl, 1 thenudge.com, 1 -thenursery.it, 1 thenutritionalreset.ca, 0 thenviews.com, 1 theo.agency, 0 @@ -146902,7 +147084,6 @@ theodoreroosevelt.org, 1 theodorojr.com.br, 1 theofficeofangelascott.com, 1 -theofficeshop.ca, 1 theoffsetbinary.co.in, 1 theofleck.com, 0 theokouzelis.com, 1 @@ -147076,6 +147257,7 @@ therapie-psycho-emotionnelle.fr, 1 therapiepraxis-westbezirk.de, 1 therapyclient.com, 1 +therapyforblackmen.org, 0 therapyglobe.com, 1 therapynotes.com, 1 therapypartner.com, 1 @@ -147114,9 +147296,11 @@ theresapolicewi.gov, 1 theresingles.tk, 1 therestaurantstore.com, 1 +theresumeapp.com, 0 theretinachannel.com, 1 theretirementincomecalculator.com, 1 theretreatcostarica.com, 1 +thereunion.shop, 1 therevenge.me, 1 therevolutionist.tk, 1 therhetorical.ml, 0 @@ -147125,7 +147309,6 @@ therightmeal.nl, 1 therigy.com, 1 therigy.net, 1 -therisewellness.com, 1 theriverspecialist.com, 1 therlyn.info, 1 thermacon.com.au, 1 @@ -147152,9 +147335,9 @@ therokasshow.tk, 1 theroks.com, 1 theromexchange.com, 1 -theroot.com, 1 therootdental.com, 1 theros.org.uk, 1 +therowlinglibrary.com, 1 theroyal.tk, 1 theroyalyacht.com, 1 theruleslawyer.net, 1 @@ -147174,7 +147357,6 @@ thesage.cf, 1 thesage.ga, 1 thesagresapartments.com, 1 -thesalonthing.com, 1 thesaltpacketguy.com, 1 thesaltsanctuaryfl.com, 1 thesandb.com, 1 @@ -147316,7 +147498,6 @@ thethreadsmiths.com.tw, 1 thethreepercent.marketing, 1 thethymevortex.zapto.org, 1 -theticker.org, 1 thetimehotels.com, 1 thetinylife.com, 1 thetipo.eu, 1 @@ -147329,6 +147510,7 @@ thetopmovie.gq, 1 thetopsecretepisode.tk, 1 thetorlock.com, 1 +thetorturedman.com, 1 thetotalemaildelivery.com, 1 thetoto.tk, 1 thetowelcompany.be, 1 @@ -147361,7 +147543,6 @@ theunconventionalconventionists.tk, 1 theundefeated.com, 1 theunderzone.tk, 1 -theuneundtheune.de, 1 theunfolder.com, 1 theunitedstates.tk, 1 theuniversallover.tk, 1 @@ -147403,7 +147584,6 @@ thevirtualdetective.games, 1 thevirtualhealingroom.ca, 1 thevirtualhealingroom.com, 1 -thevirtuousdog.com, 1 thevisasofoz.com, 1 thevoga.com, 1 thevoid.one, 1 @@ -147421,7 +147601,6 @@ thewayofislam.ml, 1 thewbuhs.org, 1 theweakandthestrong.tk, 1 -thewebagent.com, 1 thewebbogan.com.au, 1 thewebcully.com, 1 thewebguru.net, 1 @@ -147430,6 +147609,7 @@ theweddingfit.com, 1 theweed.tk, 1 theweightlossmedics.co.uk, 1 +thewellblog.com, 1 thewest.tk, 1 thewhiteboxxx.com, 1 thewhitedog9487.xyz, 1 @@ -147447,6 +147627,7 @@ thewindowsclub.com, 1 thewinedelivery.ga, 1 thewisconsincountryclub.com, 1 +thewisemangroup.com, 1 thewish.ml, 1 thewish.tk, 1 thewolfpacket.org, 1 @@ -147456,11 +147637,13 @@ thewomensbusinesscenter.com, 0 thewoodkid.com.au, 1 thewoodlandsviplimousine.com, 1 +thewoodnorton.com, 1 thewoods.earth, 1 thewoolroom.com.au, 1 theworkingeye.nl, 1 theworksboulder.com, 1 theworkshop.tk, 1 +theworkswide.com, 1 theworld.org, 1 theworld.tk, 1 theworldexchange.com, 1 @@ -147489,6 +147672,7 @@ theyear199x.org, 1 theyearinpictures.co.uk, 1 theyellow.fish, 1 +theyellowsub.org, 1 theyosh.nl, 1 theysocial.tk, 1 thezillersathenshotel.com, 1 @@ -147539,7 +147723,7 @@ thilobuchholz.de, 1 thimbros.tk, 1 thimic.net, 1 -thimic.no, 1 +thimic.no, 0 thinair.co, 1 thinairsolutions.com, 1 thinegen.de, 1 @@ -147630,12 +147814,12 @@ thissimplifiedhome.com, 1 thistle.com, 1 thistle.group, 1 -thistleandleaves.com, 1 thisuniverse.tk, 1 thisyear.jp, 1 thitat.net, 1 thitruongsi.com, 1 thl.com, 1 +thlautogarage.nl, 1 thmarch.co.uk, 1 thn.la, 1 thoenesfamilierecht.nl, 1 @@ -147666,7 +147850,6 @@ thomaseikel.de, 1 thomaseyck.com, 1 thomasfoster.co, 1 -thomasgriffin.com, 1 thomasgriffin.io, 1 thomashunter.name, 0 thomaskaviani.be, 1 @@ -147676,6 +147859,7 @@ thomaspluschris.com, 1 thomasrichter.de, 1 thomass.tk, 1 +thomasstrne-jyotish.com, 1 thomastestor.tk, 1 thomastimepieces.com.au, 1 thomastonmaine.gov, 1 @@ -147763,6 +147947,7 @@ threatcon.org, 1 threatcon.shop, 1 threatcon.tv, 1 +threatemail.fr, 1 threatfender.com, 1 threatint.academy, 1 threatint.ai, 1 @@ -147770,13 +147955,7 @@ threatint.be, 1 threatint.blog, 1 threatint.ch, 1 -threatint.cloud, 1 -threatint.co.uk, 1 threatint.com, 1 -threatint.com.cy, 1 -threatint.consulting, 1 -threatint.cy, 1 -threatint.de, 1 threatint.directory, 1 threatint.dk, 1 threatint.email, 1 @@ -147804,7 +147983,6 @@ threatint.si, 1 threatint.social, 1 threatint.support, 1 -threatint.tv, 1 threatint.uk, 1 threatint.zone, 1 threatlabs.eu, 1 @@ -147814,6 +147992,7 @@ threatutic.gq, 1 three-gaits.org, 1 three-wheels.cf, 1 +threean.com.br, 1 threedpro.me, 1 threefantasy.com, 1 threefisheswebdesign.com, 1 @@ -147879,7 +148058,6 @@ thumbnail-download.com, 1 thumbnails.jp, 1 thumbsupcandy.com, 1 -thumbtack.com, 1 thumbzilla.com, 1 thummer.net, 1 thunderbase.tk, 1 @@ -147917,7 +148095,6 @@ thxandbye.de, 1 thycotic.ru, 1 thynx.io, 0 -thyrex.fr, 1 thyroidheadnecksurgery.com, 1 thyroidsurgery.com.sg, 1 thz.net, 0 @@ -147955,9 +148132,9 @@ tianibeeming.com, 1 tianibeeming.com.au, 1 tianjiaxi.com, 1 +tianjinair.com, 1 tianle.sh, 1 tianshili.me, 1 -tiantangbt.com, 1 tianwen.tk, 1 tianxicaipiao.com, 1 tianxicaipiao.win, 1 @@ -147970,9 +148147,12 @@ tib.org, 1 tib1.com, 1 tibabeach.com, 1 +tibagolden.com, 1 +tibaview.com, 1 tibber.com, 1 tibbitshall.ca, 1 tibc.ch, 1 +tibek-cnc-technik.de, 1 tiberian.tk, 1 tibetanmalashop.com, 1 tibiarock.tk, 1 @@ -148009,7 +148189,6 @@ ticketdeal.it, 1 ticketfan.es, 1 tickethut.be, 1 -ticketingforless.com, 1 ticketix.com, 1 ticketmaze.com, 1 ticketmeo.com, 1 @@ -148035,7 +148214,6 @@ ticketswap.ru, 1 tickettailor.com, 1 ticketunity.com, 1 -ticketure.com, 1 tickit.ca, 0 ticktbox.com, 1 ticnom.com, 1 @@ -148094,6 +148272,7 @@ tiens-ib.cz, 1 tiepao.cn, 1 tier5industries.com, 1 +tierarzt-karlsruhe-durlach.de, 1 tierarztpraxis-illerwinkel.de, 1 tieredaccess.com, 1 tierfaszienation.de, 1 @@ -148107,6 +148286,7 @@ tierramagnifica.com, 1 tierraprohibida.net, 1 tierschutz-niederrhein.de, 1 +tiersigma.com, 1 tiertreff24.de, 1 tiestech.net, 1 tiestofan.tk, 1 @@ -148125,7 +148305,6 @@ tiffany-remixed.tk, 1 tiffany.moe, 1 tiffanyblooms.ru, 1 -tiffanychristie.ca, 1 tiffanywatson.xyz, 1 tiffinohio.com, 1 tiffnix.com, 1 @@ -148176,6 +148355,7 @@ tijo.ch, 1 tijoe.net, 1 tik.edu.ee, 1 +tik.porn, 1 tikhonovy.ru, 1 tiki-god.co.uk, 1 tiki.id, 1 @@ -148269,6 +148449,7 @@ time-killers.tk, 1 time.cy, 1 time.gov, 1 +time.lk, 1 time.ly, 1 time.sh, 1 time2060.ru, 1 @@ -148278,6 +148459,7 @@ timebomb.tk, 1 timebookings.cf, 1 timebox.tk, 1 +timebucks.com, 1 timecamp.com, 1 timecamp.pl, 1 timecaptis.com, 1 @@ -148313,7 +148495,6 @@ timersuite.com, 1 timertomato.com, 1 timerway.com, 1 -timesamui.com, 1 timesdelphic.com, 1 timesedlen.dk, 1 timeserver0.de, 1 @@ -148321,7 +148502,6 @@ timeserver2.de, 1 timeserver3.de, 1 timesheetcomics.com, 1 -timeslive.co.ke, 1 timesloth.io, 1 timesofisrael.com, 1 timesofmalta.com, 1 @@ -148337,6 +148517,7 @@ timetoswingdance.co.uk, 1 timetravel-vienna.at, 1 timetravelforum.tk, 1 +timewall.io, 1 timewasters.nl, 1 timewasters.tk, 1 timewornlit.com, 1 @@ -148351,7 +148532,6 @@ timmcclure.ca, 1 timmerbedrijfpauel.nl, 1 timmermansadministratie.nl, 1 -timmermens.com, 1 timmistudio.com, 1 timmyrs.de, 1 timnash.co.uk, 1 @@ -148372,6 +148552,7 @@ timothybjacobs.com, 1 timothymartinezdmd.com, 0 timothyyip.photography, 1 +timotielens.nl, 0 timowi.de, 1 timoxbrow.com, 0 timqueen.com, 1 @@ -148499,6 +148680,7 @@ tips4gamers.com, 1 tips4india.tk, 1 tipsacademicos.com, 1 +tipsbymoh.tech, 1 tipsfinal.tk, 1 tipsforgamers.com, 1 tipshub.ro, 1 @@ -148803,6 +148985,7 @@ to-ya.jp, 1 to.cm, 0 to.gt, 1 +toabaja.com, 1 toabr.de, 1 toad.ga, 1 toadcreekmusic.com, 1 @@ -148936,6 +149119,7 @@ todosquerem.uno, 1 todosrv.com, 1 todotiendas.tk, 1 +toeflozeldersankara.com, 1 toeglhofer.at, 1 toeightycountries.com, 1 toekomstperspectief.be, 1 @@ -148957,7 +149141,6 @@ together.gov, 1 togetherplanning.com, 0 togetherprice.com, 1 -togetherwecam.com, 1 togetter.com, 1 togglename.ml, 1 togoweed.co, 1 @@ -149080,7 +149263,6 @@ tom0907.eu, 1 tomabrafix.de, 1 tomacino.de, 1 -tomaempleo.com, 1 tomahawkwi.gov, 1 tomahwi.gov, 1 toman.rs, 1 @@ -149138,7 +149320,6 @@ tomhol.cz, 1 tomi.ai, 1 tomi.cc, 1 -tomica.me, 1 tomik.cloud, 1 tomik.fun, 1 tomikoyco.com, 1 @@ -149232,6 +149413,7 @@ toncusters.nl, 1 tondescontos.com.br, 1 tondles.com, 1 +tonecircuit.com, 1 toneelaccent.tk, 1 tonegidoarchief.nl, 1 toneknowledge.com, 1 @@ -149330,6 +149512,7 @@ toolroomrecords.com, 1 tools-services.com.co, 1 tools.pro, 1 +tools4free.in, 1 tools4me.win, 0 toolsa.bg, 1 toolscompetition.org, 1 @@ -149351,7 +149534,7 @@ toomy.pri.ee, 1 toon.at, 1 toon.style, 1 -toonboom.com, 0 +toonboom.com, 1 tooncastle.tk, 1 toondah.com.au, 1 toondahjobs.com.au, 1 @@ -149378,6 +149561,7 @@ tootl.org, 1 tootsi.edu.ee, 1 tootsiewootsies4d.com, 1 +toovendre.com, 1 toowoonbayhp.com.au, 1 top-aanbiedingen.nl, 1 top-avis.fr, 1 @@ -149443,14 +149627,12 @@ topa.tk, 1 topagrar.com, 1 topan.tk, 1 -topangiangaz.com, 1 topanimecharacters.com, 1 topanlage.de, 1 toparkinfo.hu, 1 topas.tk, 1 topaxi.codes, 0 topazium.site, 1 -topbacgiangaz.com, 1 topbargains.com.au, 1 topbloc.com, 1 topbookmarking.cf, 1 @@ -149504,9 +149686,6 @@ topgrading.com, 0 topgshop.ru, 1 toph.co, 1 -tophaiduongaz.com, 1 -tophaiphongaz.com, 1 -tophanoiaz.com, 1 tophat.studio, 1 tophatpuffin.com, 0 tophighnorldiet.gq, 1 @@ -149611,6 +149790,7 @@ toptenwebhostingsites.com, 1 toptexture.com, 1 toptheto.com, 1 +toptica-eagleyard.com, 1 toptiernetworks.tk, 1 toptour.tk, 1 toptracks.tk, 1 @@ -149634,11 +149814,9 @@ topwowdesign.com, 1 topyachts-shop.com.ua, 1 topyachts.com.ua, 1 -topyenbaiaz.com, 1 topzamestnavatele.cz, 1 topzarabotok.ml, 1 tor.guide, 1 -tor2web.org, 1 tor4.cf, 1 torahanytime.com, 0 torako-sendai.com, 1 @@ -149650,7 +149828,7 @@ torbay.tk, 1 torbayrise.co.uk, 1 torch-fan.site, 1 -torch.security, 1 +torch.security, 0 torchbearer.tk, 1 torchmc.ru, 1 torchonline.com, 1 @@ -149695,6 +149873,7 @@ torontogid.cf, 1 torontohealthcare.tk, 1 torontoheights.ca, 1 +torontolife.com, 1 torontonews.tk, 1 torontopostcardclub.com, 0 torontopowerwalkers.ca, 1 @@ -149713,7 +149892,7 @@ torrecilladelaabadesa.tk, 1 torreconta.pt, 1 torrededonmiguel.tk, 1 -torrelorenzo.com, 1 +torrelorenzo.com, 0 torremarsalou.com, 1 torrent.fedoraproject.org, 1 torrent.is, 1 @@ -149728,6 +149907,7 @@ torrentfunk.com, 1 torrentfunk2.com, 1 torrentinvestments.com, 1 +torrentpower.com, 1 torrenttop100.net, 1 torrentz2.al, 1 torrero.tk, 1 @@ -149771,7 +149951,7 @@ toshkov.com, 1 toshl.com, 1 toskavista.de, 1 -tosolini.info, 1 +tosolini.info, 0 tosostav.cz, 1 tosshi-life.com, 1 tossitaway.tk, 1 @@ -149837,6 +150017,7 @@ totlan.tk, 1 totnastic.tk, 1 toto-realestate.com, 1 +toto.nl, 1 totobetty.com, 1 totodil.es, 1 totolabs.com, 1 @@ -149892,7 +150073,6 @@ toumeitech.com, 1 toupcreative.com, 1 touquet-volley.com, 0 -tour-de-franz.bike, 1 tour-japan.ml, 1 tour-vietnam.tk, 1 tourapp.io, 1 @@ -149947,18 +150127,33 @@ toussaint-romain.be, 1 tout-a-fait.fr, 1 tout-art.ch, 1 +tout-vendre.com, 1 +tout-vendre.fr, 1 +tout-vendre.ovh, 1 toutankamon.tk, 1 toutart.ch, 1 toutenmusic.fr, 1 toutiao.com, 1 toutmonexam.fr, 1 toutvendre.be, 1 +toutvendre.biz, 1 toutvendre.ch, 1 +toutvendre.ci, 1 toutvendre.cm, 1 +toutvendre.co, 1 +toutvendre.com, 1 toutvendre.es, 1 +toutvendre.eu, 1 toutvendre.fr, 1 +toutvendre.info, 1 toutvendre.lu, 1 +toutvendre.ma, 1 +toutvendre.mobi, 1 +toutvendre.net, 1 +toutvendre.org, 1 +toutvendre.ovh, 1 toutvendre.pics, 1 +toutvendre.re, 1 toutvendre.uk, 1 toutvendre.us, 1 touwhalster.tk, 1 @@ -150240,6 +150435,7 @@ toycu.de, 1 toyduck.ga, 1 toyfight.co, 0 +toylum.pe, 1 toymania.de, 1 toymarket.tk, 1 toyonaka-bungei.com, 1 @@ -150263,14 +150459,11 @@ toyshowthemusical.ie, 1 toysperiod.com, 1 toysplace.ml, 1 -toystech.com.ar, 1 toystory3.ga, 1 toyventure.ga, 1 tozawa.site, 1 tozdev.com, 1 -tp-events.co.uk, 1 tp-genie.com, 1 -tp-properties.co.uk, 1 tp-shipping.co.uk, 1 tp-technology.co.uk, 1 tpa.or.th, 0 @@ -150298,9 +150491,6 @@ tpk-parma.ru, 1 tpkbathrooms.com.au, 1 tplak.com, 1 -tpldevsg-mythiess-dev.azurewebsites.net, 1 -tplprodsg-mythiess.azurewebsites.net, 1 -tpltestsg-mythiess-test.azurewebsites.net, 1 tpmdigital.com, 1 tpolemis.com, 1 tpp-tpc.ga, 1 @@ -150323,10 +150513,12 @@ tqdev.com, 0 tqdn.cn, 1 tql.plus, 1 +tqno.net, 1 tqnx.link, 0 tr.search.yahoo.com, 0 tr0n.net, 1 tra-tra.be, 1 +tra.go.cr, 1 traas.org, 1 trabaja.xyz, 1 trabajadormigrante.gov, 1 @@ -150394,6 +150586,7 @@ tractorfan.nl, 1 tractorpumps.com, 1 tracxn.com, 1 +tracxtms.com, 1 tracyhaze.net, 1 tracymarinophotography.com, 1 tracyrobbinsking.com, 1 @@ -150418,7 +150611,6 @@ trademarkregistration-coimbatore.com, 1 trademen.ga, 1 trademotion.com, 1 -tradeonfx.com, 1 tradeorado.de, 1 tradeplotter.com, 1 traderfox.de, 0 @@ -150429,7 +150621,6 @@ tradernws.com, 1 traderpen.com, 1 traders-mag.it, 1 -tradersclub.com.br, 1 tradersport.tk, 1 tradersrank.ga, 1 traderssec.com, 1 @@ -150453,11 +150644,11 @@ tradinews.com, 1 tradinews.fr, 1 trading-academy.cf, 1 -trading-ea.pt, 1 tradingcenter.it, 1 tradingcomputers.com, 1 tradingdeer.io, 1 tradingfacile.eu, 1 +tradingfuturos.es, 1 tradinghelper.be, 1 tradingsetupsreview.com, 1 tradingtag.ga, 1 @@ -150589,7 +150780,9 @@ tramadol.ga, 1 tramadolhcl.ga, 1 tramclub-basel.ch, 1 +trames.ch, 0 tramikshop.ml, 1 +tramin.in, 1 tramitelegal.com.ar, 1 tramplin.tk, 1 tramway.org, 0 @@ -150658,6 +150851,7 @@ transes.com.tr, 1 transexport.pt, 1 transfair.sh, 1 +transfem.world, 1 transfer-sheregesh.com, 0 transfer-vsheregesh.ru, 0 transfer.pw, 1 @@ -150749,6 +150943,7 @@ transportelanzarote.com, 1 transporterlock.com, 0 transportforireland.ie, 1 +transporticonline.com, 1 transportnews.tk, 1 transportnsw.info, 1 transsensual.com, 1 @@ -150762,7 +150957,6 @@ transtechnology.fr, 1 transtema-ru.net, 1 transtextim.com, 1 -transtrack.net, 1 transtur.tk, 1 transvault.com, 1 transwank.com, 1 @@ -150774,7 +150968,6 @@ tranzact.net, 1 tranzron.ga, 1 trapay.net, 1 -trapcall.com, 1 trapezegroup.de, 1 trapiantionline.com, 1 trapichelaesperanza.com, 1 @@ -150804,11 +150997,13 @@ traslocare.roma.it, 1 traslocatore.roma.it, 1 traslochi-trasporti-facchinaggio.it, 1 +traslochi.eu, 1 traslochi.napoli.it, 1 traslochiinternazionali.it, 1 trasloco.milano.it, 1 traslocoeasy.it, 1 trasloedil.it, 1 +trasportatore.it, 1 trasportatori.it, 1 trasportoambulanzaprivata.it, 1 trastornoevitacion.com, 1 @@ -150846,6 +151041,7 @@ travel365.it, 1 travel4history.nl, 1 travel4news.at, 0 +travel4wellbeing.com, 1 traveladdiction.tk, 1 traveladventure.ml, 1 travelafricamag.com, 1 @@ -150938,7 +151134,6 @@ travelodge.co.uk, 1 travelofapps.uk, 1 traveloffline.ga, 1 -travelofmorocco.com, 1 travelogue.jp, 1 traveloka.com, 1 travelomega.ga, 1 @@ -150964,6 +151159,7 @@ travelrail.ga, 1 travelrates.ga, 1 travelraven.ga, 1 +travelrebel.co.za, 1 travelreviews.tk, 1 travelriny.com, 1 travelsets.com, 1 @@ -151006,7 +151202,6 @@ travelzoneshop.com, 1 travemestra.pt, 1 traverse.com.ua, 0 -travianbattleplanner.com, 1 travin.tk, 1 travis.nl, 1 traviscoesd1tx.gov, 1 @@ -151023,7 +151218,6 @@ traws.cymru, 1 traxpayroll.com, 1 traxstage.com, 1 -trayport.com, 0 traza.cl, 1 trazodoneonline.tk, 1 trazodononline.gq, 1 @@ -151041,6 +151235,7 @@ treaslockbox.gov, 1 treasure-dragon.com, 1 treasureboxgreetings.com, 1 +treasureboxhomes.org, 1 treasurecoastconnector.com, 1 treasureislandbeads.ga, 1 treasuremountainmining.com, 1 @@ -151067,6 +151262,7 @@ treehousemidigama.com, 1 treehouseresort.nl, 1 treeinspection.com, 1 +treeliss.com.br, 1 treemadeiras.com.br, 1 treeremovalfourways.co.za, 1 treeremovalsboksburg.co.za, 1 @@ -151167,7 +151363,6 @@ tresoro.at, 1 tresoro.de, 1 tresredatores.tk, 1 -tressallure.com, 1 tretinoin.gq, 1 tretinoineff.online, 1 treuhand-talente.ch, 1 @@ -151195,9 +151390,7 @@ trhknih.cz, 1 tri.gg, 1 triad.earth, 1 -triadtool.com, 1 triage.clinic, 1 -triage.com, 1 triage.md, 1 triageclinic.com, 1 triageforensic.com, 1 @@ -151230,7 +151423,6 @@ tribedynamics.com, 1 tribefanaticsunited.tk, 1 tribesbeekeepersassociation.com, 1 -tribesindia.com, 1 tribesofneurot.tk, 1 tribetrails.com, 1 tribetribune.com, 1 @@ -151272,6 +151464,7 @@ tridena.com, 1 trident-online.de, 1 trident1000logoi.gr, 1 +tridentaquatics.net, 1 tridentdiagnostics.com, 1 tridentfreightinc.com, 1 tridentmedia.gq, 1 @@ -151290,6 +151483,7 @@ trifiro.it, 1 trigate.io, 1 triggeredpaintz.com, 1 +triggerskills.com, 1 triggertraders.com, 1 trigirlpainting.com, 1 triglia.com, 1 @@ -151308,7 +151502,7 @@ trillian.im, 1 trillian.media, 1 trillionaire.ca, 1 -trilliondigital.io, 1 +trilliondigital.io, 0 trilliux.me, 1 trilogymp.com, 1 trim21.cn, 1 @@ -151343,7 +151537,6 @@ trinitatiskirche-leipzig.de, 1 trinity-um-church.org, 1 trinity.fr.eu.org, 1 -trinity.one, 1 trinitycore.org, 1 trinitycv.com, 1 trinityguardion.com, 1 @@ -151365,6 +151558,7 @@ trip.my, 1 tripadvicestore.tk, 1 tripanimal.tk, 1 +tripefactorysunderland.co.uk, 1 triperapp.com, 1 tripguide.is, 1 tripisland.tk, 1 @@ -151392,10 +151586,10 @@ trippers.info, 1 trippinktattoos.com, 1 trips4foodies.com, 1 -tripspoint.com, 1 triptap.ru, 1 triptravels.tk, 1 triptych.is, 1 +tripu.cz, 1 tripurainfo.com, 1 tripwire.io, 1 tripyana.com, 1 @@ -151509,7 +151703,6 @@ tropic.mu, 1 tropicalhurricanetracker.com, 1 tropicalislands.tk, 1 -tropicalstandard.com, 1 tropicalticket.cf, 1 tropicalticket.ml, 1 tropicaltravelco.com, 1 @@ -151592,6 +151785,7 @@ truckersworld.tk, 1 truckingks.gov, 1 truckshina-plus.com.ua, 1 +trucksimply.com, 1 truckslogic.com, 1 truckspring.com, 1 truckwashportal.nl, 1 @@ -151751,6 +151945,7 @@ trustcruit.com, 1 trustdental.jp, 1 trusted-medications.com, 1 +trusted-signatures.com, 1 trustedclothes.com, 1 trustedhost.site, 1 trustednetworks.nl, 1 @@ -151770,6 +151965,7 @@ truststamp.ai, 1 truststvincent.com, 1 trustswiftly.com, 1 +trustted.co.uk, 1 trustvision.pt, 1 trustvox.com.br, 1 trustycloud.net, 1 @@ -151873,7 +152069,6 @@ tsehaybank.com.et, 1 tseng.dedyn.io, 1 tsentrobuv.tk, 1 -tsenv.net, 1 tserverhq.com, 1 tsf.fyi, 1 tsfempleos.com, 1 @@ -151881,9 +152076,11 @@ tsgbcs.org, 1 tsgbit.net, 1 tshirai.work, 1 +tshirtatlowprice.com, 1 tshirtbea.com, 1 tshirtgenerator.ga, 1 tshirtmemoryquilts.com, 1 +tshirts.durban, 1 tshirtsangola.co.za, 1 tshirtsbotswana.co.za, 1 tshirtscapetown.com, 1 @@ -151905,10 +152102,8 @@ tsishipping.com, 1 tsja.tk, 1 tsk.ovh, 1 -tskikoh.com, 1 tskimwagner.com, 1 tsla.nu, 1 -tslcontractors.co.uk, 0 tsmasseur.com, 1 tsmost.cz, 1 tsna.cc, 1 @@ -151935,11 +152130,8 @@ tsuda-dental-ortho.info, 1 tsueri.cloud, 1 tsugedental-kids.tokyo, 1 -tsugedental.com, 1 tsukasa-gallery.com, 1 tsukhani.com, 1 -tsukikoh.com, 1 -tsukikoh.jp, 1 tsukuba-it.net, 1 tsukuba.style, 0 tsumegumi.com, 1 @@ -151976,7 +152168,6 @@ tt8366.com, 1 tt9297.co, 1 tt9728.co, 1 -ttasllc.com, 1 ttaxus.com, 1 ttb.gov, 0 ttbonline.gov, 1 @@ -152063,8 +152254,11 @@ tucson.com, 1 tucsonfcu.com, 1 tucsonpcrepair.com, 1 +tucsonsewerscopes.com, 1 tucuatro.com, 1 +tucuxi.org, 1 tudinerito.tk, 1 +tudinhoparasuacasa.com.br, 1 tudodebompresentes.com.br, 1 tudorbotezatu.com, 1 tudorproject.org, 1 @@ -152072,6 +152266,7 @@ tudou.tw, 1 tudoxwallprinter.com, 1 tueplay.host, 1 +tuercenter.de, 1 tueri.eu, 1 tuerkei-immobilien.tk, 1 tuespr.com, 1 @@ -152101,7 +152296,6 @@ tuinhout-compleet.nl, 1 tuinieren.tk, 1 tuinmeubelkorting.nl, 1 -tuinvogeltelling.nl, 1 tuitle.com, 1 tuja.hu, 1 tujardin.casa, 1 @@ -152142,7 +152336,6 @@ tulpawiki.org, 1 tulsa.tech, 1 tulsafathers.com, 1 -tulsahistory.org, 1 tulsameetingroom.com, 1 tulsaworld.com, 1 tulumcosmeticos.com.br, 1 @@ -152319,7 +152512,6 @@ turkrap.tk, 1 turkreno.com, 1 turkrock.com, 1 -turkscaicos.villas, 1 turksell.ru, 1 turksite.tk, 1 turksiteleri.tk, 1 @@ -152360,7 +152552,7 @@ turquoise.health, 1 turquoisetassel.com, 1 turretlabs.io, 1 -tursa.com.au, 1 +tursiae.org, 1 turtle.ai, 0 turtleduckstudios.com, 1 turtlehead.tk, 1 @@ -152370,7 +152562,6 @@ turtlezone.de, 1 turtunis.ml, 1 turul.tk, 1 -turuncu-sepet.com, 1 turunculevye.com, 1 tus-kikishinkyo.jp, 1 tus.si, 1 @@ -152435,6 +152626,7 @@ tuttohackintoshcydiajailbreak.org, 1 tuttonotizie.eu, 1 tuttopappagalli.it, 1 +tuttoperlestetica.com, 1 tutu.green, 1 tutu.ro, 1 tutucos.com, 1 @@ -152569,7 +152761,7 @@ tvtvtv.cz, 1 tvyvideo.com, 1 tvzahist.com.ua, 1 -tw-analytics.com, 1 +tw-analytics.com, 0 tw-louis.com, 0 tw.edu.pl, 1 tw.search.yahoo.com, 0 @@ -152640,7 +152832,6 @@ twistbets.com, 1 twistedfamilies.com, 1 twistedoakonline.com, 1 -twistedpig.co.uk, 1 twistedservers.com.au, 1 twistedtea.com, 1 twistedwave.com, 1 @@ -152660,7 +152851,7 @@ twitcker.com, 1 twittelzie.nl, 1 twitter.ax, 1 -twitter.com, 0 +twitter.com, 1 twitterdriver.io, 1 twittervid.com, 1 twittpr.com, 1 @@ -152677,7 +152868,6 @@ twobridges.co.uk, 1 twobrothersbbq.com, 0 twobrothersinn.com, 1 -twocatsinacaravan.xyz, 1 twoconnect.com, 0 twocornertiming.com, 1 twodadsgames.com, 1 @@ -152718,6 +152908,7 @@ txhb.gov, 1 txlocksmiththewoodlands.com, 1 txlrs.org, 1 +txokachat.cc, 1 txryan.com, 1 txsmartbids.gov, 1 txsmartbuy.gov, 1 @@ -152916,7 +153107,6 @@ u15p1.com, 1 u15p2.com, 1 u15p5.com, 1 -u15p6.com, 1 u15p7.com, 1 u15p8.com, 1 u15x.com, 1 @@ -152938,7 +153128,6 @@ u6a5hqf.top, 1 u7ae.com, 1 u81365.com, 1 -u82365.com, 1 u9297.co, 1 u9728.co, 1 ua-1x-bet.com, 1 @@ -152980,7 +153169,6 @@ uatuning.com.ua, 1 uatx.mx, 1 uavis.com.au, 1 -uawarvictims.org, 1 ub.edu.vn, 1 ub3rk1tten.com, 1 uba-tra.tk, 1 @@ -152988,10 +153176,10 @@ ubaldopoa.tk, 1 ubanks.com.ua, 1 ubcani.com, 0 +ubedacomercial.com, 1 ubeen.to, 1 uber-work.tk, 1 uberactivist.com, 1 -uberagent.com, 1 uberalles.live, 1 uberboxen.net, 1 ubereatspos.com, 1 @@ -153009,7 +153197,6 @@ ubezpieczenienanarty.pl, 1 ubezpieczenienarciarskie.pl, 1 ubezpieczenienazycie.net.pl, 1 -ubezpieczeniepsa.com, 1 ubezpieczenieturystyczne.com.pl, 1 ubezpieczeniezycia.pl, 1 ubezpieczeniezyciowe.pl, 1 @@ -153029,6 +153216,7 @@ uborka-812.ru, 1 uborka-kvartir-moskva.gq, 1 uborka-snega.ga, 1 +ubrains.net, 1 ubtech.edu, 1 ubun.kr, 1 ubun.net, 1 @@ -153123,6 +153311,7 @@ udtonline.com, 1 udvoukocek.eu, 1 ue30.fun, 1 +uea-inc.com, 1 ueba1085.jp, 1 ueberaus.de, 1 ueberdosis.io, 0 @@ -153133,6 +153322,7 @@ uedaviolin.com, 1 uefeng.com, 0 uefs.eu, 1 +ueken-ob.com, 1 uel-thompson-okanagan.ca, 1 ueliexpress.ch, 1 uem.org.in, 1 @@ -153142,7 +153332,6 @@ uesltt.com, 1 uesociedadlimitada.com, 1 uestc.icu, 1 -uf-ace.com, 1 uf-lmsan.pt, 1 ufa-news.net, 1 ufa-soft.tk, 1 @@ -153173,7 +153362,6 @@ ugd.ro, 0 ugeek.tk, 1 uggedal.com, 1 -uggonlinestoreofficialol.us, 1 ugirlx.com, 1 ugli.com, 1 uglsc.it, 1 @@ -153182,6 +153370,7 @@ uglycat.net, 1 uglycat.org, 1 uglycat.social, 1 +uglydogpgh.com, 0 uglypeople.com, 1 ugmtc.org, 1 ugolovnyj-advokat.cf, 1 @@ -153189,7 +153378,6 @@ ugra-news.net, 1 ugrod.ru, 1 ugsonline.tk, 1 -uguragdas.com.tr, 1 ugurkorkmazyurek.com, 1 ugurnakliyat.com.tr, 1 uguu.se, 1 @@ -153207,8 +153395,6 @@ uhhospitals.org, 1 uhighmidway.com, 1 uhingaro.com, 0 -uhl.cloud, 1 -uhl.site, 1 uhlhosting.ch, 1 uhms.org, 1 uhnwarfarinedu.ca, 1 @@ -153320,6 +153506,7 @@ ukutabs.com, 1 ukwct.org.uk, 1 ul-fluglehrer.de, 1 +ulada.co.za, 1 ulax.org, 1 ulax.tk, 1 ulbr.dnshome.de, 1 @@ -153353,7 +153540,6 @@ ulsterbank.ie, 1 ulsters.cf, 1 ulstersheriffny.gov, 1 -ultaa.ru, 0 ultahost.com, 1 ultalabtests.com, 1 ultima-ratio.at, 1 @@ -153368,6 +153554,7 @@ ultimatecheerleaders.com, 1 ultimateclub.tk, 1 ultimateconnector.com, 1 +ultimatefightgear.shop, 1 ultimatefilmpromotion.com, 0 ultimategaming.tk, 1 ultimatehalo.tk, 1 @@ -153416,6 +153603,7 @@ ulyanovsk-news.net, 1 ulyanovsk73.tk, 1 ulyanovskcity.tk, 1 +ulys.ch, 1 ulysses.co.uk, 1 ulyssesenergy.it, 1 um-sachsen-pictures.de, 1 @@ -153423,7 +153611,6 @@ um6p.ma, 1 umagoyal.com, 1 umami.vercel.app, 1 -umamibbqsushi.com, 1 umamibites.com, 1 umanityracing.com, 1 umanupszn.gov.ua, 1 @@ -153484,6 +153671,7 @@ umzugsunternehmenberlin.eu, 1 un-box.org, 1 un-zero-un.fr, 1 +una.py, 1 unaffectedsound.tk, 1 unai-yus.tk, 1 unaidesarrolladorweb.com, 1 @@ -153511,6 +153699,7 @@ unblocked.cx, 1 unblockit.download, 1 unblog.ch, 1 +unbollowed.com, 1 unbolt.cf, 1 unbonavocat.fr, 1 unbored.net, 1 @@ -153533,7 +153722,6 @@ uncut.wtf, 1 uncuteyes.tk, 1 uncuttype.wtf, 1 -undanganelektronik.com, 1 undangankoo.com, 1 undawns.tk, 1 undelightfully.tk, 1 @@ -153546,6 +153734,7 @@ undercliff.tk, 1 underconsideration.com, 1 underconstruction.co.nz, 1 +undercover.cn, 1 undercoverxp.tk, 1 undercucho.tk, 1 underdestruction.tk, 1 @@ -153563,7 +153752,9 @@ undershoping.tk, 1 underskatten.tk, 1 underskog.no, 1 +understandingmoney.gov.au, 1 understandmaths.co.za, 1 +undertake.fr, 1 undertow.ga, 1 underwaterasia.info, 1 underwear-fashion.tk, 1 @@ -153587,6 +153778,7 @@ unefuite.ch, 0 unej.org, 1 uneltemasini.ro, 1 +unemployedunion.org.uk, 1 unemployment.ga, 1 unemployment.gov, 1 unescoclub.tk, 1 @@ -153595,7 +153787,6 @@ unewsonline.com, 1 unexcited.tk, 1 unexpected.nu, 1 -unexplainedthings.net, 1 unexplored-belarus.tk, 1 unexplored-moscow.tk, 1 unf.dk, 1 @@ -153632,6 +153823,7 @@ unia.es, 1 unian.info, 1 uniaofraternalraulcury.com.br, 1 +unibaby.com, 1 unibet.bz, 1 unibet.ltd, 1 unibev.net, 1 @@ -153782,6 +153974,7 @@ unison-d.com, 1 unisonglobal.com, 1 unisontech.org, 1 +unisplendour.com, 1 unistudio.it, 1 unisul.br, 1 unit-linked.ru, 1 @@ -153808,6 +154001,7 @@ unitedcyberdevelopment.com, 1 unitedforwildlife.org, 1 unitedkingdoms-guild.com, 1 +unitedliners.com, 1 unitedlisbon.school, 1 unitedsiteservices.com, 1 unitedstables.tk, 1 @@ -153833,6 +154027,7 @@ unitizer.com, 1 unito.io, 1 unitop.bg, 1 +unitpurchaseplan.com, 1 unitreedoor.com, 1 unitycardiology.com.au, 1 unityconsciousnessbooks.com, 1 @@ -153919,7 +154114,6 @@ unixauto.sk, 1 unixer.tk, 1 unixforum.org, 1 -unixfox.eu, 1 unixgeeks.net, 1 unixhost.ga, 1 unixteam.de, 1 @@ -153954,6 +154148,7 @@ unlockscheveningen.nl, 1 unlocktalent.gov, 1 unlocktoolactivation.in, 1 +unlockyourbrain.bzh, 1 unluco.com, 1 unmarkdocs.co, 1 unmask.earth, 1 @@ -154022,6 +154217,7 @@ unser-gartenforum.de, 1 unsigcrazy.art, 1 unsiteavous.fr, 1 +unsiteweb.fr, 1 unsourirealecole.fr, 1 unstable.fun, 1 unstable.systems, 1 @@ -154043,7 +154239,6 @@ untethereddog.com, 0 unti.me, 1 unti.tk, 1 -untouchableaf.com, 1 untrading.org, 1 untvweb.com, 1 unufoundation.com, 1 @@ -154066,6 +154261,7 @@ unyouth.nz, 1 unyouth.org.nz, 1 uoflhealth.org, 1 +uonly.ai, 1 uopeople.reviews, 1 uoui.de, 1 up-date-app.com, 1 @@ -154081,13 +154277,13 @@ up2tech.fr, 1 up2university.eu, 1 upaaquila.org, 1 +upahminimum.com, 1 upaisa.com, 1 upakovka-podarkov.tk, 1 upandatom.biz, 1 upandrunningtutorials.com, 1 upanh.org, 1 upar.org, 1 -upay.ru, 1 upay.uz, 1 upbad.com, 1 upbatangan.tk, 1 @@ -154144,6 +154340,7 @@ upholsterydesign.com.au, 1 uphost.be, 1 uphshrine.net, 1 +upidautomation.in, 1 upitnik.rs, 1 upjong.co.kr, 1 upl.pp.ua, 1 @@ -154176,7 +154373,6 @@ upnext.tk, 1 upnorth.solutions, 1 uportal.tk, 1 -uppbeat.io, 1 uppercloud.cf, 1 upperdeschuteswatershedcouncil.org, 1 upperglass.co.uk, 1 @@ -154210,8 +154406,11 @@ uprep.ml, 1 upressonline.com, 1 uprh.edu, 1 +uprighttrades.com, 1 uprint.it, 1 uprisehigh.com, 1 +uprizenow.com, 1 +uprooting.co.uk, 1 upropay.com, 1 upschreven.blog, 0 upseed.ru, 1 @@ -154294,7 +154493,6 @@ urbanartisan.cf, 1 urbanbageecha.com, 0 urbanbikeweamr.ga, 1 -urbanblend.lk, 1 urbanbooks.tk, 1 urbancoyoteresearch.com, 0 urbancreators.dk, 1 @@ -154396,7 +154594,6 @@ urlive.ga, 1 urljournal.tk, 1 urlparse.com, 1 -urlr.me, 1 urlrating.com, 1 urlrewriting.net, 1 urlscan.io, 1 @@ -154502,10 +154699,10 @@ usbr.gov, 1 uscarjunker.com, 1 uscc.org.ua, 1 +uscdn.xyz, 0 uscis.gov, 1 uscitizenship.info, 1 uscloud.nl, 1 -usconsulate.gov, 1 uscp8.com, 1 usctt.org, 1 uscurrency.gov, 1 @@ -154528,15 +154725,12 @@ usebubbles.com, 1 used-laptop.in, 1 used255.xyz, 1 -usedasun.com, 1 usedoilfieldhouses.com, 1 useful-thing.ru, 1 usefulinsight.com, 1 -usefultravelsite.com, 1 useguestlist.com, 1 useinsider.com, 1 useloom.com, 1 -usembassy.gov, 1 usemergencyservices.com, 1 usenet.tk, 1 usenethd.li, 1 @@ -154557,6 +154751,7 @@ userstyles.world, 1 usetypo3.com, 1 useworkshop.com, 1 +useworkshopapp.com, 1 useyourloaf.com, 1 usfa.gov.ua, 1 usfriesianreferral.com, 1 @@ -154595,7 +154790,6 @@ usmantrader.gq, 1 usmiddleclass.net, 1 usmint.gov, 1 -usmission.gov, 1 usmoneyreserve.com, 1 usmrecycles.com, 1 usnews-new.tk, 1 @@ -154619,7 +154813,7 @@ uspon.tk, 1 usportsgo.com, 1 uspory.cz, 1 -uspsblog.com, 1 +uspsblog.com, 0 uspsoig.gov, 1 uspsolutions.at, 1 usrspace.at, 1 @@ -154666,7 +154860,6 @@ utahcanyons.org, 1 utahcountydjcompany.com, 1 utahfireinfo.gov, 1 -utahfoodbank.org, 1 utahlake.gov, 1 utahlivebands.com, 1 utahmotors.ru, 1 @@ -154692,6 +154885,7 @@ utiao.net, 1 utiars.com, 1 uticagravel.com, 1 +utilajedepadure.ro, 1 utilajexpert.ro, 1 utilbot.co, 1 utilful.com, 1 @@ -154770,12 +154964,10 @@ uvsa.org.au, 1 uvsar.com, 1 uvt.com.co, 1 -uvx.io, 1 uwac.co.uk, 0 uwalumni.com, 0 uwat.cc, 1 uwat.cf, 1 -uwcstrategy.org, 1 uwdigitaleboekhouder.nl, 1 uwe-arzt.de, 1 uwe-reimold.com, 1 @@ -154800,6 +154992,7 @@ uwu.tw, 1 uwv.nl, 0 uwwsb.com, 1 +ux-designers.nl, 1 ux-solution.de, 0 ux.pub, 1 uxdesignerjobs.nl, 1 @@ -154843,7 +155036,6 @@ uzparimatch.com, 1 uzsvm.cz, 1 uztop.ml, 1 -uzvod.com, 1 uzzamari.com, 1 uzzamari.com.br, 1 v-cn.net, 1 @@ -154861,6 +155053,7 @@ v-spin.cz, 1 v-tek.fi, 1 v-x-p.com, 1 +v-zone.org, 1 v.pn, 1 v.ps, 1 v0ctor.me, 1 @@ -154903,7 +155096,6 @@ v700ee.com, 1 v700w.com, 1 v81365.com, 1 -v82365.com, 1 v83.digital, 1 v88158.com, 0 v8abc.com.br, 1 @@ -154965,7 +155157,6 @@ vadik.me, 1 vadillodelasierra.tk, 1 vadis.tk, 1 -vadkuhparty.xyz, 1 vado.li, 1 vadoo.tv, 1 vadosware.io, 1 @@ -154996,7 +155187,6 @@ vagrantup.com, 0 vagroupcontinental.com, 1 vague-normande.com, 1 -vagueaf.com, 1 vahak.in, 0 vahl.blue, 1 vahle.de, 1 @@ -155104,6 +155294,7 @@ validbot.com, 1 validius.fi, 1 validius.net, 1 +validooo.de, 1 valifai.com, 1 valigate.com, 1 valigrama.ro, 1 @@ -155125,6 +155316,7 @@ vallansuunta.net, 1 vallartense.tk, 1 valledealcudia.net, 1 +valledealcudiaeventos.es, 1 valledeleresma.tk, 1 valledibraies.org, 1 vallee-egoutiers.ca, 1 @@ -155199,6 +155391,7 @@ valueresearchonline.com, 1 values.com, 1 valueseed.net, 1 +valuetree.in, 1 valunet.co.za, 1 valuoo-legal.com, 1 valuskills.co.za, 1 @@ -155294,7 +155487,6 @@ vaneyckwashere.eu, 1 vaneyckwashere.gent, 1 vangenderententverhuur.nl, 1 -vangest.com, 1 vangest.pt, 1 vangoghcoaching.nl, 1 vanguards.tk, 1 @@ -155339,8 +155531,6 @@ vantagepointpreneed.com, 1 vantagesfa.com, 1 vantharp.com, 1 -vantien.com, 1 -vantiq.com, 1 vantru.is, 1 vanuithartenziel.nl, 1 vanvanlines.com, 1 @@ -155360,9 +155550,9 @@ vanyavpn.cc, 1 vanyavpn.cl, 1 vanyavpn.co, 1 +vanyavpn.ec, 1 vanyavpn.gg, 1 vanyavpn.hn, 1 -vanyavpn.id, 1 vanyavpn.im, 1 vanyavpn.io, 1 vanyavpn.net, 1 @@ -155402,6 +155592,7 @@ vapoteuse.fr, 1 vapourtown.com, 1 vapteke.ru, 1 +vaptkidsight.azurewebsites.net, 1 var.cc, 1 varaani.tk, 1 varalaval.com, 1 @@ -155421,7 +155612,6 @@ variatesonline.tk, 1 variatkowo.pl, 1 varied.ga, 1 -varierchairs.com, 1 varimesmirou.cz, 1 variohyp.de, 1 variomedia.de, 1 @@ -155432,7 +155622,6 @@ varlin.tk, 1 varney.tk, 1 varnish.ga, 1 -varoscak.de, 1 varshathacker.com, 1 varun-rajeshwari.tk, 1 varunagw.com, 1 @@ -155442,7 +155631,6 @@ varztupasaulis.lt, 1 varztupasaulis.net, 1 vas-webmaster.cz, 1 -vas.com, 1 vasaconsulting.com, 1 vasafitness.com, 1 vasankari.fi, 1 @@ -155556,8 +155744,6 @@ vcahospitals.com, 1 vcanederland.nl, 1 vcard.mx, 1 -vcare.group, 1 -vccload.com, 1 vccv.cc, 0 vcdspro.de, 1 vcebookclub.com.au, 1 @@ -155575,6 +155761,7 @@ vconstruct.com, 1 vcore.au, 1 vcot.info, 1 +vcp.pt, 1 vcpa.gov, 1 vcperinatologickedny.cz, 1 vcraftaudio.com, 1 @@ -155586,6 +155773,7 @@ vcsource.tk, 1 vcsw-digitaal.nl, 1 vcti.cloud, 1 +vctpl.com, 1 vcz.fr, 1 vczk.me, 1 vd42.net, 0 @@ -155593,7 +155781,6 @@ vdagestan.tk, 1 vdalabs.com, 1 vdbongard.com, 1 -vdcomp.cz, 0 vddruckwerk.de, 1 vdele.mobi, 1 vdheyden.net, 0 @@ -155677,7 +155864,7 @@ vega-rumia.com.pl, 1 vega.education, 1 vegaawards.com, 1 -vegaforeducation.com, 1 +vegaforeducation.com, 0 vegalanguageacademy.ca, 1 vegan-essen.tk, 1 vegan-kochen.tk, 1 @@ -155829,8 +156016,26 @@ vendorful.com, 1 vendorleasing.uk, 1 vendorpedia.com, 1 +vendre-tout.com, 1 +vendre-tout.fr, 1 +vendre-tout.ovh, 1 vendreacheter.be, 1 vendreacheter.net, 1 +vendreacheter.org, 1 +vendreouacheter.net, 1 +vendretoo.com, 1 +vendretout.be, 1 +vendretout.ch, 1 +vendretout.co, 1 +vendretout.com, 1 +vendretout.eu, 1 +vendretout.fr, 1 +vendretout.lu, 1 +vendretout.net, 1 +vendretout.org, 1 +vendretout.ovh, 1 +vendretout.uk, 1 +vendretout.us, 1 vendserve.eu, 1 vendsoefoutra.ga, 1 vendsoefoutra.ml, 1 @@ -155910,6 +156115,7 @@ venusmed.clinic, 1 venusplc.com, 1 venzeo.com, 1 +veoconocimiento.com, 1 veonow.com, 1 vepein.ga, 1 vepein.gq, 1 @@ -155923,6 +156129,7 @@ veraltis.ro, 1 veramagazine.jp, 0 veramark.cl, 1 +verandering-berlin.de, 1 veranovivo.com, 1 verasani.ch, 1 verasani.com, 1 @@ -155935,9 +156142,6 @@ verbert.be, 1 verbier-lechable.com, 1 verbierfestival.com, 0 -verbindingsboerderij.nl, 1 -verbindingsboerderijdekoolberg.nl, 1 -verbmaestro.com, 1 verboom.co.nz, 1 verboon.info, 1 verbundkredit.ag, 1 @@ -155980,7 +156184,6 @@ vergessen.cn, 1 vergezogt.nl, 1 vergilevhasi.com.tr, 1 -vergilioferreira.pt, 1 vergraal.tk, 1 verhalenwerf.nl, 1 verhaltenstherapie-weiden.de, 1 @@ -155998,10 +156201,12 @@ verifiedcliq.com, 1 verifiedhandles.org, 1 verifiedjoseph.com, 0 +verifiermesactions.com, 1 verifiny.com, 1 verifize.co.za, 1 verify-365.com, 0 verify.gov.sg, 1 +verifymyeligibility.com, 1 verifyos.com, 1 verifyyourip.com, 1 verigom.com, 1 @@ -156108,6 +156313,7 @@ verstka.ga, 1 verstka.tk, 1 verstraetenusedcars.be, 1 +versus-hair.com, 1 versus-projects.com, 1 versusforum.tk, 1 vertanex.com, 1 @@ -156176,7 +156382,6 @@ verzo.com.br, 1 vesaviljanen.fi, 1 vescudero.net, 1 -veseleruska.sk, 1 veselka.tk, 1 veselyjpovar.gq, 1 vesen.tk, 1 @@ -156216,13 +156421,13 @@ vetafarm.com.au, 1 vetantumapu.cl, 1 vetbilgi.com, 1 -vetbits.com, 0 vetcard.info, 1 vetch.ga, 1 vetchek.au, 1 vetchek.com.au, 1 vetclick.com, 1 vetcoretech.com, 1 +veteranarmy.com, 1 veteranpcs.com, 0 veterans-railcard.co.uk, 1 veteransadvantage.com, 1 @@ -156236,12 +156441,14 @@ veterinanmnm.eu, 1 veterinarian-hospital.com, 1 veterinario.milano.it, 1 +veterinario.napoli.it, 1 veterinario.roma.it, 1 veterinary-colleges.com, 1 veterinaryhelp.cf, 1 veterinaryvision.co.uk, 1 veteriner.name.tr, 1 veterquimica.pe, 1 +vetexpressmobilevet.com.au, 1 vetgraph.com, 1 vetikalender-berlin.de, 1 vetinte.eu, 1 @@ -156261,7 +156468,6 @@ vetruvet.com, 1 vets.gov, 1 vetscore.co.za, 1 -vetsite.cloud, 1 vetsmarketing.co.za, 1 vetspecialists.co.uk, 1 vetspecialiststherapy.co.uk, 1 @@ -156347,7 +156553,6 @@ viagratop.tk, 1 viagusto.pl, 1 viajecaminodesantiago.com, 1 -viajesotur.com, 1 viaknit.ru, 1 vialibido.com.br, 1 vialknives.com, 1 @@ -156410,6 +156615,7 @@ vickylarraz.tk, 1 vickyoliver.tk, 1 vicmatus.com, 1 +vico.vn, 1 vicrecyclers.com.au, 1 vicsancab.com, 1 victimizer.tk, 1 @@ -156447,6 +156653,7 @@ victoriacountytx.gov, 1 victoriaharmandjieva.art, 1 victoriaheritagefoundation.ca, 1 +victoriaisabel.cl, 1 victoriait.com.au, 1 victoriamn.gov, 1 victorianosaez.tk, 1 @@ -156512,6 +156719,7 @@ videoenglish.net, 1 videogamer.com, 1 videogamerreader.tk, 1 +videogamers.com.ar, 1 videogamesartwork.com, 1 videograb.ga, 1 videograb.ml, 1 @@ -156522,7 +156730,6 @@ videojuegos.com, 1 videoload.co, 1 videomagic.ai, 1 -videomail.io, 1 videomaker.it, 1 videomaniya.ml, 1 videomarketermastery.com, 1 @@ -156531,7 +156738,6 @@ videonovinky.cz, 1 videopediablogs.tk, 1 videopokerez.cf, 1 -videopornoitaliana.com, 1 videoprikol.cf, 1 videoprikoly.ga, 1 videoremote.tk, 1 @@ -156623,6 +156829,7 @@ vierdaagsehotel.nl, 1 vieref.eu, 1 vierna.ga, 1 +viernesnegro.net, 1 vierpfeile.de, 1 vierpluseins.wtf, 1 viesaholiday.com, 1 @@ -156637,7 +156844,6 @@ vietnam-lifer.com, 1 vietnam-melbet.mobi, 1 vietnam-tours.tk, 1 -vietnamairlinesgiare.vn, 1 vietnameselove.com, 1 vietnamhairs.com, 1 vietnamhost.vn, 0 @@ -156665,7 +156871,6 @@ viewpointsfromfacebook.com, 1 viewsea.com, 1 viewstub.com, 1 -viewzipcode.com, 1 viez.vn, 1 vifranco.cl, 1 vifsoft.com, 1 @@ -156682,7 +156887,6 @@ vigliano.com, 1 vigneshkumar.com, 1 vignette.eco, 1 -vignoble-ile-oleron.fr, 1 vignobles-querre.com, 1 vignoblesdeletat.ch, 1 vigo-krankenversicherung.de, 1 @@ -156692,7 +156896,6 @@ vigoritout.com, 1 vigorous.co.il, 1 vigorspa.it, 1 -vigoxatelier.tech, 1 vigrid.online, 1 vigridpartiet.tk, 1 vihadigitalcommerce.com, 1 @@ -156733,9 +156936,16 @@ vikrantkakad.in, 1 viksbergshr.se, 1 viktor-chin-kon-sung.com, 1 +viktor-chin-kon-sung.nl, 1 +viktor-chin.com, 1 +viktor-chin.nl, 1 viktorch.in, 1 +viktorchin.com, 1 +viktorchin.nl, 1 viktorchin.online, 1 viktorchin.site, 1 +viktorchinkonsung.com, 1 +viktorchinkonsung.nl, 1 viktorchinkonsung.online, 1 viktorchinkonsung.site, 1 viktoria-goo.com, 1 @@ -156759,6 +156969,7 @@ vilans.nl, 1 vilantice.cz, 1 vilaonze.com.br, 1 +vilasantina.com.br, 1 vilavilma.si, 1 vilavyhlidka.cz, 1 vilawatt.cat, 1 @@ -156782,7 +156993,6 @@ villa-christina.com, 1 villa-concordia.de, 1 villa-gockel.de, 1 -villa-luna.it, 1 villa-olivari.it, 1 villa-ottone.net, 1 villa-toscana.berlin, 1 @@ -156988,13 +157198,13 @@ vineeth.uk, 1 vineethavarma.com, 1 vinehall.ie, 1 +vinehost.net, 1 vinelli.de, 1 vinepower.co.nz, 1 vineripenutrition.com, 1 vinesauce.info, 1 vineta.tk, 1 vinetalk.net, 1 -vineyard-wash.com, 1 vineyardchurches.org.uk, 1 vineyardscartersville.com, 1 vingahiss.se, 1 @@ -157028,7 +157238,6 @@ vinorossoconero.com, 1 vinoshipper.com, 1 vinovum.net, 1 -vinoxo.in, 1 vinsation.com, 1 vinsonfinancials.tk, 1 vinstafood.com, 1 @@ -157053,7 +157262,6 @@ vinumenu.com, 1 vinyl-digital.com, 1 vinylbasement.tk, 1 -vinylbro.com, 1 vinylfencestlouis.com, 1 vinylplus.eu, 1 vinzer.tk, 1 @@ -157213,6 +157421,7 @@ virtualmemento.tk, 1 virtualmt2.pl, 1 virtualnet.ec, 1 +virtualofficefrance.com, 1 virtualpavilion.co, 1 virtualprom.tk, 1 virtualroad.org, 1 @@ -157287,13 +157496,13 @@ visibilitygurus.com, 1 visiblethoughts.co.uk, 1 visicctv.com, 1 +visio.org, 1 vision-du-net.com, 1 vision-net.ie, 1 vision-painting.com, 0 vision-ridge.com, 1 vision2005.tk, 1 visionagrupo.com, 1 -visionamos.com, 1 visionamp.com, 1 visionations.com, 1 visioncloud.tk, 1 @@ -157347,6 +157556,7 @@ visitcrete.com, 1 visitdubai.com, 1 visiteasternoregon.com, 1 +visitenovayork.com.br, 1 visiter-tunis.tk, 1 visitfegen.se, 1 visitgaribaldi.gov, 1 @@ -157421,7 +157631,6 @@ visudira.com, 1 visunext.de, 1 visuri.de, 1 -visva.co, 1 visware.com, 1 visyeva.hu, 1 vit2k.online, 1 @@ -157444,9 +157653,8 @@ vitalengine.com, 1 vitalhealthandbeauty.co.uk, 1 vitalia.cz, 1 -vitaline.uz, 1 +vitaline.uz, 0 vitalis.nu, 1 -vitalismaatjes.nl, 1 vitaliteseniors.fr, 1 vitalitymedcenters.com, 0 vitalityscience.com, 0 @@ -157476,7 +157684,6 @@ vitaminegeszseg.hu, 1 vitaminka.tk, 1 vitaminmovie.ga, 1 -vitamister.ch, 1 vitamixromania.ro, 1 vitanetonline.com, 1 vitapingu.de, 1 @@ -157508,7 +157715,6 @@ vitrinachasov.cf, 1 vitrineenligne.com, 1 vitromex.tk, 1 -vitruvianpost.com, 1 vitsearch.link, 1 vitto.tk, 1 vittoria-conseil.com, 1 @@ -157524,6 +157730,7 @@ viunge.dk, 1 viv.fi, 1 viva-family.ch, 1 +viva.ro, 1 viva.ua, 1 viva2000.com, 1 vivablogger.com, 1 @@ -157591,20 +157798,22 @@ vivianargiriou.gr, 0 vivianlms.ga, 1 vivianmaier.cn, 1 +vivianshultsart.com, 1 vivichannel.tk, 1 vivid-academy.com, 1 -vividaf.com, 1 vivide.re, 1 vividinflatables.co.uk, 1 vividseats.com, 1 viviendacoomeva.com, 1 viviennelinettevandenassem.tk, 1 viviennevandenbos.nl, 1 +vivimasverde.com.ar, 1 vivirenelmundo.com, 1 vivirenelpoblado.com, 1 vivirenflorida.com, 1 vivo.cam, 1 vivoitaliankitchen.com, 1 +vivoldi.com, 1 vivos.co.il, 1 vivoseg.com, 0 vivreadomicileliege.be, 1 @@ -157640,7 +157849,6 @@ vjqlifestyle.com, 1 vjshi.xyz, 0 vjshop.vn, 1 -vjtm.jp, 1 vjuliano.net, 1 vk-agent.ru, 1 vk-group.com, 1 @@ -157759,7 +157967,7 @@ vliegherrie.nl, 1 vlijmscherrup.tk, 1 vlike.ml, 1 -vlndc.org, 0 +vlndc.org, 1 vloeck.de, 1 vloggerfaire.com, 1 vloggerspace.tk, 1 @@ -157792,6 +158000,7 @@ vmsengineering.com, 1 vmst.io, 1 vmsurgery.org, 1 +vmtowing.com, 1 vmttitlesearch.com, 1 vmug.pl, 1 vmurmanske.tk, 1 @@ -157802,7 +158011,6 @@ vnanet.vn, 1 vnctdj.fr, 1 vnd.cloud, 1 -vndb.org, 1 vneftekamske.tk, 1 vnetboard.com, 1 vng.de, 1 @@ -157895,7 +158103,6 @@ vogelwereld.tk, 1 vogler.name, 1 vogt.sh, 1 -vogue-lotus.xyz, 1 vogue.co.uk, 1 vogue.cz, 1 vogue.gr, 1 @@ -157922,6 +158129,7 @@ voicesoflabor.com, 1 voicesofspirit.at, 1 voicesuk.co.uk, 0 +voicimonavis.fr, 1 voicu.ch, 0 voicure.com, 1 void.rehab, 1 @@ -157959,7 +158167,6 @@ vojtat.cz, 1 vokabl.io, 1 vokabula.com, 1 -vokativy.cz, 1 vokieciupamokos.lt, 1 vokimberlywi.gov, 1 vokov.ml, 1 @@ -158053,6 +158260,7 @@ volshebniki.ua, 1 volstatebank.com, 1 volt.fm, 1 +volt.social, 1 volta.io, 1 voltacircuit.com, 0 voltageelectricity.tk, 1 @@ -158106,6 +158314,7 @@ vonski.pl, 1 vonsuri.com, 1 voodoobeginner.com, 1 +voodoobtc.com, 1 voodoocat.cf, 1 voodooshaman.com, 1 vookstock.tk, 1 @@ -158283,9 +158492,7 @@ voyeurspyporn.com, 1 voytech.ovh, 1 voz.vn, 1 -vozami.com, 1 vozbudim.tk, 1 -vozciudadana.org, 0 vozdux.tk, 1 vozelocucao.com.br, 1 vozhatik.cf, 1 @@ -158327,6 +158534,7 @@ vps.tg, 1 vpsao.org, 1 vpsboard.com, 1 +vpsbudget.com, 1 vpsdream.dk, 1 vpsgongyi.com, 0 vpsji.com, 1 @@ -158336,6 +158544,7 @@ vpsport.ch, 1 vpsproj.dynu.net, 1 vpsrussia.com, 1 +vpsssl.com, 1 vpstrial.net, 1 vpsvz.cloud, 1 vpsvz.ninja, 1 @@ -158456,7 +158665,7 @@ vrbq.qld.gov.au, 1 vrbr.ch, 0 vrcentrum.cz, 1 -vrchat.community, 1 +vrchat.community, 0 vrconk.com, 1 vrcosplayx.com, 1 vrcprofile.com, 1 @@ -158520,6 +158729,7 @@ vrnhn.nl, 0 vroad.org, 1 vroedvrouwella.be, 1 +vron.house, 1 vros.co.id, 1 vrostove.tk, 1 vrp.moe, 1 @@ -158609,7 +158819,6 @@ vsl-defi.ch, 0 vsl.de, 1 vsmcomunicacao.com.br, 1 -vsnfoto.com, 1 vsoflavors.com, 1 vsolovev.com, 1 vsource-rsdv.azurewebsites.net, 1 @@ -158628,6 +158837,7 @@ vsx.ch, 1 vsz.me, 1 vszp.sk, 1 +vtama.com, 1 vtanki.tk, 1 vtaxi.se, 1 vtbclub.xyz, 1 @@ -158636,8 +158846,8 @@ vtcynic.com, 1 vtech.com, 1 vtechda.com, 1 +vtechhealthcare.com, 1 vtescebu.com, 1 -vtexpayments.com.br, 1 vtipe-vylez.cz, 0 vtjud.gov, 1 vtklan.tk, 1 @@ -158664,7 +158874,6 @@ vuelacaruru.com, 1 vueworks.com, 1 vugt.me, 1 -vuilelakens.be, 1 vuitimig.com, 1 vukhoidecor.com, 1 vulcan-russia.today, 1 @@ -158724,6 +158933,7 @@ vvactivia.nl, 1 vvave.net, 1 vvcasteren.nl, 1 +vvd.bz, 1 vvd.nl, 1 vvdbronckhorst.nl, 1 vveactiefbeheer.nl, 0 @@ -158800,6 +159010,7 @@ vyturys.lt, 1 vytvorsipotisk.cz, 1 vytvorsitricko.cz, 1 +vyvozhlama24.ru, 1 vyvygen.org, 1 vyzner.cz, 1 vzducho-klima.cz, 1 @@ -158889,7 +159100,6 @@ w7k.de, 1 w7n.ch, 1 w8.se, 1 -w82365.com, 1 w8605.com, 1 w888066.com, 1 w889-line.com, 1 @@ -158927,7 +159137,6 @@ wacken666.com, 1 wackery.com, 1 wacky.one, 1 -wackyaf.com, 1 wackyblackie.eu.org, 1 wackyblackie.ml, 1 wackys.com, 1 @@ -159018,6 +159227,7 @@ waketurbulencereport.eu, 1 wakeupeire.com, 1 wakeupworld.ml, 1 +waki-ci.com, 1 wakinglighting.com, 0 wakixpregnancyregistry.com, 1 wakka.moe, 1 @@ -159064,7 +159274,7 @@ walkervillemt.gov, 1 walkfree.org, 1 walkhighlandsandislands.com, 0 -walkingandcycling.org.uk, 1 +walkingandcycling.org.uk, 0 walkingrehabilitation.com, 1 walkinlab.com, 1 walkinweb.com, 1 @@ -159088,7 +159298,6 @@ wallcs.eu, 1 wallers.com, 1 wallet.google.com, 1 -wallet.pp.ua, 1 walletconnector.cz, 1 walletfox.com, 1 wallethub.com, 1 @@ -159135,6 +159344,9 @@ walset.hu, 1 walshbanks.com, 1 walshy.fail, 1 +walsrode-net.de, 1 +walsrode.com, 1 +walsrode.org, 1 walter-foerster.de, 1 walter-mooij-jazztrio.tk, 1 walter.lc, 1 @@ -159163,7 +159375,6 @@ wander.al, 1 wander.tk, 1 wanderaura.com, 1 -wanderclub.eu, 1 wanderersfc.tk, 1 wanderfost.com, 1 wanderfullcoven.tk, 1 @@ -159193,6 +159404,7 @@ wangqr.org, 1 wangqr.tk, 1 wangriwu.com, 1 +wangrufei.com, 1 wangtanzhang.com, 1 wangwill.me, 1 wangyue.blog, 1 @@ -159289,7 +159501,6 @@ warensecurity.com, 1 wareshoalssc.gov, 1 warezbook.org, 1 -warezoom.com, 1 warfarina.com, 1 warfield.org.uk, 1 warfighters.de, 1 @@ -159359,6 +159570,7 @@ wartraining.com.br, 1 wartung.tk, 1 warubbermate.co.th, 1 +warungmini-vanwou.nl, 1 warupu.com, 1 warwick.institute, 1 warwickbucks.gov, 1 @@ -159447,8 +159659,6 @@ watchdogs.tk, 1 watchersrealm.tk, 1 watches-of-switzerland.co.uk, 1 -watchesofswitzerland.com, 1 -watchface.watch, 1 watchfreeonline.co.uk, 1 watchful.net, 1 watchgeneration.fr, 1 @@ -159456,6 +159666,7 @@ watchmoviesgallery.com, 1 watchparts-and-tools-okayama.co.jp, 1 watchpeopledie.tv, 1 +watchstyle.com, 1 watchthedot.com, 1 watchthis-svp.com, 1 watchtogether.ch, 1 @@ -159463,6 +159674,7 @@ watchurdiet.com, 1 watchweasel.com, 1 water-filters.tk, 1 +water-for-africa.org, 1 water-jetting-calculator.com, 1 water-polo.tk, 1 water-sport-bali.com, 1 @@ -159548,7 +159760,6 @@ watismijnbandenspanning.nl, 1 watmar.com.au, 1 watnongpangtru.com, 1 -watobi.jp, 1 watongaok.gov, 1 watoo.tech, 1 watrd.com, 1 @@ -159639,13 +159850,11 @@ waze.com, 1 wazefaher.tk, 1 wazeibra.com, 1 -wazubi.at, 1 wazuh.com, 1 wazzap.tk, 1 wb-cw.tech, 1 wb0hsi.org, 1 wb256.com, 0 -wb6668.net, 1 wba.or.at, 1 wbaltv.com, 1 wbbauth.de, 1 @@ -159656,7 +159865,6 @@ wbclink.io, 1 wbeme2.com, 1 wbenoordoostpolder.nl, 1 -wbeuil.com, 1 wbfisheries.in, 1 wbg.li, 1 wbhrb.in, 1 @@ -159670,7 +159878,6 @@ wbpersonalmonitor.de, 1 wbpgroup.com.au, 1 wbphed.gov.in, 1 -wbresearch.com, 1 wbs-gruppe.de, 1 wbsentinel.com, 1 wbsogids.nl, 1 @@ -159752,7 +159959,6 @@ we5688.net, 1 we9988.net, 1 weacceptbitcoin.gr, 1 -weakaf.com, 1 weakinreview.org, 1 wealthadvisorsmf.com, 1 wealthadvisorstrust.com, 1 @@ -159798,7 +160004,6 @@ wearesuma.com, 1 wearetravellers.nl, 1 wearetuzag.com, 1 -wearevanity.co, 1 wearewithyou.org, 1 weareworldtrippers.com, 1 wearewp.pro, 1 @@ -159880,7 +160085,6 @@ web-town.tk, 1 web-treff.de, 1 web-view.ml, 1 -web-wack.at, 1 web-warrior.de, 1 web-worker.cn, 1 web.ca, 1 @@ -160032,7 +160236,6 @@ webemployed.com, 1 webencrypt.org, 1 webengage.com, 1 -webenglish.se, 1 weber-immobilienberatung.de, 1 weber.com, 1 weber911.gov, 1 @@ -160177,7 +160380,6 @@ webmethod.email, 1 webminders.it, 1 webmining.gq, 1 -webministeriet.net, 1 webmoney.blog, 1 webmoney.club, 1 webmonsters.tk, 1 @@ -160389,6 +160591,7 @@ wecoach.gg, 0 wecobble.com, 1 wecodify.nl, 1 +wecorp.org, 1 wecreate.ml, 1 wed13spain.tk, 1 weda.cf, 1 @@ -160467,6 +160670,7 @@ weeklyads2.com, 0 weeklydcoupgen.com, 1 weektegenarmoede.be, 1 +weelzbahamas.com, 1 weemakers.fr, 0 weepycat.com, 1 weerda.fr, 1 @@ -160505,6 +160709,7 @@ wehealasone.gov.ph, 1 weho.gov, 1 wei-mao.com.ua, 1 +wei.com, 0 weibbb.com, 1 weibel.me, 1 weibomiaopai.com, 1 @@ -160655,6 +160860,7 @@ welteneroberer.de, 1 weltengilde.de, 1 weltenhueter.de, 1 +weltentanzer.com, 0 weltraum.gg, 1 weltumradler.tk, 1 weltverschwoerung.de, 1 @@ -160668,8 +160874,8 @@ wemakebookkeepingeasy.com, 1 wemakemx.mx, 1 wemakeonlinereviews.com, 1 +weme.eco, 1 wemissyou.tk, 1 -wemobiles.com, 0 wenaiwu.net, 1 wenanmao.com, 1 wenceslas.org.uk, 1 @@ -160786,6 +160992,7 @@ wesl.cc, 1 wesleyanbank.co.uk, 1 wesleyarcher.com, 1 +wesleybear.win, 1 wesleycabus.be, 0 wesleymc.org, 1 wesleyville.gov, 1 @@ -160805,6 +161012,7 @@ west-raptors.tk, 1 west-trans.com.au, 0 west-wind.net, 1 +west.vet, 1 westappin.com.au, 1 westartup.co, 1 westbathmaine.gov, 1 @@ -160893,7 +161101,6 @@ westoverwv.gov, 1 westozfunds.com.au, 1 westpack.com, 1 -westpapua.blog, 1 westparkestates.co.uk, 1 westpennwire.com, 1 westphalfamily.com, 1 @@ -160904,10 +161111,10 @@ westportok.gov, 1 westreet-store.com, 1 westsalemwi.gov, 1 -westshoresrealty.com, 1 westside-pediatrics.com, 1 westsidechildrenstherapy.com, 1 westsidepackaging.com.au, 1 +westsidewinemsp.com, 1 westskinlaser.com, 1 westsoundwildlife.org, 1 westspace.org.uk, 1 @@ -160917,6 +161124,7 @@ westviewpa.gov, 1 westvirginiahealth.tk, 1 westvirginiatitlesearch.com, 1 +westwardblinds.com, 1 westwarwickri.gov, 1 westwing.com, 1 westwingopenhouse.com, 1 @@ -160946,14 +161154,12 @@ wetu.com, 1 wetumpkaal.gov, 1 wevah.com, 0 -wevenues.com, 1 weviral.org, 1 wevolver.com, 0 wew881.com, 1 wew882.com, 1 wewacard.com, 1 wewillfixit.com, 1 -wewin889.com, 1 wewitro.de, 1 weworkjpn.com, 1 wewritestuff.com, 1 @@ -161014,7 +161220,6 @@ wgzdy.top, 0 wh-guide.de, 1 wh.gov, 1 -wh0.re, 1 wh966.com, 0 whadda.uk, 1 whakamatutu.org.nz, 1 @@ -161091,6 +161296,7 @@ whatwedo.ch, 1 whatwg.org, 1 whatzelink.com, 1 +whawtheme.fr, 1 whd-guide.de, 1 whdpc.gov, 1 wheatfieldtwpmi.gov, 1 @@ -161120,7 +161326,6 @@ when.fm, 0 when2watch.live, 1 whengirlsplay.com, 1 -whenisholiday.com, 1 whentowork.com, 1 whenwe.me, 1 wheon.com, 1 @@ -161204,17 +161409,18 @@ whitealps.de, 0 whitealps.fr, 0 whitealps.net, 0 -whiteandprivileged.ca, 1 whiteantelopeinteriors.com, 1 whitebirdclinic.org, 1 whitebox.ga, 1 whitechristmas.com.au, 1 whitecollarfraud.com, 1 whitecreekny.gov, 1 +whitedragonmartialarts.org, 1 whitefieldnhpd.gov, 1 whitefishtownshipmi.gov, 1 whitefordtownshipmi.gov, 1 whitehallal.gov, 1 +whitehartdartmoor.co.uk, 1 whitehartweddingvenue.co.uk, 1 whitehat.vn, 1 whitehatbrokers.com, 1 @@ -161324,10 +161530,12 @@ wholesale.cf, 1 wholesalediamonds.tk, 1 wholesalediscountsunglasses.com, 1 +wholesaleganoderma.com, 1 wholesaleimages.com, 1 wholevood.com, 1 wholevood.de, 1 wholewideworldtoys.com, 1 +wholewildworld.de, 1 whoneedstobeprimaried.today, 1 whong.media, 1 whonix.org, 1 @@ -161479,6 +161687,7 @@ wiimotion.de, 1 wiin.co, 1 wiingy.com, 1 +wiiplay.com, 1 wiire.me, 0 wijaya.net, 1 wijaya2u.com, 1 @@ -161644,7 +161853,6 @@ wikizip.ga, 1 wikjpedia.org, 1 wikkelweb.nl, 1 -wikpa.com, 1 wikpedia.org, 1 wikproduccions.tk, 1 wiktionary.com, 1 @@ -161679,7 +161887,6 @@ wilderky.gov, 1 wildern.org, 1 wildernessdestinations.com, 1 -wildernex.com, 1 wilderoben.com, 1 wildeshausen272.de, 1 wildfilm.tv, 1 @@ -161710,7 +161917,6 @@ wildwildtravel.com, 1 wildwill.co.uk, 1 wildwind.world, 1 -wildwnc.org, 1 wildwoodpolice-fl.gov, 1 wildwoodrockers.tk, 1 wildzap.ml, 1 @@ -161765,7 +161971,6 @@ williamgoren.com, 1 williamjohngauthier.net, 1 williamle.com, 1 -williamlong.info, 1 williammcgill.com, 1 williamparedes.tk, 1 williamscomposer.com, 1 @@ -161776,6 +161981,7 @@ williamsrecord.com, 1 williamstonmipd.gov, 1 williamstownmi.gov, 1 +williamtai.moe, 1 willianchopin.tk, 1 willich.tk, 1 williejackson.com, 1 @@ -161795,6 +162001,7 @@ willowparktx.gov, 1 willowpassdentalcare.com, 1 willowpf.com, 1 +willows.uk.net, 1 wills.co.tt, 1 willsey.cloud, 1 willship.co.nz, 0 @@ -161803,8 +162010,8 @@ willstamper.name, 1 willstocks.co.uk, 1 willtaylorbooks.com, 1 -willtc.co.uk, 1 -willtc.uk, 1 +willtc.co.uk, 0 +willtc.uk, 0 willturner.tk, 1 willvision.com, 0 willwilkins.com, 1 @@ -161819,7 +162026,6 @@ wilmingtonzen.tk, 1 wilmothgroup.com, 1 wils.jp, 1 -wilseyrealty.com, 1 wilshirelawfirm.com, 1 wilson-lincoln-wi.gov, 1 wilsoncountync.gov, 1 @@ -161918,7 +162124,7 @@ windsorite.ca, 1 windsornc.gov, 1 windsorrslsubbranch.com.au, 1 -windstreamhosting.com, 1 +windstreamhosting.com, 0 windsurfercrs.com, 1 windturbine.tk, 1 windwell.cn, 1 @@ -161985,9 +162191,11 @@ winmix.nl, 1 winmodels.org, 1 winn.ai, 1 +winn.se, 1 winnebagocountyiowa.gov, 1 winnebagocountywi.gov, 1 winneconnesd3wi.gov, 1 +winner.cn, 1 winner.ua, 1 winnersaffiliate.com, 1 winnery.tk, 1 @@ -162048,6 +162256,7 @@ winzero.tk, 1 winzong.cn, 1 winzong.net, 1 +wio.cn, 1 wiocha.pl, 1 wip-tideplatform.uk, 1 wipa.tk, 1 @@ -162118,6 +162327,7 @@ wischu.com, 1 wiscon.co, 1 wisconsin.condos, 1 +wisconsinacademy.org, 1 wisconsinnet.tk, 1 wisconsintitlesearch.com, 1 wisdoj.gov, 1 @@ -162218,6 +162428,7 @@ withjoy.com, 1 withoutessence.io, 1 withoutlovenotcount.ru, 1 +withpersona.com, 1 withprocess.com, 1 withsunglasses.co.uk, 1 withthegrid.com, 1 @@ -162231,12 +162442,17 @@ wittgen-kfz-technik.de, 1 witting.co, 0 wittingtonventures.com, 1 +wittke-group.ch, 1 +wittke-group.cn, 1 wittke-group.com, 1 +wittke-group.de, 1 +wittke.ch, 1 +wittke.cn, 1 +wittke.li, 1 wittu.fi, 1 wittur-edrives.de, 1 wittur.com, 1 wittwellness.com.au, 1 -wittyaf.com, 1 witze-fun.de, 1 witzik.at, 1 witzler.com.br, 1 @@ -162452,7 +162668,6 @@ wolfgang-kerschbaumer.com, 1 wolfgang-kerschbaumer.net, 1 wolfgang-kloke.de, 1 -wolfgang-wahlster.de, 1 wolfgang-ziegler.com, 1 wolfgangdigital.com, 1 wolfgangkowar.de, 1 @@ -162489,6 +162704,7 @@ wolverine-obuv.ru, 1 wolvesbanemanor.com, 1 wolvestrees.co.uk, 1 +wolvex.nl, 1 wolvox.com, 1 wom.de, 1 womb.city, 1 @@ -162504,6 +162720,7 @@ womenbrace.tk, 1 womenfashionshirt.tk, 1 womeninmigration.org, 1 +womenleadingwomen.com.au, 1 womenofficersofindia.com, 1 womenonboardskenya.co.ke, 1 womenridersnow.com, 1 @@ -162524,6 +162741,7 @@ wonderbox.gq, 1 wonderbox.ml, 1 wondercade.com, 1 +wondercare.ie, 1 wonderchat.tk, 1 wondercorner.ca, 1 wondereur.com, 1 @@ -162611,7 +162829,6 @@ woodstockva.gov, 1 woodstone.nu, 1 woodtrust.com, 1 -woodvibes.pl, 1 woodvillems.gov, 1 woodvillemspolice.gov, 1 woodward-vets.co.uk, 1 @@ -162625,6 +162842,7 @@ woodyandpearl.com, 1 woodysinstalaciones.com, 1 wooeffi.at, 1 +woof.blue, 1 woof.gq, 1 woofngoof.com, 1 woofsbakery.com, 1 @@ -162690,7 +162908,6 @@ wordpressdevelopment.ml, 1 wordregistrar.ga, 1 words-are-pictures.com, 1 -wordsearchwhiz.com, 1 wordsforellie.com, 1 wordsofamaster.com, 1 wordspam.ga, 1 @@ -162759,7 +162976,6 @@ workinghardinit.work, 1 workingmachine.info, 1 workingnotworking.com, 1 -workingplace.xyz, 1 workingreporter.com, 1 workingtalent.nl, 1 workinit.com.au, 1 @@ -162808,6 +163024,7 @@ worktefa.tk, 1 workthings.de, 1 workvision.net, 1 +workwides.com, 1 workwithusaid.gov, 1 worky.ph, 1 workzly.in, 1 @@ -163024,7 +163241,6 @@ wowlove.tk, 1 wownmedia.com, 1 wownskportal.tk, 1 -wowowow.com, 1 wowra.net.pl, 1 wows-mods.tk, 1 wows.sb, 1 @@ -163039,7 +163255,6 @@ wozkipaletowe.com.pl, 1 wozkipaletowe.net, 1 wozkipodnosnikowe.eu, 1 -wozsun.com, 1 wozwaardeloket.nl, 1 wozwebdesign.com.br, 1 wp-assistance.fr, 1 @@ -163052,7 +163267,6 @@ wp-in.de, 1 wp-mix.com, 1 wp-ninja.tk, 1 -wp-note.it, 1 wp-op.com, 1 wp-rebuild.com, 1 wp-rem.com, 1 @@ -163164,7 +163378,7 @@ wq.ro, 1 wqaw3.tk, 1 wqed.org, 1 -wr.su, 1 +wr.su, 0 wrallp.com, 1 wrap.in.ua, 1 wrap.ngo, 1 @@ -163175,7 +163389,6 @@ wrara.org, 1 wrathofdungeons.net, 1 wrathofgeek.com, 1 -wrbunderwriting.com, 0 wrc-results.com, 1 wrd48.net, 1 wrdcfiles.ca, 1 @@ -163193,11 +163406,11 @@ wresttmb.tk, 1 wrfalimentos.com.br, 1 wrglzd.com, 1 -wrgms.com, 1 wrhomedecor.com.br, 1 wrightbrand.com, 1 wrightcountymo911.gov, 1 wrighthassall.co.uk, 1 +wrightsecurity.co, 1 wrightslawfirm.com, 0 wrighttownshipottawami.gov, 1 wrighttownshippa.gov, 1 @@ -163227,7 +163440,6 @@ writingcities.net, 1 writingfromnowhere.com, 1 writingiswork.ga, 1 -writingontablets.com, 1 writingpapersonlineformoney.ga, 1 writingtoserve.net, 1 writtenandrecorded.com, 1 @@ -163239,7 +163451,7 @@ wrnck.cloud, 1 wroclawguide.com, 1 wrong.wang, 0 -wrongaf.com, 1 +wrongaddress.com, 1 wrozbyonline.pl, 1 wrp.gov, 1 wrtv.com, 1 @@ -163361,6 +163573,7 @@ wuppertal-2018.de, 0 wuppertaler-frettchensitterin.tk, 1 wurm-sb.de, 0 +wurmstube.de, 1 wurstbrot.cf, 1 wurstmineberg.de, 1 wurzelchaos.de, 1 @@ -163454,6 +163667,7 @@ www.amazon.in, 1 www.amazon.it, 1 www.amazon.nl, 1 +www.banking.co.at, 1 www.bbc.co.uk, 0 www.bbc.com, 0 www.braintreepayments.com, 0 @@ -163507,9 +163721,9 @@ www.linode.com, 0 www.lookout.com, 1 www.messenger.com, 1 +www.ml, 1 www.mojadm.sk, 1 www.moneybookers.com, 1 -www.mygov.bd, 1 www.noisebridge.net, 1 www.opsmate.com, 1 www.paypal.com, 1 @@ -163526,14 +163740,13 @@ www.tl, 1 www.torproject.org, 0 www.tumblr.com, 0 -www.twitter.com, 0 +www.twitter.com, 1 www.united.com, 1 www.usaa.com, 0 www.vino.com, 0 www.wepay.com, 1 www.wordpress.com, 0 www.zdnet.com, 1 -www552400.com, 0 www68277.com, 1 wwwclan.tk, 1 wwweb.be, 1 @@ -163548,6 +163761,7 @@ wx6688.cc, 0 wxcafe.net, 1 wxdisco.com, 1 +wxforms.com, 1 wxforums.com, 1 wxh.jp, 1 wxhbts.com, 0 @@ -163579,7 +163793,6 @@ wyff4.com, 1 wygibanki.pl, 1 wygodnie.pl, 1 -wykedways.com, 1 wykop.pl, 0 wykopylodz.ga, 1 wykorzystaj.ai, 1 @@ -163627,6 +163840,7 @@ wzdh.com, 0 wzdh.net, 0 wzh.one, 1 +wzitrade.com, 1 wzrd.in, 1 wzrd.pw, 1 wzutti.com, 0 @@ -163649,7 +163863,6 @@ x-way.org, 1 x.io, 1 x.sb, 1 -x001.org, 1 x00228.com, 1 x00701.com, 1 x00708.com, 0 @@ -163677,6 +163890,7 @@ x3803.com, 1 x3816.com, 1 x3828.com, 1 +x3m.fr, 1 x3x.tc, 1 x44.at, 0 x500658.com, 1 @@ -163703,7 +163917,6 @@ x77nn.com, 1 x7sevenusa.com, 1 x81vv.com, 1 -x82365.com, 1 x90.im, 1 x9297.co, 1 x9728.co, 1 @@ -163719,7 +163932,6 @@ xacobeoexperience.com, 1 xactadent.com, 1 xad.ch, 1 -xadreznaron.es, 1 xaira.com, 0 xajh.org, 1 xakep-slon.tk, 1 @@ -163739,6 +163951,7 @@ xants.de, 1 xanyl.de, 1 xanzhu.com, 1 +xaraguamagazine.com, 1 xarangallomangallo.tk, 1 xarcmastering.com, 1 xareltohcp.com, 1 @@ -163753,9 +163966,9 @@ xavierarroyo.tk, 1 xaviermalisse.tk, 1 xavio-design.com, 1 +xavirabarte.es, 1 xavy.fr, 1 xayah.net, 1 -xaydungphunguyen.com, 1 xaynhachothue.vn, 1 xb008.com, 1 xb053.com, 1 @@ -163839,7 +164052,6 @@ xbsoftware.com, 1 xbt.co, 1 xbtmusic.org, 0 -xbvip.net, 1 xbvip99.com, 1 xbyl.xn--fiqs8s, 1 xbyl15.com, 1 @@ -163952,6 +164164,7 @@ xenwo.com, 1 xenwo.io, 1 xeonlab.de, 1 +xeoxaz.com, 1 xer0x.in, 1 xerbisworks.com, 1 xerdeso.tk, 1 @@ -164017,6 +164230,7 @@ xianguocy.com, 1 xiangweiqing.co.uk, 1 xianjianruishiyouyiyuan.com, 1 +xianweiyuan.com, 0 xianyu.uk, 1 xiao-sheng.gq, 1 xiaobude.cn, 1 @@ -164040,7 +164254,6 @@ xiaoniaoyou.com, 0 xiaoqiang.blog, 1 xiaoshijt.com, 1 -xiaoshu.de, 0 xiaowangshen.com, 1 xiaowutou.com, 1 xiaoxia.li, 1 @@ -164189,6 +164402,7 @@ xinfinity.com.tw, 1 xing.ml, 1 xingai.ml, 1 +xingyu1993.cn, 1 xingzuozixun.com, 1 xinlandm.com, 1 xinmeiti168.cn, 1 @@ -164209,6 +164423,7 @@ xiphwork.de, 1 xiqonline.com, 1 xishiduliu.com, 1 +xisu.com, 1 xitin.tk, 1 xiufe.ng, 1 xiufeng.de, 1 @@ -164220,6 +164435,8 @@ xiuxiu.gq, 1 xiuxiu.ml, 1 xiuxiumh01.cc, 0 +xixi.com, 1 +xiyu.com, 1 xjd.vision, 1 xjf6.com, 1 xjj.jp, 1 @@ -164229,6 +164446,8 @@ xjpvictor.info, 1 xjtu.love, 1 xjtu.men, 1 +xjtv.com, 1 +xjysilicone.com, 1 xkblog.xyz, 1 xkcd.pw, 1 xkq.ch, 1 @@ -164251,7 +164470,6 @@ xlnaudio.com, 1 xloud.cf, 1 xlr8.shop, 1 -xlr8webshops.com, 1 xlribbon.ml, 1 xlrsecurity.com, 1 xlstat.com, 1 @@ -164270,7 +164488,6 @@ xmgspace.me, 1 xmisystems.com, 0 xmit.co, 1 -xmiui.com, 1 xml-dev.com, 1 xmlseo.ru, 1 xmnr.net, 1 @@ -164301,7 +164518,6 @@ xn----7sbbgbr0arxb4a4exa.com.ua, 1 xn----7sbbhzfbdo6dnf.tk, 1 xn----7sbbncaddj9a9b6am9p.tk, 1 -xn----7sbbq5b0a1c.com, 1 xn----7sbddc9an3aethjp.xn--p1ai, 1 xn----7sbedlbhv2azb6a.xn--j1amh, 1 xn----7sbfl2alf8a.xn--p1ai, 1 @@ -164322,7 +164538,6 @@ xn----etbqa2alia5i.tk, 1 xn----htbhdmyci.xn--p1ai, 1 xn----itbanmp3ae.xn--p1ai, 1 -xn----itbkhngkr2a.xn--p1ai, 0 xn----jtbiihtkil8b4e.xn--p1ai, 1 xn----mtbckubhv.xn--p1ai, 1 xn----ncfb.ws, 1 @@ -164574,10 +164789,13 @@ xn--eckok2bi6jzkpc.com, 1 xn--eckok2bi6jzkpc.jp, 1 xn--ee-zja.de, 1 +xn--eebao6b.com, 1 +xn--eebao6b.net, 1 xn--eglujemy-23b.net, 1 xn--ehqw04eq6e.jp, 1 xn--elsignificadodesoar-c4b.com, 1 xn--eluprastinsulti-3kb.ee, 1 +xn--eqr523b.com, 1 xn--erban-e9b.ro, 1 xn--erklderbarenben-slbh.dk, 1 xn--ertvg-pra.no, 1 @@ -164628,8 +164846,10 @@ xn--hnse-gra.net, 1 xn--hogarniitojesus-4qb.com, 1 xn--hsers-kva.de, 1 +xn--hy1bj8u2yeo4i8lh.com, 1 xn--ikketenkpdet-1cb.no, 1 xn--imker-in-nrnberg-szb.de, 1 +xn--incentft-81a.com, 1 xn--int-ru8ea.xn--6qq986b3xl, 1 xn--internetlnen-1cb.com, 1 xn--ionunica-29c.ro, 1 @@ -164707,7 +164927,6 @@ xn--mnck-5qa.de, 1 xn--mnich-7ua.de, 1 xn--mntsamling-0cb.dk, 1 -xn--mol-tna.com, 1 xn--monvlogratuit-ehb.fr, 1 xn--morrhret-e0a.se, 1 xn--mrtelfuger-0cb.dk, 1 @@ -164715,6 +164934,8 @@ xn--myrepublc-x5a.net, 1 xn--naade-dta.com, 1 xn--nbetcieczane-4ib.gen.tr, 1 +xn--ncentfit-11a.com, 1 +xn--ncentft-yyag.com, 1 xn--nicieri-b4a.ro, 1 xn--nidar-tib.org, 1 xn--nide-loa.ee, 1 @@ -164730,7 +164951,6 @@ xn--o3ca2aced1cc7e5a1jc6h.com, 1 xn--o77hka.ga, 1 xn--obt757c.com, 1 -xn--oiqt18e8e2a.eu.org, 1 xn--oj-uu2c9c422w3mh.com, 0 xn--okra.xn--6qq986b3xl, 1 xn--p2v.xn--fiqs8s, 1 @@ -164913,6 +165133,7 @@ xombitgames.com, 1 xombitmusic.com, 1 xomyak.tk, 1 +xonados.net, 1 xonobixa.tk, 1 xoomenergy.com, 1 xopero.com, 1 @@ -164922,7 +165143,6 @@ xorm.io, 1 xormatic.com, 1 xosh.fr, 1 -xoso66max1.com, 0 xotaku.com, 1 xotictrends.com, 1 xotika.tv, 1 @@ -164940,6 +165160,7 @@ xpertcenter.ch, 0 xpertcube.com, 1 xpertmedia.ro, 1 +xpertva.com, 1 xpetit.net, 1 xpg.jp, 1 xphelper.tk, 1 @@ -164973,6 +165194,7 @@ xptrackstaging.com, 1 xpwn.cz, 0 xpwow.com, 1 +xq.com, 1 xq6dtff.top, 1 xqib.org, 1 xqin.net, 1 @@ -164993,7 +165215,6 @@ xs2a.no, 1 xs4ever.org, 1 xsait.tk, 1 -xsarius-tv.com, 1 xsauto.pt, 1 xsave.ru, 1 xscancun.com, 1 @@ -165135,6 +165356,7 @@ xueaiai.cf, 1 xueaiai.ml, 1 xueanquan.com, 1 +xuecheng.com, 1 xuedianshang.com, 1 xuehuang666.cn, 1 xuesoska.ga, 1 @@ -165203,7 +165425,6 @@ xxxshemaleporn.com, 1 xxxsuper.net, 1 xxxtophd.com, 1 -xxxtrance.com, 1 xxxvideos-base.com, 1 xxxvideos-tube.com, 1 xxxvids.mobi, 1 @@ -165290,6 +165511,7 @@ y2k23.com, 1 y2s.pw, 1 y31.jp, 1 +y337.consulting, 1 y337.tech, 1 y3451.com, 1 y365188.com, 1 @@ -165319,7 +165541,6 @@ y898888.com, 0 y89a.net, 1 y89aaa.com, 0 -y89b.com, 0 y89b.net, 1 y89bbb.com, 0 y89c.com, 1 @@ -165375,6 +165596,7 @@ ya-stroynaya.tk, 1 ya-zdorova.tk, 1 yaamava.com, 1 +yaateens.org, 1 yaaw.de, 1 yaay.com.br, 1 yaay.today, 1 @@ -165406,10 +165628,10 @@ yacostasolutions.com, 1 yadaeditrice.com, 0 yadnameh.ga, 1 +yado-vinyl.fr, 1 yaebus.tk, 1 yaencontre.com, 1 yaesu-sakura-eye-clinic.com, 1 -yafull.com, 1 yafuoku.ru, 1 yaghoobi.tk, 1 yagihiro.tech, 1 @@ -165448,7 +165670,6 @@ yakutsk.ml, 1 yalb.tech, 1 yalecleaners.com, 1 -yalla-ask.net, 1 yalla-shoots.tv, 1 yalla-shootx.com, 1 yallamotor.com, 1 @@ -165466,6 +165687,7 @@ yamal159263.ml, 1 yamanami.tokyo, 1 yamanobe-taro.jp, 1 +yamasakit.site, 1 yamatonetwork.com, 1 yamazaki-automotive.co.jp, 1 yamei1.com, 1 @@ -165498,7 +165720,6 @@ yangmaodang.org, 0 yangmi.blog, 1 yangrq.org, 1 -yangshangzhen.com, 0 yangwang.tk, 1 yangxi.tech, 1 yangyi.ml, 1 @@ -165547,11 +165768,9 @@ yapan7.com, 1 yapan77.com, 1 yapan777.com, 1 -yapan8.com, 1 yapan888.com, 1 yapan9.com, 1 yapan99.com, 1 -yapan999.com, 1 yapanwang.com, 1 yapaytech.com, 1 yapdentalsurgery.com, 1 @@ -165578,6 +165797,7 @@ yarmarka-megamarket.ru, 1 yarmuthforcongress.com, 1 yarnandy.com, 1 +yarno.com.au, 1 yarogneva.ru, 1 yarokuk.com, 1 yaroslavia.eu.org, 1 @@ -165669,16 +165889,15 @@ yc1820.com, 1 ycalculators.com, 1 ycatsh.net, 1 -ycb.fr, 1 ycbmdevelopment.com, 1 ycbmstaging.com, 1 +ycck.com, 1 ycdtc.org, 1 ycfld.gov, 1 ych.art, 1 ych.com, 1 ycharts.com, 1 ycherbonnel.fr, 1 -ychmarket.com, 0 ycl.org.uk, 1 yclan.net, 1 ycnrg.org, 1 @@ -165686,8 +165905,8 @@ yd163.cc, 1 ydental.jp, 1 ydetc.es, 1 -ydia.us, 1 ydr.me, 1 +ydskursuankara.net, 1 ydt.am, 1 ydyy99.com, 1 ydyydy.ml, 1 @@ -165774,11 +165993,13 @@ yenidunya.org, 1 yennhi.co, 1 yenpape.com, 1 +yeoldemagicmag.com, 1 yep-pro.ch, 0 yepbitcoin.com, 1 yepu.cc, 1 yepu.ga, 1 yerbasbuenas.tk, 1 +yerelvitrin.com, 1 yerf.eu, 1 yeri.com, 1 yes-money.cf, 1 @@ -165809,6 +166030,7 @@ yespornfree.com, 1 yespornplease.com, 1 yessirgear.com, 0 +yessky.com, 1 yeste.tk, 1 yestees.com, 1 yesterford.com, 1 @@ -165842,7 +166064,6 @@ yh12366.com, 1 yh64678.com, 1 yh66689.com, 1 -yh811.com, 1 yh88890.com, 1 yh98768.com, 1 yhaupenthal.org, 1 @@ -165914,7 +166135,6 @@ yisrime.xyz, 1 yiu-on.li, 1 yiuon.li, 1 -yiyeqing.xyz, 1 yiyuanzhong.com, 1 yiyume.com, 1 yizhihuang.org, 1 @@ -165984,7 +166204,6 @@ yodaremote.tk, 1 yodelmobile.com, 1 yodocon.com, 1 -yodokfilm.com, 1 yoga-alliance-teacher-training.com, 1 yoga-bien-etre.com, 1 yoga-erde.de, 1 @@ -166039,11 +166258,13 @@ yokorei.yokohama, 1 yokotafss.marketing, 1 yokotower.com, 1 +yokowatch.com, 1 yolandgao.me, 1 yolanibg.com, 1 yolhesaplama.com, 1 yolo-csgo.com, 1 yolo-jp.com, 1 +yolo.cn, 1 yolobert.de, 1 yoloboatrentals.com, 1 yolocast.wtf, 1 @@ -166071,7 +166292,6 @@ yoomza.com, 1 yoonas.com, 1 yooooex.com, 1 -yoopies.fr, 1 yooptopian.com, 0 yopers.com, 0 yopmail.com, 1 @@ -166151,6 +166371,7 @@ youcruit.com, 1 youcruit.jobs, 1 youderma.ca, 1 +youdriver.com, 1 youdungoofd.com, 1 youenglish.school, 1 youftp.tk, 1 @@ -166174,7 +166395,6 @@ youiv20.com, 1 youiv4k.com, 1 youiv4k.net, 1 -youiv9.com, 1 youiv99.com, 1 youivh.com, 1 youivt.com, 1 @@ -166187,7 +166407,6 @@ youla.ru, 1 youlivewesnap.com, 1 youlovehers.com, 1 -youlovetrip.com, 1 youmeandjunee.com.au, 1 youmiracle.com, 1 youmonit.me, 1 @@ -166214,10 +166433,11 @@ younglions.cf, 1 youngmodelsagency.tk, 1 youngpeopleunited.co.uk, 1 -youngshemaleporn.com, 1 youngsook.org, 1 youngsophie.net, 1 youngsoulstudios.com, 0 +youngster.cn, 1 +youngsurveyors.dk, 1 youngsvillenc.gov, 1 youngtherapy.co.uk, 1 youngtube.one, 1 @@ -166261,7 +166481,6 @@ yourcfo.co.in, 0 yourcheshiremerseyside.wedding, 1 yourchoicematters.ca, 1 -yourcoininfo.com, 1 yourcomputer.expert, 1 yourcomputer.tk, 1 yourconscious.life, 1 @@ -166281,6 +166500,7 @@ yourdrive.tk, 1 youreastanglian.wedding, 1 youreastmidlands.wedding, 1 +yourecipess.com, 1 youreitbranding.com, 1 youremailexpert.com, 1 youren.com.tw, 1 @@ -166400,7 +166620,6 @@ youthnews.tk, 1 youthpassageways.org, 1 youthpolicy.org, 1 -youthreach.org, 0 youthrules.gov, 1 youthsadda.com, 1 youthwant.com.tw, 1 @@ -166463,7 +166682,6 @@ ysicorp.com, 1 yslxxhome.com, 0 ysmedia.jp, 1 -ysmihvamse.bg, 1 yspa.tv, 1 yspertal.party, 1 ystral.com, 1 @@ -166553,7 +166771,6 @@ yukitty-yukitty.com, 1 yukkitacari.tk, 1 yukomgroup.com, 1 -yukon.ca, 0 yukonconnector.com, 1 yukonlip.com, 1 yukoslibrary.ga, 1 @@ -166612,7 +166829,10 @@ yurimoens.be, 1 yurinet.org, 1 yurisora.com, 1 +yurissimo.ch, 1 +yurissimo.cn, 1 yurissimo.com, 1 +yurissimo.de, 1 yurist-vopros.gq, 1 yuriylysyuk.ru, 1 yurtdisigocmenlik.com, 1 @@ -166658,11 +166878,12 @@ yvonne-stingel.de, 1 yvonnethomet.ch, 1 yvonnewilhelmi.com, 1 +yw.com, 1 ywambutuan.org, 1 ywamcebu.org, 1 -ywamphilippines.org, 1 ywamshipsphilippines.com, 1 ywamtonga.org, 1 +ywor.it, 1 ywutrust.com, 1 ywyway.com, 1 yxapp43.xyz, 1 @@ -166703,6 +166924,7 @@ yzarul.com, 1 yzer.club, 1 yzervast-heestert.be, 1 +yzfc.com, 1 yzh8.cc, 1 yzh8.net, 1 yzh8.vip, 1 @@ -166724,7 +166946,6 @@ z.ee, 1 z.md, 1 z.mom, 1 -z.org, 1 z.sh, 1 z.sv, 1 z.tl, 1 @@ -166866,6 +167087,7 @@ zad-academy.com, 1 zadania.wiki, 1 zadm.de, 1 +zadnje.com, 1 zadrot.tk, 1 zadroweb.com, 1 zaem.tv, 1 @@ -166953,6 +167175,7 @@ zakelijketaalcursus.nl, 1 zakes.tk, 1 zakirov.gq, 1 +zakiy.my.id, 1 zakladam.cz, 1 zakladki.tk, 1 zakladybukmacherskie.tv, 1 @@ -166966,7 +167189,7 @@ zakreconysloik.com.pl, 1 zakrentus-ostrus.space, 1 zakspartiesandevents.com, 1 -zakutka.com, 1 +zakutka.com, 0 zala.ml, 1 zalaetavoleibol.tk, 1 zalan.do, 1 @@ -167121,10 +167344,10 @@ zavod-96.ru, 1 zawartosc.pl, 1 zawodowe.edu.pl, 1 +zaxid-kava.ua, 1 zayats.tk, 1 zayavka.cf, 1 zayavka.ml, 1 -zaychik.cn, 1 zayla.cz, 1 zayla.sk, 1 zaym.tk, 1 @@ -167159,6 +167382,7 @@ zcarot.com, 1 zcarrot.com, 1 zcb.fr, 1 +zcdtk.com, 1 zcode.tk, 1 zcompany.ga, 1 zcompany.tk, 1 @@ -167266,7 +167490,6 @@ zebulon.fr, 1 zecanard.com, 1 zecible.fr, 1 -zecircle.xyz, 0 zeckenhilfe.de, 1 zectazepia.tk, 1 zecuur.nl, 1 @@ -167278,7 +167501,6 @@ zeedroom.be, 1 zeeg.me, 1 zeegers.family, 1 -zeeheldenwijk-urk.nl, 1 zeekajakvaren.tk, 1 zeel.com, 1 zeelandbrug.tk, 1 @@ -167287,6 +167509,7 @@ zeet.tk, 1 zeetoppers.nl, 1 zefir.fr, 1 +zefirka.life, 1 zefort.com, 1 zegazte.org, 1 zegels-danst.tk, 1 @@ -167327,6 +167550,7 @@ zekiah.com, 1 zekinteractive.com, 1 zekra.tk, 1 +zekvc.com, 0 zelandnamiru.cz, 1 zelda.zone, 1 zeldaliberty.tk, 1 @@ -167334,15 +167558,18 @@ zelena-armija.tk, 1 zelendoma.ml, 1 zeliard.tk, 1 +zelina.eu, 1 zelkinezis.ru, 1 zelkor.ml, 1 zellusservices.com.br, 1 zelong.tk, 1 +zelotech.com.br, 1 zeloz.xyz, 1 zelt.in, 1 zelvar.cz, 1 zemli.tk, 1 zemlova.cz, 1 +zemlya.com.ua, 1 zemlyaki.ga, 1 zemlyaki.ml, 1 zemlyaki.tk, 1 @@ -167352,17 +167579,20 @@ zen-zone.tk, 1 zenassociates.com, 1 zenbalans.nl, 1 +zenbluemkt.com.br, 0 zenbox.pl, 1 zenchain.com, 1 zencube.ga, 1 zendarhunters.tk, 1 +zendave.au, 1 zendev.ga, 1 zendev.tk, 1 zendodd.com, 1 zendrop.com, 1 zenduit.com, 1 +zenetek.bg, 1 zenfires.com, 1 -zenfoodbook.com, 1 +zenfoodbook.com, 0 zengdong.ren, 1 zenghuanmin.cn, 0 zengold.com, 1 @@ -167371,7 +167601,6 @@ zenidees.com, 1 zenihc.my, 0 zeniran.com, 1 -zenisi.com, 1 zenit505.com, 1 zenitchik.org, 0 zenithappliance.co.uk, 1 @@ -167395,6 +167624,7 @@ zenon.at, 1 zenon.eu, 1 zenoweb.nl, 1 +zenprivacy.net, 1 zenride.co, 0 zenrtal-online-russia.ml, 1 zenspace.us, 1 @@ -167454,16 +167684,15 @@ zerodoubtclub.com, 1 zerodrytimefarnham.co.uk, 1 zeroed.com.au, 1 +zeroemissiongrid.com, 1 zerofox.gq, 1 zerofy.de, 0 zerogamestore.ir, 1 zerohash.com, 1 -zerohouse.co, 1 zeroknowledge.me, 1 zerolime.se, 1 zerolink.click, 1 zerolink.es, 1 -zeromods.io, 1 zeromoment.marketing, 1 zeronet.io, 1 zeroplast24.ru, 1 @@ -167515,6 +167744,7 @@ zeusec.co.jp, 1 zeusembroidery.com.au, 1 zeusindia.tk, 1 +zeva-mundial.co.uk, 1 zevelev.net, 1 zevenbergenbos.tk, 1 zewtie.com, 1 @@ -167548,7 +167778,6 @@ zhabagly.com, 1 zhabthra.com, 1 zhamolov.tk, 1 -zhan.moe, 1 zhana-auen.tk, 1 zhang-hao.com, 1 zhang.fm, 1 @@ -167575,8 +167804,7 @@ zhaojin97.cn, 0 zhaopage.com, 1 zhaostephen.com, 1 -zhaoxixiangban.cc, 1 -zharfa.org, 1 +zhaoxixiangban.cc, 0 zhaso.com, 0 zhattyt.com, 0 zhbot.org, 1 @@ -167594,14 +167822,12 @@ zhengzihan.com, 1 zhenic.ir, 1 zhenn.fr, 1 -zhenyan.org, 1 zheruik.kz, 1 zhestokiemechtyi.tk, 1 zhestokijavtor.tk, 1 zhi.ci, 1 zhiboba.fun, 1 zhidkiy-kashtan.ga, 1 -zhih.me, 1 zhihua-lai.com, 1 zhijikaoyan.com, 1 zhikin.com, 1 @@ -167616,12 +167842,15 @@ zhitanska.com, 1 zhitomir-news.ru, 1 zhivoe.tk, 1 +zhixiu.com, 1 zhiyulife.pp.ua, 1 zhl123.com, 1 zhodani.space, 1 zhodino.cf, 1 zhodino.ga, 1 +zhongai.com, 1 zhonghongshunlian.com, 1 +zhongqiao.com, 1 zhongxia.me, 1 zhongzicili.ws, 1 zhongzilou.com, 1 @@ -167651,6 +167880,7 @@ zhuktrans.msk.ru, 1 zhumadilov.kz, 1 zhunlink.com, 1 +zhuqiang.com, 1 zhurnalyu.ga, 1 zhuweiwei.cn, 1 zhylon.de, 1 @@ -167745,7 +167975,9 @@ zip4.pl, 1 zipalerts.com, 1 ziparcfhive.ga, 1 +ziphealthy.com, 1 zipjobs.com, 1 +zipmedia.eu, 1 zipotech.com, 1 zippie.tk, 1 zippingus.com, 1 @@ -167779,11 +168011,13 @@ zitstabureau24.nl, 1 ziua.net, 1 zivava.ge, 1 +zivimexico.com, 1 zivot.org, 1 zivotbezkrutosti.cz, 1 zivotsdietou.cz, 1 zivotvluxusu.cz, 1 zixiao.wang, 1 +zixin.com, 1 ziz.exchange, 0 ziz.nl, 1 zizcollections.com, 1 @@ -167793,7 +168027,6 @@ zja.nl, 1 zjawa.pro, 1 zjc3.com, 1 -zjeunesse.com, 1 zjsnrwiki.com, 1 zju.tv, 1 zjuqsc.com, 1 @@ -167941,6 +168174,7 @@ zoeyvid.de, 1 zof.kh.ua, 1 zoflora.co.uk, 1 +zofoke.com, 1 zofran-medication.cf, 1 zofran.ga, 1 zofran.gq, 1 @@ -167950,10 +168184,12 @@ zofrex.com, 0 zofzpcb.com, 1 zogatest.tk, 1 +zogevikst.nl, 1 zohditech.com, 1 zoho.in, 1 zoho.sa, 1 zohomon.com, 1 +zohra.ninja, 1 zoidberg.tv, 1 zoigl.club, 1 zok-ambicija.tk, 1 @@ -167979,11 +168215,11 @@ zolushka-1950.tk, 1 zolw.info, 1 zom.bi, 1 +zomatonics.com, 1 zomatree.live, 1 zombie-40th.com, 1 zombie.cam, 1 zombieclown.com, 1 -zombiecomponents.com, 1 zombiecrowinc.tk, 1 zombielandkf.tk, 1 zombiemix.tk, 1 @@ -168059,7 +168295,6 @@ zoomaal.com, 1 zoomcar.pro, 1 zoomcarwash.net, 1 -zoomek.com, 1 zoomerhost.com, 1 zoomgov.com, 1 zoomlikenew.com, 1 @@ -168101,7 +168336,7 @@ zork.ca, 1 zorkin.uz, 1 zornica.tk, 1 -zorntt.fr, 0 +zorntt.fr, 1 zorox.sex, 1 zorro.management, 1 zorte.net, 1 @@ -168125,7 +168360,6 @@ zottika.com, 1 zotum.net, 1 zouaouitransport.fr, 1 -zoubaa.de, 0 zouyaoji.top, 1 zov-news.ru, 1 zova.io, 1 @@ -168154,6 +168388,7 @@ zqwqz.org, 1 zr.si, 1 zrali.com, 1 +zrampage.com, 1 zravyobrazky.cz, 1 zravypapir.cz, 1 zrejstejna.cz, 1 @@ -168201,10 +168436,8 @@ ztn.sh, 1 ztt.im, 1 ztv.su, 1 -ztylez.com, 1 zuan-in.com, 1 zuan-in.net, 1 -zubby.com, 1 zubel.it, 0 zubenciy.tk, 1 zubilo-perm.ru, 1 @@ -168215,7 +168448,6 @@ zudomc.me, 1 zuefle.net, 1 zuehlcke.de, 1 -zuehlke-coaching.de, 1 zuffel.com, 1 zufuribita.tk, 1 zug-anwalt.de, 0 @@ -168228,7 +168460,9 @@ zuichongqing.com, 0 zuiderlokaal.nl, 1 zuiderzeemuseum.nl, 1 +zuijia.com, 1 zuim.de, 1 +zuinin.com, 1 zuitaotu.com, 1 zuivelonline.nl, 1 zuiverjegeest.nl, 1 @@ -168254,9 +168488,7 @@ zumturm.org, 1 zumub.com, 1 zumwildenaffen.com, 1 -zund-app.com, 1 zundapp.one, 1 -zundapp529.nl, 1 zundappachterhoek.nl, 1 zuoai.net, 1 zuomin.tk, 1 diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/blocklists/addons-bloomfilters.json firefox-esr-128.12.0esr/services/settings/dumps/blocklists/addons-bloomfilters.json --- firefox-esr-128.11.0esr/services/settings/dumps/blocklists/addons-bloomfilters.json 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/blocklists/addons-bloomfilters.json 2025-06-17 01:36:43.000000000 +0000 @@ -3,6 +3,315 @@ { "stash": { "blocked": [ + "support@guarda.com:1.3.1", + "{9eef92f7-82c3-41da-81e2-c6711b8fff77}:1.0.0", + "{9eef92f7-82c3-41da-81e2-c6711b8fff77}:1.0.1", + "{9eef92f7-82c3-41da-81e2-c6711b8fff77}:13.18.9", + "{9eef92f7-82c3-41da-81e2-c6711b8fff77}:91.5.0.3", + "{efbc2fa2-d6a3-4a90-9e14-705e7c12a057}:1.0.0", + "{efbc2fa2-d6a3-4a90-9e14-705e7c12a057}:4.0.2", + "metameta2o@example.com:1.0", + "metameta2o@example.com:13.18.8", + "metameta2o@example.com:13.18.9", + "metameta1o@example.com:1.0", + "metameta1o@example.com:13.18.1", + "admin@exodus.com:1.3.1" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1749743666427, + "key_format": "{guid}:{version}", + "stash_time": 1749818104880, + "id": "da7b9eee-3961-4b6c-9b2e-73642835897d", + "last_modified": 1749818177432 + }, + { + "stash": { + "blocked": [ + "meta-dev1@example.com:1.0", + "meta-dev1@example.com:1.0.1", + "meta-dev@example.com:1.2", + "meta-dev@example.com:1.2.1", + "meta-dev@example.com:1.2.2", + "meta-dev@example.com:1.2.3", + "meta-dev@example.com:12.18.6", + "meta-dev@example.com:12.18.7", + "meta-dev@example.com:13.18.1", + "meta-dev@example.com:13.18.2", + "filecoin-dev@example.com:1.2", + "filecoin-dev@example.com:1.3", + "filecoin-dev@example.com:12.18.2" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1749623772325, + "key_format": "{guid}:{version}", + "stash_time": 1749645306102, + "id": "f2697c7a-94ba-47a3-b5c7-c587897128e4", + "last_modified": 1749645388171 + }, + { + "stash": { + "blocked": [], + "unblocked": [ + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-1965444566:2.0.7" + ], + "softblocked": [] + }, + "schema": 1749482890992, + "key_format": "{guid}:{version}", + "stash_time": 1749623705009, + "id": "4ae79a79-5f07-4083-8929-55f6010723a5", + "last_modified": 1749623772254 + }, + { + "stash": { + "blocked": [ + "simple-tab-groups@drive6ik:5.5" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1749126973379, + "key_format": "{guid}:{version}", + "stash_time": 1749213305492, + "id": "c4819838-fc5c-4613-b188-b13e7bf315c3", + "last_modified": 1749213372557 + }, + { + "stash": { + "blocked": [ + "{44fdb5d3-05bf-40b1-8656-c5b0e37985b3}:1.0.0", + "{44fdb5d3-05bf-40b1-8656-c5b0e37985b3}:1.0.1", + "{44fdb5d3-05bf-40b1-8656-c5b0e37985b3}:1.0.2", + "{44fdb5d3-05bf-40b1-8656-c5b0e37985b3}:1.0.7", + "{44fdb5d3-05bf-40b1-8656-c5b0e37985b3}:1.0.9" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1749105373963, + "key_format": "{guid}:{version}", + "stash_time": 1749126905129, + "id": "d4cb3612-df6e-4f8e-8930-2b2b11ea7c21", + "last_modified": 1749126973311 + }, + { + "stash": { + "blocked": [], + "unblocked": [ + "omkoccdnelofncmfglaojiamckipjblb@chrome-store-foxified-228715104:7.3.3" + ], + "softblocked": [] + }, + "schema": 1749062171726, + "key_format": "{guid}:{version}", + "stash_time": 1749105305619, + "id": "c30efa2e-bce1-47d0-9535-5bd0062e1a6b", + "last_modified": 1749105373811 + }, + { + "stash": { + "blocked": [ + "bitget-firefox@bitget.com:2.16.7", + "bitget-firefox@example.com:2.16.6" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748966470063, + "key_format": "{guid}:{version}", + "stash_time": 1749062105190, + "id": "a68e2eb8-dfd1-4a15-996a-78944d79a2eb", + "last_modified": 1749062171583 + }, + { + "stash": { + "blocked": [ + "{51d9e8b4-96d7-4299-948a-0b28a54ffaf9}:6.6.2" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748889373075, + "key_format": "{guid}:{version}", + "stash_time": 1748954106587, + "id": "9eece217-fe28-4757-bb53-6d88ae1ef5b9", + "last_modified": 1748954181841 + }, + { + "stash": { + "blocked": [ + "filfox-de2@example.com:1.0", + "filfox-de2@example.com:1.0.1", + "filfox-de1@example.com:1.0", + "ton-dev1@example.com:1.8", + "ton-dev1@example.com:1.9", + "ton-dev1@example.com:1.9.1", + "filfox-dev@example.com:1.0", + "filfox-dev@example.com:1.2" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748867771824, + "key_format": "{guid}:{version}", + "stash_time": 1748889305261, + "id": "38cea384-18c2-4a3b-a1af-31657255b416", + "last_modified": 1748889372914 + }, + { + "stash": { + "blocked": [ + "{ae4cb7b8-d776-4e49-b803-2f6b961c33f9}:24.12.99.32", + "{ae4cb7b8-d776-4e49-b803-2f6b961c33f9}:24.12.99.34", + "{ae4cb7b8-d776-4e49-b803-2f6b961c33f9}:25.1.0.1", + "wallet@mystenlabs.com:24.12.99.32", + "wallet@mystenlabs.com:24.12.99.33" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748856098784, + "key_format": "{guid}:{version}", + "stash_time": 1748867705665, + "id": "035b5770-ed17-4e01-9946-b1cf5a5bc309", + "last_modified": 1748867771623 + }, + { + "stash": { + "blocked": [ + "support@exodus.com:1.2.0", + "support@exodus.com:1.2.3", + "support@exodus.com:1.2.5", + "support@exodus.com:1.2.7", + "support@exodus.com:1.2.8", + "support@exodus.com:1.2.9" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748370984454, + "key_format": "{guid}:{version}", + "stash_time": 1748630105058, + "id": "6c6e5aa0-9159-437d-b62b-f7544061f46e", + "last_modified": 1748630172541 + }, + { + "stash": { + "blocked": [ + "{f09ff4ee-5216-4c51-b3bf-31e1f4bf5b5c}:1.0.5", + "{f09ff4ee-5216-4c51-b3bf-31e1f4bf5b5c}:1.0.7", + "{f09ff4ee-5216-4c51-b3bf-31e1f4bf5b5c}:1.0.9", + "{f09ff4ee-5216-4c51-b3bf-31e1f4bf5b5c}:1.0.11", + "footokx-scores@opensourcefora.site:1.5", + "footokx-scores@opensourcefora.site:13.5", + "footokx-scores@opensourcefora.site:13.7", + "footokx-scores@opensourcefora.site:13.8", + "footokx-scores@opensourcefora.site:13.11" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748284571776, + "key_format": "{guid}:{version}", + "stash_time": 1748370907296, + "id": "d3bcc414-367d-46c9-9210-395d57e22155", + "last_modified": 1748370984313 + }, + { + "stash": { + "blocked": [ + "suiwallet@example.com:1.2" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748268762319, + "key_format": "{guid}:{version}", + "stash_time": 1748284505318, + "id": "078ad199-6e80-42aa-a2b8-961d06d420b2", + "last_modified": 1748284571653 + }, + { + "stash": { + "blocked": [ + "{4966a25b-b88d-408e-a71c-96b5bff561f6}:1.0" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1748003780355, + "key_format": "{guid}:{version}", + "stash_time": 1748262906516, + "id": "bc93c8eb-c162-4859-9b72-c427574c6b8b", + "last_modified": 1748262979293 + }, + { + "stash": { + "blocked": [ + "glu@prod:2025.5" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1747982182039, + "key_format": "{guid}:{version}", + "stash_time": 1748003705959, + "id": "6f0ad1a7-7294-4319-a130-a1c3610a5d3a", + "last_modified": 1748003780182 + }, + { + "stash": { + "blocked": [], + "unblocked": [ + "{2e3be1f1-fb5c-40fb-b578-d2c9184ce470}:2.4.1.14038", + "{2e3be1f1-fb5c-40fb-b578-d2c9184ce470}:2.4.1.14043", + "{51536072-b64d-4a34-bee0-49b8e8175bc1}:2.4.1.14038", + "{666ff753-69f8-49da-8adf-8aa770d3e383}:2.4.1.14041", + "{666ff753-69f8-49da-8adf-8aa770d3e383}:2.4.1.14044", + "{5f398d3f-25db-47f5-b422-aa2364ff6c0b}:2.3.8", + "ihmgiclibbndffejedjimfjmfoabpcke@chromeStoreFoxified-231839395:2.9.51", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified--1790109361:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-1235661559:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-1391172115:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-1689651976:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-1899575932:2.0.6", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-274820859:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-2765042028:2.0.6", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-2961456433:2.0.6", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-526754774:2.0.6", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chrome-store-foxified-839608472:2.0.7", + "aapbdbdomjkkjkaonfhkkikfgjllcleb@chromeStoreFoxified-231839395:2.0.6" + ], + "softblocked": [] + }, + "schema": 1747847624608, + "key_format": "{guid}:{version}", + "stash_time": 1747982106373, + "id": "aad2bcb7-b91a-402b-85df-f18476603268", + "last_modified": 1747982181879 + }, + { + "stash": { + "blocked": [ + "sui-dev@example.com:1.2", + "sui-dev@example.com:1.3" + ], + "unblocked": [], + "softblocked": [] + }, + "schema": 1747672081769, + "key_format": "{guid}:{version}", + "stash_time": 1747744507071, + "id": "7159edd0-a80f-49c1-b056-aa9065f484ce", + "last_modified": 1747744582051 + }, + { + "stash": { + "blocked": [ "scorebase@opensourcehigher.site:13.3", "scorebase@opensourcehigher.site:13.4", "scorebase@opensourcehigher.site:13.5", @@ -378,5 +687,5 @@ "last_modified": 1739466430716 } ], - "timestamp": 1747398972252 + "timestamp": 1749818177432 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/blocklists/gfx.json firefox-esr-128.12.0esr/services/settings/dumps/blocklists/gfx.json --- firefox-esr-128.11.0esr/services/settings/dumps/blocklists/gfx.json 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/blocklists/gfx.json 2025-06-17 01:36:44.000000000 +0000 @@ -1,6 +1,32 @@ { "data": [ { + "os": "WINNT 10.0", + "schema": 1748268762353, + "vendor": "0x10de", + "details": { + "bug": "1968876", + "name": "NVIDIA mixed refresh rate + dcomp + Windows 10 bugs" + }, + "devices": [], + "enabled": true, + "feature": "WEBRENDER_COMPOSITOR", + "hardware": "", + "driverVendor": "", + "versionRange": { + "maxVersion": "139.0", + "minVersion": "139.0" + }, + "driverVersion": "", + "featureStatus": "BLOCKED_DEVICE", + "windowProtocol": "", + "driverVersionMax": "", + "desktopEnvironment": "", + "driverVersionComparator": "", + "id": "f5947ade-470c-4f40-9c6a-3af14cd91cca", + "last_modified": 1748485472559 + }, + { "os": "Linux", "schema": 1731431264604, "vendor": "0x10de", @@ -1557,5 +1583,5 @@ "last_modified": 1480349134090 } ], - "timestamp": 1731615130278 + "timestamp": 1748485472559 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/main/devtools-compatibility-browsers.json firefox-esr-128.12.0esr/services/settings/dumps/main/devtools-compatibility-browsers.json --- firefox-esr-128.11.0esr/services/settings/dumps/main/devtools-compatibility-browsers.json 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/main/devtools-compatibility-browsers.json 2025-06-17 01:36:42.000000000 +0000 @@ -1,328 +1,328 @@ { "data": [ { - "name": "Opera", - "schema": 1747440304496, - "status": "nightly", - "version": "121", - "browserid": "opera", - "id": "f6db5e03-957c-4d2b-a74b-d537ea26be3f", - "last_modified": 1747642859915 + "name": "Safari", + "schema": 1749550693771, + "status": "beta", + "version": "26", + "browserid": "safari", + "id": "a2267a3f-85fb-4cae-ae62-114bac84b6e2", + "last_modified": 1749710045183 }, { - "name": "Edge", - "schema": 1747440304162, - "status": "planned", - "version": "139", - "browserid": "edge", - "id": "c652a9a5-3a1c-4272-8a52-68dd4e9ae1b4", - "last_modified": 1747642859911 + "name": "WebView on iOS", + "schema": 1749600305332, + "status": "beta", + "version": "26", + "browserid": "webview_ios", + "id": "4bffa3ba-dc73-452c-8ad8-0a5c0a678a5b", + "last_modified": 1749710045179 }, { - "name": "Edge", - "schema": 1747199364491, + "name": "Safari on iOS", + "schema": 1749600305266, "status": "beta", - "version": "137", - "browserid": "edge", - "id": "fd0c0e43-c139-4526-8f78-16d479f71267", - "last_modified": 1747642859907 + "version": "26", + "browserid": "safari_ios", + "id": "35e8bf06-f297-404f-b4d3-186f3fd5dbae", + "last_modified": 1749710045175 }, { - "name": "Opera", - "schema": 1747440304433, - "status": "beta", - "version": "120", - "browserid": "opera", - "id": "24abaee4-eb98-4eee-8b27-209a3dedac71", - "last_modified": 1747642859900 + "name": "Samsung Internet", + "schema": 1749254703179, + "status": "current", + "version": "28.0", + "browserid": "samsunginternet_android", + "id": "d85a7f04-256c-4b3c-a633-29d0b2a19f18", + "last_modified": 1749550693720 }, { - "name": "Opera", - "schema": 1747440304368, + "name": "WebView on iOS", + "schema": 1748995503594, "status": "current", - "version": "119", - "browserid": "opera", - "id": "06763118-b650-4937-8d4c-55de017faa53", - "last_modified": 1747642859896 + "version": "18.5", + "browserid": "webview_ios", + "id": "6825f615-9f79-4745-a3be-b104b9248e42", + "last_modified": 1749017535209 }, { - "name": "Edge", - "schema": 1747440304090, - "status": "nightly", - "version": "138", - "browserid": "edge", - "id": "c9aa191e-ce6c-4f14-89b3-67877f64bc92", - "last_modified": 1747642859892 + "name": "Safari", + "schema": 1748995503304, + "status": "current", + "version": "18.5", + "browserid": "safari", + "id": "eecb087c-5690-4874-a579-6ec0e2a0284d", + "last_modified": 1749017535205 }, { - "name": "Node.js", - "schema": 1747181110151, + "name": "Safari on iOS", + "schema": 1748995503452, "status": "current", - "version": "24.0.0", - "browserid": "nodejs", - "id": "9e4eb0f8-808c-4ae9-b137-bf0172b24166", - "last_modified": 1747199364436 + "version": "18.5", + "browserid": "safari_ios", + "id": "a9289b33-c6cc-4993-aa89-ce04acaef875", + "last_modified": 1749017535201 + }, + { + "name": "Deno", + "schema": 1748649903302, + "status": "current", + "version": "2.3.2", + "browserid": "deno", + "id": "1f2765cf-a177-4249-b5f9-fdf271727bb7", + "last_modified": 1748854785996 }, { "name": "Edge", - "schema": 1746230703388, + "schema": 1748649903447, "status": "current", - "version": "136", + "version": "137", "browserid": "edge", - "id": "debb081e-a0a2-45ed-9431-605493ad9400", - "last_modified": 1747035932495 + "id": "fd0c0e43-c139-4526-8f78-16d479f71267", + "last_modified": 1748854785992 }, { - "name": "WebView Android", - "schema": 1745971504608, + "name": "Firefox for Android", + "schema": 1748390704665, "status": "planned", - "version": "139", - "browserid": "webview_android", - "id": "fdb5c123-2409-4e93-bc2c-e9d482c3eabf", - "last_modified": 1745991620104 - }, - { - "name": "Opera Android", - "schema": 1745971504319, - "status": "current", - "version": "89", - "browserid": "opera_android", - "id": "0eafe050-dc00-409b-927e-e5eb457e33a6", - "last_modified": 1745991620101 + "version": "142", + "browserid": "firefox_android", + "id": "78d60df0-cb7e-4949-9917-ed8fdc503382", + "last_modified": 1748418497438 }, { - "name": "Chrome", - "schema": 1745971503281, + "name": "Chrome Android", + "schema": 1748390704003, "status": "planned", - "version": "139", - "browserid": "chrome", - "id": "6ffd90da-55f8-4759-8049-2b3696d34d42", - "last_modified": 1745991620098 + "version": "140", + "browserid": "chrome_android", + "id": "794cc316-0785-4962-847c-f31ac285f847", + "last_modified": 1748418497435 }, { - "name": "Firefox", - "schema": 1745971503884, + "name": "WebView Android", + "schema": 1748390704998, "status": "planned", - "version": "141", - "browserid": "firefox", - "id": "e6ac475d-0038-451e-b875-e71a26f26c1f", - "last_modified": 1745991620095 + "version": "140", + "browserid": "webview_android", + "id": "7bbb223e-ada4-4f53-babb-b93a73927329", + "last_modified": 1748418497431 }, { - "name": "Chrome Android", - "schema": 1745971503591, + "name": "Chrome", + "schema": 1748390703679, "status": "planned", - "version": "139", - "browserid": "chrome_android", - "id": "6dc0e4cb-560c-46ad-996f-2e65cd9a78bf", - "last_modified": 1745991620091 + "version": "140", + "browserid": "chrome", + "id": "60172b96-7711-458b-9b0e-2dd55255bf05", + "last_modified": 1748418497427 }, { - "name": "Firefox for Android", - "schema": 1745971504179, + "name": "Firefox", + "schema": 1748390704332, "status": "planned", - "version": "141", - "browserid": "firefox_android", - "id": "e2a35b06-f07e-417d-98c6-f9eafdff546b", - "last_modified": 1745991620088 + "version": "142", + "browserid": "firefox", + "id": "a5323a0e-8201-4c4b-a5fd-ff89431cc98b", + "last_modified": 1748418497422 }, { "name": "Firefox", - "schema": 1745971503771, - "status": "beta", + "schema": 1748390704131, + "status": "current", "version": "139", "browserid": "firefox", "id": "5135fcdf-d80b-4297-a169-8a0670ec43ea", - "last_modified": 1745991620081 + "last_modified": 1748418497417 }, { "name": "Firefox for Android", - "schema": 1745971504069, - "status": "beta", + "schema": 1748390704463, + "status": "current", "version": "139", "browserid": "firefox_android", "id": "9cb04ffb-8d53-4c9b-87bf-4fef786c727f", - "last_modified": 1745991620078 + "last_modified": 1748418497412 }, { "name": "Chrome", - "schema": 1745971503166, - "status": "beta", + "schema": 1748390703481, + "status": "current", "version": "137", "browserid": "chrome", "id": "aeaf5cc7-6eb8-4376-9969-af6970d3a115", - "last_modified": 1745991620075 + "last_modified": 1748418497408 }, { "name": "Chrome Android", - "schema": 1745971503473, - "status": "beta", + "schema": 1748390703816, + "status": "current", "version": "137", "browserid": "chrome_android", "id": "5238773e-4c08-43c8-b225-7f26aae817d1", - "last_modified": 1745991620072 + "last_modified": 1748418497405 }, { "name": "WebView Android", - "schema": 1745971504504, - "status": "beta", + "schema": 1748390704805, + "status": "current", "version": "137", "browserid": "webview_android", "id": "a68b6fa2-9dda-4338-b854-2b0b1fd089bc", - "last_modified": 1745991620068 + "last_modified": 1748418497400 }, { "name": "WebView Android", - "schema": 1745971504444, - "status": "current", - "version": "136", + "schema": 1748390704935, + "status": "nightly", + "version": "139", "browserid": "webview_android", - "id": "c1b25fd4-6410-45ca-a30a-98c695218b65", - "last_modified": 1745991620062 - }, - { - "name": "Chrome Android", - "schema": 1745971503412, - "status": "current", - "version": "136", - "browserid": "chrome_android", - "id": "07b75996-dfbd-4cbc-b7de-14c7e86ff61e", - "last_modified": 1745991620059 + "id": "fdb5c123-2409-4e93-bc2c-e9d482c3eabf", + "last_modified": 1748418497380 }, { "name": "Chrome", - "schema": 1745971503094, - "status": "current", - "version": "136", + "schema": 1748390703619, + "status": "nightly", + "version": "139", "browserid": "chrome", - "id": "d3e90306-4932-42b5-9c19-8c062cb901ff", - "last_modified": 1745991620055 + "id": "6ffd90da-55f8-4759-8049-2b3696d34d42", + "last_modified": 1748418497376 }, { "name": "Firefox", - "schema": 1745971503717, - "status": "current", - "version": "138", + "schema": 1748390704265, + "status": "nightly", + "version": "141", "browserid": "firefox", - "id": "3e7e41f6-e4ec-44d6-8111-d8416c5d68eb", - "last_modified": 1745991620042 + "id": "e6ac475d-0038-451e-b875-e71a26f26c1f", + "last_modified": 1748418497372 }, { - "name": "Firefox for Android", - "schema": 1745971504010, - "status": "current", - "version": "138", - "browserid": "firefox_android", - "id": "565c0c7b-74a7-4c24-947d-24ec5403cfc7", - "last_modified": 1745991620039 + "name": "Chrome Android", + "schema": 1748390703945, + "status": "nightly", + "version": "139", + "browserid": "chrome_android", + "id": "6dc0e4cb-560c-46ad-996f-2e65cd9a78bf", + "last_modified": 1748418497368 }, { "name": "Firefox for Android", - "schema": 1745971504125, + "schema": 1748390704600, "status": "nightly", - "version": "140", + "version": "141", "browserid": "firefox_android", - "id": "29671e58-5233-4969-8f3a-b3208e3b8f17", - "last_modified": 1745991620036 - }, - { - "name": "Firefox", - "schema": 1745971503824, - "status": "nightly", - "version": "140", - "browserid": "firefox", - "id": "9949da65-f6be-41f4-9c9d-73bc27b4d2a0", - "last_modified": 1745991620032 + "id": "e2a35b06-f07e-417d-98c6-f9eafdff546b", + "last_modified": 1748418497363 }, { "name": "WebView Android", - "schema": 1745971504558, - "status": "nightly", + "schema": 1748390704866, + "status": "beta", "version": "138", "browserid": "webview_android", "id": "ca0f7fe1-7bf2-4154-ab36-d759e08d0276", - "last_modified": 1745991620029 + "last_modified": 1748418497359 }, { "name": "Chrome Android", - "schema": 1745971503529, - "status": "nightly", + "schema": 1748390703880, + "status": "beta", "version": "138", "browserid": "chrome_android", "id": "485be132-bf7e-4586-af0f-8e731365b8c8", - "last_modified": 1745991620026 + "last_modified": 1748418497354 + }, + { + "name": "Firefox for Android", + "schema": 1748390704532, + "status": "beta", + "version": "140", + "browserid": "firefox_android", + "id": "29671e58-5233-4969-8f3a-b3208e3b8f17", + "last_modified": 1748418497349 + }, + { + "name": "Firefox", + "schema": 1748390704196, + "status": "beta", + "version": "140", + "browserid": "firefox", + "id": "9949da65-f6be-41f4-9c9d-73bc27b4d2a0", + "last_modified": 1748418497345 }, { "name": "Chrome", - "schema": 1745971503226, - "status": "nightly", + "schema": 1748390703553, + "status": "beta", "version": "138", "browserid": "chrome", "id": "ddeb0464-e5e9-4b00-816f-211de9a4e818", - "last_modified": 1745991620023 + "last_modified": 1748418497341 }, { - "name": "WebView on iOS", - "schema": 1743811504360, - "status": "beta", - "version": "18.5", - "browserid": "webview_ios", - "id": "6825f615-9f79-4745-a3be-b104b9248e42", - "last_modified": 1744003666413 + "name": "Opera", + "schema": 1747440304496, + "status": "nightly", + "version": "121", + "browserid": "opera", + "id": "f6db5e03-957c-4d2b-a74b-d537ea26be3f", + "last_modified": 1747642859915 }, { - "name": "Safari", - "schema": 1743811504249, - "status": "beta", - "version": "18.5", - "browserid": "safari", - "id": "eecb087c-5690-4874-a579-6ec0e2a0284d", - "last_modified": 1744003666410 + "name": "Edge", + "schema": 1747440304162, + "status": "planned", + "version": "139", + "browserid": "edge", + "id": "c652a9a5-3a1c-4272-8a52-68dd4e9ae1b4", + "last_modified": 1747642859911 }, { - "name": "Safari on iOS", - "schema": 1743811504305, + "name": "Opera", + "schema": 1747440304433, "status": "beta", - "version": "18.5", - "browserid": "safari_ios", - "id": "a9289b33-c6cc-4993-aa89-ce04acaef875", - "last_modified": 1744003666405 + "version": "120", + "browserid": "opera", + "id": "24abaee4-eb98-4eee-8b27-209a3dedac71", + "last_modified": 1747642859900 }, { - "name": "Safari", - "schema": 1743638704212, + "name": "Opera", + "schema": 1747440304368, "status": "current", - "version": "18.4", - "browserid": "safari", - "id": "cf1cd501-f4d5-4d50-8b15-69f542242897", - "last_modified": 1743663287834 + "version": "119", + "browserid": "opera", + "id": "06763118-b650-4937-8d4c-55de017faa53", + "last_modified": 1747642859896 }, { - "name": "Safari on iOS", - "schema": 1743638704325, - "status": "current", - "version": "18.4", - "browserid": "safari_ios", - "id": "5f48eafa-ae46-47e0-b877-2dc787043df2", - "last_modified": 1743663287831 + "name": "Edge", + "schema": 1747440304090, + "status": "nightly", + "version": "138", + "browserid": "edge", + "id": "c9aa191e-ce6c-4f14-89b3-67877f64bc92", + "last_modified": 1747642859892 }, { - "name": "WebView on iOS", - "schema": 1743638704717, + "name": "Node.js", + "schema": 1747181110151, "status": "current", - "version": "18.4", - "browserid": "webview_ios", - "id": "da68f85c-70d1-44fb-803f-f69288964055", - "last_modified": 1743663287829 + "version": "24.0.0", + "browserid": "nodejs", + "id": "9e4eb0f8-808c-4ae9-b137-bf0172b24166", + "last_modified": 1747199364436 }, { - "name": "Deno", - "schema": 1740182702831, + "name": "Opera Android", + "schema": 1745971504319, "status": "current", - "version": "2.2", - "browserid": "deno", - "id": "9e4229e7-0c63-4134-8dc1-fb52bbb3cf80", - "last_modified": 1740474638731 + "version": "89", + "browserid": "opera_android", + "id": "0eafe050-dc00-409b-927e-e5eb457e33a6", + "last_modified": 1745991620101 }, { "name": "Node.js", @@ -334,15 +334,6 @@ "last_modified": 1735832995466 }, { - "name": "Samsung Internet", - "schema": 1731974720014, - "status": "current", - "version": "27.0", - "browserid": "samsunginternet_android", - "id": "e05f8a82-8aa6-4621-b1ef-3195828ccdc0", - "last_modified": 1732521556529 - }, - { "name": "Firefox for Android", "schema": 1723593904156, "status": "esr", @@ -370,5 +361,5 @@ "last_modified": 1665656484764 } ], - "timestamp": 1747642859915 + "timestamp": 1749710045183 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/main/search-config-v2.json firefox-esr-128.12.0esr/services/settings/dumps/main/search-config-v2.json --- firefox-esr-128.11.0esr/services/settings/dumps/main/search-config-v2.json 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/main/search-config-v2.json 2025-06-17 01:36:43.000000000 +0000 @@ -3261,19 +3261,41 @@ "suggestions": { "base": "https://suggest.perplexity.ai/suggest", "searchTermParamName": "q" + }, + "trending": { + "base": "https://www.perplexity.ai/rest/autosuggest/list-trending-suggest" } } }, "id": "bb836721-7be9-4de6-ac18-520189a69076", "identifier": "perplexity", - "last_modified": 1745933974539, + "last_modified": 1749848937099, "recordType": "engine", - "schema": 1745887296200, + "schema": 1749743664865, "variants": [ { "environment": { "experiment": "perplexity" - } + }, + "subVariants": [ + { + "environment": { + "locales": [ + "de" + ], + "regions": [ + "de", + "us", + "gb" + ] + }, + "urls": { + "trending": { + "base": "https://www.perplexity.ai/rest/autosuggest/list-trending-suggest?lang=de-DE" + } + } + } + ] } ] }, @@ -8220,5 +8242,5 @@ "schema": 1707824831520 } ], - "timestamp": 1747257920659 + "timestamp": 1749848937099 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/main/search-telemetry-v2.json firefox-esr-128.12.0esr/services/settings/dumps/main/search-telemetry-v2.json --- firefox-esr-128.11.0esr/services/settings/dumps/main/search-telemetry-v2.json 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/main/search-telemetry-v2.json 2025-06-17 01:36:43.000000000 +0000 @@ -1,198 +1,7 @@ { "data": [ { - "schema": 1747075599737, - "subframes": [], - "components": [ - { - "type": "ad_carousel", - "included": { - "parent": { - "selector": ".adsMvCarousel" - }, - "related": { - "selector": ".cr" - }, - "children": [ - { - "selector": ".pa_item", - "countChildren": true - } - ] - } - }, - { - "type": "ad_link", - "excluded": { - "parent": { - "selector": "aside" - } - }, - "included": { - "parent": { - "selector": ".sb_adTA" - }, - "children": [ - { - "type": "ad_sitelink", - "selector": ".b_vlist2col" - } - ] - } - }, - { - "type": "ad_sidebar", - "included": { - "parent": { - "selector": "aside" - }, - "children": [ - { - "selector": ".pa_item, .sb_adTA", - "countChildren": true - } - ] - } - }, - { - "type": "incontent_searchbox", - "topDown": true, - "included": { - "parent": { - "selector": "form#sb_form" - }, - "related": { - "selector": "#sw_as" - }, - "children": [ - { - "selector": "input[name='q']" - } - ] - } - }, - { - "type": "cookie_banner", - "topDown": true, - "included": { - "parent": { - "selector": "div#bnp_cookie_banner" - }, - "children": [ - { - "selector": "button#bnp_btn_accept", - "eventListeners": [ - { - "action": "clicked_accept", - "eventType": "click" - } - ] - }, - { - "selector": "button#bnp_btn_reject", - "eventListeners": [ - { - "action": "clicked_reject", - "eventType": "click" - } - ] - }, - { - "selector": "a#bnp_btn_preference", - "eventListeners": [ - { - "action": "clicked_more_options", - "eventType": "click" - } - ] - } - ] - } - }, - { - "type": "ad_link", - "default": true - } - ], - "shoppingTab": { - "regexp": "^/shop?", - "selector": "#b-scopeListItem-shop a" - }, - "taggedCodes": [ - "MOZ2", - "MOZ4", - "MOZ5", - "MOZA", - "MOZB", - "MOZD", - "MOZE", - "MOZI", - "MOZL", - "MOZM", - "MOZO", - "MOZR", - "MOZT", - "MOZW", - "MOZX", - "MZABT", - "MZCP", - "MZTOF", - "MZSL01", - "MZSL02", - "MZSL03" - ], - "telemetryId": "bing", - "organicCodes": [], - "codeParamName": "pc", - "queryParamName": "q", - "followOnCookies": [ - { - "host": "www.bing.com", - "name": "_SS", - "codeParamName": "PC", - "extraCodePrefixes": [], - "extraCodeParamName": "" - }, - { - "host": "www.bing.com", - "name": "SRCHS", - "codeParamName": "PC", - "extraCodePrefixes": [], - "extraCodeParamName": "" - } - ], - "queryParamNames": [ - "q" - ], - "domainExtraction": { - "ads": [ - { - "method": "textContent", - "selectors": "#b_results .b_ad .b_attribution cite, .adsMvCarousel cite, aside cite" - } - ], - "nonAds": [ - { - "method": "textContent", - "selectors": "#b_results .b_algo .b_attribution cite" - } - ] - }, - "searchPageRegexp": "^https://www\\.bing\\.com/search", - "nonAdsLinkRegexps": [ - "^https://www.bing.com/ck/a" - ], - "searchPageMatches": [ - "https://www.bing.com/search*" - ], - "extraAdServersRegexps": [ - "^https://www\\.bing\\.com/acli?c?k" - ], - "id": "e1eec461-f1f3-40de-b94b-3b670b78108c", - "last_modified": 1747257937608 - }, - { - "schema": 1742915671669, + "schema": 1748966468517, "subframes": [], "components": [ { @@ -377,7 +186,7 @@ } ], "shoppingTab": { - "regexp": "&tbm=shop", + "regexp": "&udm=28", "selector": "div[role='navigation'] a", "inspectRegexpInSERP": true }, @@ -484,7 +293,198 @@ "url" ], "id": "635a3325-1995-42d6-be09-dbe4b2a95453", - "last_modified": 1742996756546 + "last_modified": 1749153997368 + }, + { + "schema": 1747075599737, + "subframes": [], + "components": [ + { + "type": "ad_carousel", + "included": { + "parent": { + "selector": ".adsMvCarousel" + }, + "related": { + "selector": ".cr" + }, + "children": [ + { + "selector": ".pa_item", + "countChildren": true + } + ] + } + }, + { + "type": "ad_link", + "excluded": { + "parent": { + "selector": "aside" + } + }, + "included": { + "parent": { + "selector": ".sb_adTA" + }, + "children": [ + { + "type": "ad_sitelink", + "selector": ".b_vlist2col" + } + ] + } + }, + { + "type": "ad_sidebar", + "included": { + "parent": { + "selector": "aside" + }, + "children": [ + { + "selector": ".pa_item, .sb_adTA", + "countChildren": true + } + ] + } + }, + { + "type": "incontent_searchbox", + "topDown": true, + "included": { + "parent": { + "selector": "form#sb_form" + }, + "related": { + "selector": "#sw_as" + }, + "children": [ + { + "selector": "input[name='q']" + } + ] + } + }, + { + "type": "cookie_banner", + "topDown": true, + "included": { + "parent": { + "selector": "div#bnp_cookie_banner" + }, + "children": [ + { + "selector": "button#bnp_btn_accept", + "eventListeners": [ + { + "action": "clicked_accept", + "eventType": "click" + } + ] + }, + { + "selector": "button#bnp_btn_reject", + "eventListeners": [ + { + "action": "clicked_reject", + "eventType": "click" + } + ] + }, + { + "selector": "a#bnp_btn_preference", + "eventListeners": [ + { + "action": "clicked_more_options", + "eventType": "click" + } + ] + } + ] + } + }, + { + "type": "ad_link", + "default": true + } + ], + "shoppingTab": { + "regexp": "^/shop?", + "selector": "#b-scopeListItem-shop a" + }, + "taggedCodes": [ + "MOZ2", + "MOZ4", + "MOZ5", + "MOZA", + "MOZB", + "MOZD", + "MOZE", + "MOZI", + "MOZL", + "MOZM", + "MOZO", + "MOZR", + "MOZT", + "MOZW", + "MOZX", + "MZABT", + "MZCP", + "MZTOF", + "MZSL01", + "MZSL02", + "MZSL03" + ], + "telemetryId": "bing", + "organicCodes": [], + "codeParamName": "pc", + "queryParamName": "q", + "followOnCookies": [ + { + "host": "www.bing.com", + "name": "_SS", + "codeParamName": "PC", + "extraCodePrefixes": [], + "extraCodeParamName": "" + }, + { + "host": "www.bing.com", + "name": "SRCHS", + "codeParamName": "PC", + "extraCodePrefixes": [], + "extraCodeParamName": "" + } + ], + "queryParamNames": [ + "q" + ], + "domainExtraction": { + "ads": [ + { + "method": "textContent", + "selectors": "#b_results .b_ad .b_attribution cite, .adsMvCarousel cite, aside cite" + } + ], + "nonAds": [ + { + "method": "textContent", + "selectors": "#b_results .b_algo .b_attribution cite" + } + ] + }, + "searchPageRegexp": "^https://www\\.bing\\.com/search", + "nonAdsLinkRegexps": [ + "^https://www.bing.com/ck/a" + ], + "searchPageMatches": [ + "https://www.bing.com/search*" + ], + "extraAdServersRegexps": [ + "^https://www\\.bing\\.com/acli?c?k" + ], + "id": "e1eec461-f1f3-40de-b94b-3b670b78108c", + "last_modified": 1747257937608 }, { "isSPA": true, @@ -851,5 +851,5 @@ "last_modified": 1741781945953 } ], - "timestamp": 1747257937608 + "timestamp": 1749153997368 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/main/translations-models.json firefox-esr-128.12.0esr/services/settings/dumps/main/translations-models.json --- firefox-esr-128.11.0esr/services/settings/dumps/main/translations-models.json 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/main/translations-models.json 2025-06-17 01:36:44.000000000 +0000 @@ -1,6 +1,1086 @@ { "data": [ { + "name": "vocab.taen.spm", + "schema": 1749753255326, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "ta", + "attachment": { + "hash": "913e75e4fce0d34181fd7629cee95f3358fc4417896d023f8fec39380a69f352", + "size": 1089980, + "filename": "vocab.taen.spm", + "location": "main-workspace/translations-models/0d3ba3b1-be60-4f0c-8476-09163d3f689a.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "691fba45-ba5e-493f-892f-243a354fa9ee", + "last_modified": 1749763158840 + }, + { + "name": "lex.50.50.teen.s2t.bin", + "schema": 1749753270824, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "te", + "attachment": { + "hash": "5df84ca17e4cc76a73ef7d93f94f53a89f37a11a456f2b6373ff19c4ce4ef964", + "size": 4815756, + "filename": "lex.50.50.teen.s2t.bin", + "location": "main-workspace/translations-models/98fdf53d-e127-4660-ba23-30ee74488555.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "bd7a44e1-2aa1-4ec4-89e8-4b6f96ea5cc8", + "last_modified": 1749763158836 + }, + { + "name": "vocab.teen.spm", + "schema": 1749753276012, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "te", + "attachment": { + "hash": "dd57e1d68316ae32f9ba3f77223f317ce39cd1ef72e69e6b06b7c1d1ba954052", + "size": 1056197, + "filename": "vocab.teen.spm", + "location": "main-workspace/translations-models/6e97bb13-628b-436b-8989-22d8d78b48f6.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "d6b10c75-e81b-40db-b114-eaa502075dec", + "last_modified": 1749763158832 + }, + { + "name": "model.teen.intgemm.alphas.bin", + "schema": 1749753261750, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "te", + "attachment": { + "hash": "e2ec7b13ba6148eba309244ee17dc935f1b71e95bbf57154216f6247877abb7e", + "size": 17141051, + "filename": "model.teen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/4da404ea-35a7-4d4e-b9f6-92f61a51f1d2.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "f22c46c9-ac82-4ebc-a308-89ad29019e3a", + "last_modified": 1749763158827 + }, + { + "name": "model.sqen.intgemm.alphas.bin", + "schema": 1749753226619, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "sq", + "attachment": { + "hash": "4b0ce319e7c8f7e1836ce18cb6522c83268e8cff54f2a7f5dcef270250a44475", + "size": 17141051, + "filename": "model.sqen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/a5e56b67-8112-4dac-becd-c405eae3d432.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "357ed916-dc49-4962-9a9f-11413da95d06", + "last_modified": 1749763158824 + }, + { + "name": "vocab.sqen.spm", + "schema": 1749753224822, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "sq", + "attachment": { + "hash": "6b7ce057b54ed983eb47087254ea8673e20a857739fc5b57874c80c3301bb91d", + "size": 820200, + "filename": "vocab.sqen.spm", + "location": "main-workspace/translations-models/a8343678-068f-4ab7-94f5-290a178b14f6.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "cb713655-7142-4c0a-8ffd-dba8ed9e4e2c", + "last_modified": 1749763158820 + }, + { + "name": "lex.50.50.msen.s2t.bin", + "schema": 1749753213285, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "ms", + "attachment": { + "hash": "1ef575be54a310eeace84c52e609f2a8c292f3c4b170376ee6ee3524c0c30316", + "size": 4371896, + "filename": "lex.50.50.msen.s2t.bin", + "location": "main-workspace/translations-models/ad6ea3a0-a9f1-4196-8b32-26b39bd24139.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "e3962239-d573-4ffb-b576-677d4e2ad7df", + "last_modified": 1749763158816 + }, + { + "name": "model.mlen.intgemm.alphas.bin", + "schema": 1749753176800, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "ml", + "attachment": { + "hash": "5480719a5a8ac43acdf28db1c89a4d60837a475e1120ea0c4e021c4d5b7e6fd6", + "size": 17141051, + "filename": "model.mlen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/07214006-5c41-4381-9dfb-53bfaa7d83e1.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "34f0a99c-8a02-4710-af02-a126b99f8fcc", + "last_modified": 1749763158812 + }, + { + "name": "vocab.msen.spm", + "schema": 1749753207781, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "ms", + "attachment": { + "hash": "6db8c20803d5f9c9fff2b6c3950f5bda4a9fa14aaef1d92818f8a3d53fd850f9", + "size": 802191, + "filename": "vocab.msen.spm", + "location": "main-workspace/translations-models/52efac0e-1d7f-40f8-b86c-28af54a67c0b.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "29af3cad-7ad3-4e59-9dd4-0f801a014916", + "last_modified": 1749763158808 + }, + { + "name": "lex.50.50.mlen.s2t.bin", + "schema": 1749753184285, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "ml", + "attachment": { + "hash": "afb882ad10c9540c12fa105e1e5418a54ec8117f11c4f17d998adf1d445e308c", + "size": 5017972, + "filename": "lex.50.50.mlen.s2t.bin", + "location": "main-workspace/translations-models/46e98e03-90c5-4d64-b283-c389213b3b3f.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "d42d8b81-7c7a-4f58-ba4b-cf2ffbc6d0bb", + "last_modified": 1749763158804 + }, + { + "name": "lex.50.50.knen.s2t.bin", + "schema": 1749753168050, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "kn", + "attachment": { + "hash": "aa50a74f15e9ef8cf27a5b905c17037bd9d67883afde71b34c4138f9507fedfc", + "size": 4655776, + "filename": "lex.50.50.knen.s2t.bin", + "location": "main-workspace/translations-models/f485d838-fabe-4941-92e4-ffaf48cf2a8f.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "b3aa4ff2-0f99-4450-9059-1aba29a9bd1c", + "last_modified": 1749763158800 + }, + { + "name": "lex.50.50.taen.s2t.bin", + "schema": 1749753243786, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "ta", + "attachment": { + "hash": "d2e5f66feb06d0cd20542f66f54c66d30230805b64ef08ebf6b8e5566461220a", + "size": 5267272, + "filename": "lex.50.50.taen.s2t.bin", + "location": "main-workspace/translations-models/367641c9-9a3a-4795-a5e2-04c7f60571da.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "42dd3650-4058-4f31-9049-96117615f612", + "last_modified": 1749763158795 + }, + { + "name": "model.knen.intgemm.alphas.bin", + "schema": 1749753156646, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "kn", + "attachment": { + "hash": "49e8d3bd794b098047f7b177d9d0e6d3e49ac798c2b75bc132149cb46c5bfbfd", + "size": 17141051, + "filename": "model.knen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/73d23f4e-bbea-40c8-a3e8-68d99b09659a.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "cd516b7f-8c73-402d-b56d-83508c82f062", + "last_modified": 1749763158791 + }, + { + "name": "vocab.knen.spm", + "schema": 1749753149568, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "kn", + "attachment": { + "hash": "d729397a42dba5801f330927a9956527161d6e0711b59fcea7cd2e862e6f36cc", + "size": 1065636, + "filename": "vocab.knen.spm", + "location": "main-workspace/translations-models/ca223543-b63b-42c5-ac23-39e029ed9ff9.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "c6dfbb9e-fd0d-410d-8f58-02948f3f3b75", + "last_modified": 1749763158788 + }, + { + "name": "vocab.heen.spm", + "schema": 1749753091196, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "he", + "attachment": { + "hash": "45f5d413b9208c5f24340ab0e20a63604a572784d289baa2d788deea946f79a2", + "size": 845177, + "filename": "vocab.heen.spm", + "location": "main-workspace/translations-models/d8763d8c-981d-4760-84b4-d9aae981f552.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "0a072a04-bd93-447a-bd48-1708a3046ac0", + "last_modified": 1749763158784 + }, + { + "name": "vocab.mlen.spm", + "schema": 1749753174908, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "ml", + "attachment": { + "hash": "c6b2150c85a18cae437d4e7245ef29d4b3629b2c611fce812d115a59c3b80efe", + "size": 1109047, + "filename": "vocab.mlen.spm", + "location": "main-workspace/translations-models/53b21dcf-e98a-4781-a519-f3ac93cbca56.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "565900e5-8ae1-482b-a893-4975439e6ff1", + "last_modified": 1749763158780 + }, + { + "name": "lex.50.50.hien.s2t.bin", + "schema": 1749753113537, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "hi", + "attachment": { + "hash": "e789be33dfdb639e98f5cf9eb01aa945ec3c882f68f3c8860389cf846f0112d8", + "size": 4605984, + "filename": "lex.50.50.hien.s2t.bin", + "location": "main-workspace/translations-models/d4a9b49e-6983-462d-ad30-3c85bf38f994.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "e5ae6eff-6f9f-4f16-a50c-e8e01f356493", + "last_modified": 1749763158775 + }, + { + "name": "lex.50.50.heen.s2t.bin", + "schema": 1749753076310, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "he", + "attachment": { + "hash": "427c88732cb93b28d2a947cace79f62aabceb7d6f4438516e85994b14a73b68e", + "size": 4636028, + "filename": "lex.50.50.heen.s2t.bin", + "location": "main-workspace/translations-models/e36f37da-3fd5-47a2-9599-4601c564c4b8.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "a3d0a2be-84d7-4a95-9f9c-f66eed3b348e", + "last_modified": 1749763158772 + }, + { + "name": "model.msen.intgemm.alphas.bin", + "schema": 1749753194855, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "ms", + "attachment": { + "hash": "db5c9415591f8a35c5c72046227b9c9398acade5df8afb5e6ac9f11f7d6650d5", + "size": 17141051, + "filename": "model.msen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/13b6eb80-0381-4ec8-a9bf-a22e8f637d6c.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "d647563b-5665-41bb-8a99-99884f0ae6d7", + "last_modified": 1749763158768 + }, + { + "name": "vocab.hien.spm", + "schema": 1749753126053, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "hi", + "attachment": { + "hash": "9cbc02094ac2ebd75211b3bb6789a9d6fa112ce3c08e897f1645f18b21fbab00", + "size": 925436, + "filename": "vocab.hien.spm", + "location": "main-workspace/translations-models/68175768-57b1-41b0-8c19-0452ce7739a1.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "98bcc4a1-bf6d-45ce-92d3-c9b7285bfc1d", + "last_modified": 1749763158763 + }, + { + "name": "model.hien.intgemm.alphas.bin", + "schema": 1749753134073, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "hi", + "attachment": { + "hash": "c82fd6ed3794b79fb9dde0718a22324502a408a9eca73497b5d0a4b8024ec6de", + "size": 17141051, + "filename": "model.hien.intgemm.alphas.bin", + "location": "main-workspace/translations-models/326f47ef-713c-490e-861b-329d2c49bf5b.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "e078e614-1ec4-4e6e-9017-1a4fd408e9f9", + "last_modified": 1749763158759 + }, + { + "name": "model.taen.intgemm.alphas.bin", + "schema": 1749753239190, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "ta", + "attachment": { + "hash": "5aece5d94824cc42d2f0f95482df61ff279a7d7bc4119543a8523ea5829aa947", + "size": 17141051, + "filename": "model.taen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/b5c88da9-fc56-4b68-b984-d8ae63e299ad.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "4b9ab2d8-9a43-488a-928e-81c05289c664", + "last_modified": 1749763158755 + }, + { + "name": "vocab.guen.spm", + "schema": 1749753060402, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "gu", + "attachment": { + "hash": "6ad2aa442cc04398bd06b4f03a1027939bbfbaac5f87b3d21f667406f4f62704", + "size": 965143, + "filename": "vocab.guen.spm", + "location": "main-workspace/translations-models/34bb63b0-df14-4559-9e50-b25b1efe637c.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "cde46d8f-44ae-4022-8946-8478a82391be", + "last_modified": 1749763158751 + }, + { + "name": "model.guen.intgemm.alphas.bin", + "schema": 1749753050833, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "gu", + "attachment": { + "hash": "7b16e4e64f2776c73d87db01922c091738566b6a6092a42488cbaee1385cb4ab", + "size": 17141051, + "filename": "model.guen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/cbaf363f-9dde-44a3-a823-9cb19d6352f3.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "42ed7111-7782-4bcc-92f5-9f50559b6864", + "last_modified": 1749763158747 + }, + { + "name": "vocab.faen.spm", + "schema": 1749753026375, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "fa", + "attachment": { + "hash": "bf36943053883d6c0fc98c2985f676a0a37042e796bad0e3df0a813d9d5393f4", + "size": 843153, + "filename": "vocab.faen.spm", + "location": "main-workspace/translations-models/4ea142e8-a1cb-426f-b6a8-f7f54243687d.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "13fc7343-deaf-4b5c-9eca-3101c7676670", + "last_modified": 1749763158742 + }, + { + "name": "lex.50.50.faen.s2t.bin", + "schema": 1749753021839, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "fa", + "attachment": { + "hash": "4828cb060bd4375f8aabb85fed39c18aca52b738838394546f2ddbf707a6f28e", + "size": 3896420, + "filename": "lex.50.50.faen.s2t.bin", + "location": "main-workspace/translations-models/068a04a5-309c-4d1d-9439-85d7aa4c3b9f.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "30e32fbb-3208-4e25-9ed1-ebeffe480a02", + "last_modified": 1749763158738 + }, + { + "name": "model.faen.intgemm.alphas.bin", + "schema": 1749753031989, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "fa", + "attachment": { + "hash": "aa326306c177e11129de5bfeba518abc499c0b6005492766748a9c9ea6f4c712", + "size": 17141051, + "filename": "model.faen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/93fc8636-d370-4685-b50a-78fdc3d4249a.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "744e8563-9ba2-400b-a5a6-af25285e422d", + "last_modified": 1749763158734 + }, + { + "name": "vocab.bnen.spm", + "schema": 1749753013743, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "bn", + "attachment": { + "hash": "8a6a4de992ccd47bae4227ec6420866374137d6cc88ed6e8b2f16b36322a9d37", + "size": 981300, + "filename": "vocab.bnen.spm", + "location": "main-workspace/translations-models/281c885c-bd1b-4c57-86c7-07c39e9c0641.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "51906b62-ed9c-4c84-998b-3e87c6f063a4", + "last_modified": 1749763158729 + }, + { + "name": "lex.50.50.bnen.s2t.bin", + "schema": 1749752987893, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "bn", + "attachment": { + "hash": "aea901a6bd8722962551c0349b8570af684444028b62bbff465be9931e6e9800", + "size": 4793596, + "filename": "lex.50.50.bnen.s2t.bin", + "location": "main-workspace/translations-models/1de6123f-1436-4af9-b073-2ab14414705d.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "b08af8fa-ec89-4b5e-976e-3d5a30ccd2f9", + "last_modified": 1749763158725 + }, + { + "name": "vocab.azen.spm", + "schema": 1749752955586, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "az", + "attachment": { + "hash": "9ae0beed517ad39a95b4e1ae95be4ddfdeba8b004139886d40a3a50874e16aa6", + "size": 835773, + "filename": "vocab.azen.spm", + "location": "main-workspace/translations-models/6570476c-58d5-468c-8a31-38ddec69f8b3.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "14073c96-47c5-4c77-af2a-89e86ada6153", + "last_modified": 1749763158721 + }, + { + "name": "model.bnen.intgemm.alphas.bin", + "schema": 1749753000855, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "bn", + "attachment": { + "hash": "14c1d9e92918e8d04cb0ed351ae386c3b5d5c62a6dc601d9515f4c7e6c2a3a56", + "size": 17141051, + "filename": "model.bnen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/85d95842-111a-4a51-af21-03c9c3d6aee9.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "fa57549a-984a-45ad-866e-a2bf5ee19301", + "last_modified": 1749763158717 + }, + { + "name": "lex.50.50.sqen.s2t.bin", + "schema": 1749753233914, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "sq", + "attachment": { + "hash": "b2f51df0bc14b9f89a29d39652a80167ef413eb1579957ecea825cb0a7575c60", + "size": 4256516, + "filename": "lex.50.50.sqen.s2t.bin", + "location": "main-workspace/translations-models/687e523f-0fb9-4c7e-aded-916bde7dc37b.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "f4cf6c4c-fae3-42ca-944b-856c7852a4c0", + "last_modified": 1749763158713 + }, + { + "name": "model.azen.intgemm.alphas.bin", + "schema": 1749752948441, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "az", + "attachment": { + "hash": "fff0b00229e42e3df56be33ec903013aea80dbdd8fc0c3673f6249ab6102490f", + "size": 17141051, + "filename": "model.azen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/17cd59a0-be31-45e1-b5d7-f698b138fb88.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "ae5a3988-b3c9-41f2-9561-385e617641c0", + "last_modified": 1749763158709 + }, + { + "name": "lex.50.50.azen.s2t.bin", + "schema": 1749752962635, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "az", + "attachment": { + "hash": "d534a8a29537e2539cac09d23360f27291765a030d424e108b9b0cabaa593672", + "size": 4820648, + "filename": "lex.50.50.azen.s2t.bin", + "location": "main-workspace/translations-models/8ef112b8-ad8a-4eaf-b3ae-9e3fa17e1faa.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "039b4c28-2820-4b69-898c-add51f6deec3", + "last_modified": 1749763158705 + }, + { + "name": "vocab.been.spm", + "schema": 1749752984884, + "toLang": "en", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "be", + "attachment": { + "hash": "dc235e4bfc4cdc25e0e1b36e07e29435b140861b4b94b8197bc715ddc7be912f", + "size": 931896, + "filename": "vocab.been.spm", + "location": "main-workspace/translations-models/da2a9605-3c27-42ef-acfc-0003d20e4a3a.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "7d10136a-e574-4c5a-966a-5855bacb4a34", + "last_modified": 1749763158701 + }, + { + "name": "lex.50.50.been.s2t.bin", + "schema": 1749752969779, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "be", + "attachment": { + "hash": "eec822f871f570f99ac70b13fe480fc6f612d37c69c047834676f1c9919d4aca", + "size": 4565784, + "filename": "lex.50.50.been.s2t.bin", + "location": "main-workspace/translations-models/ead8f4a7-2493-4b96-a533-7a248cb26cc3.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "35f660be-8ef2-4fc8-8887-8ddebae1330e", + "last_modified": 1749763158697 + }, + { + "name": "model.heen.intgemm.alphas.bin", + "schema": 1749753065174, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "he", + "attachment": { + "hash": "7291cab3ec483b8cf524da96201fe947dca8c550132be21a06badeb946b5c079", + "size": 17141051, + "filename": "model.heen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/02c0b84f-b805-4a21-922c-95afb98cb232.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "6dc4089a-6b4f-4360-9ffe-edf2d98bba42", + "last_modified": 1749763158693 + }, + { + "name": "model.been.intgemm.alphas.bin", + "schema": 1749752973572, + "toLang": "en", + "version": "2.0a1", + "fileType": "model", + "fromLang": "be", + "attachment": { + "hash": "3fcff7ef3102b082aeb165a6fc3e332ead2affcf7a6c91c43bb36da5add2dbb7", + "size": 17141051, + "filename": "model.been.intgemm.alphas.bin", + "location": "main-workspace/translations-models/4cd0edf5-c3cb-4e13-bf97-0057d96bf64e.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "30340fd1-af12-4733-96c8-0e3563af391a", + "last_modified": 1749763158689 + }, + { + "name": "lex.50.50.guen.s2t.bin", + "schema": 1749753055756, + "toLang": "en", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "gu", + "attachment": { + "hash": "af01dbec5a1555ddad7c4b19878ecda00e6f9d179ca76a40ab2413de6b081cb0", + "size": 4197836, + "filename": "lex.50.50.guen.s2t.bin", + "location": "main-workspace/translations-models/a3467837-e67e-46c3-9600-4cf7f3b4bc03.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "c9b2712e-c6c4-448a-88c4-60a67ea9a721", + "last_modified": 1749763158685 + }, + { + "name": "lex.50.50.slen.s2t.bin", + "schema": 1749670783266, + "toLang": "en", + "version": "2.0", + "fileType": "lex", + "fromLang": "sl", + "attachment": { + "hash": "f456a49e437ccb4a547e4b51480e29c8b83f11e26a3713af35b078cd4dd255cc", + "size": 4320484, + "filename": "lex.50.50.slen.s2t.bin", + "location": "main-workspace/translations-models/6aa47c57-2ee6-4186-9cd8-1edda9a17e23.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "4df4902d-6c64-4abb-8b47-b8ce914252df", + "last_modified": 1749675486508 + }, + { + "name": "model.slen.intgemm.alphas.bin", + "schema": 1749670816887, + "toLang": "en", + "version": "2.0", + "fileType": "model", + "fromLang": "sl", + "attachment": { + "hash": "9d15df58b60048366de4f7b6e727157ffdaea3a0fd1c1759ce232b057e2f991c", + "size": 31561787, + "filename": "model.slen.intgemm.alphas.bin", + "location": "main-workspace/translations-models/6846ad76-c672-4e1b-a431-7c909fb0b020.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "21bc5c3a-46ef-4ab1-be62-bc7528d93aae", + "last_modified": 1749675486502 + }, + { + "name": "lex.50.50.ensk.s2t.bin", + "schema": 1749670678298, + "toLang": "sk", + "version": "2.0", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "f3d1aec4ee5246d6a6ee5dc7ed4c6b18f6071c7baca69bf1344aef675b95515d", + "size": 3356348, + "filename": "lex.50.50.ensk.s2t.bin", + "location": "main-workspace/translations-models/18d8487d-14d6-4c4b-bec7-6fe82cb810a0.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "2627edc8-866c-45d7-bead-e903e35ac427", + "last_modified": 1749675486497 + }, + { + "name": "model.ensk.intgemm.alphas.bin", + "schema": 1749670669895, + "toLang": "sk", + "version": "2.0", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "e33af359fd58c8958104b1b74b3ea302800ccba2f125c1629e09d7f9dd9a3804", + "size": 31561787, + "filename": "model.ensk.intgemm.alphas.bin", + "location": "main-workspace/translations-models/c6b266c8-9f8a-49a8-8bb4-e8ec2a892b11.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "57a7c533-a3d9-46ef-801c-4071acfab698", + "last_modified": 1749675486493 + }, + { + "name": "model.enlv.intgemm.alphas.bin", + "schema": 1749670650472, + "toLang": "lv", + "version": "2.0", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "715f9f444dffa0b39e71955c28bffd30afa4cc8300a192ec8fabb766cc5ba11d", + "size": 31561787, + "filename": "model.enlv.intgemm.alphas.bin", + "location": "main-workspace/translations-models/d4467990-f0dd-4aa9-bb8b-5abcb8422b1a.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "2438423c-853d-4a7a-bd77-b98523ba4d84", + "last_modified": 1749675486489 + }, + { + "name": "lex.50.50.enuk.s2t.bin", + "schema": 1749670743260, + "toLang": "uk", + "version": "2.0", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "4182e7aea8404d506bba68715b2bf3397132f087785a7c3210e48d48a8c63a1f", + "size": 2828252, + "filename": "lex.50.50.enuk.s2t.bin", + "location": "main-workspace/translations-models/e645dc5b-7549-447b-a49f-5f2f11eb15ae.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "5715a0b6-a642-4530-b4ca-c3ea9214e5b2", + "last_modified": 1749675486485 + }, + { + "name": "vocab.ensk.spm", + "schema": 1749670658645, + "toLang": "sk", + "version": "2.0", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "cfa6a9e601d74686b117f041eb1ad9de94c34219110b67367d570a9e27026a46", + "size": 808888, + "filename": "vocab.ensk.spm", + "location": "main-workspace/translations-models/21e26e01-e0cd-46b4-95a7-1045805b28d4.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "a7181faf-4559-49d5-89e4-510bb1d283b3", + "last_modified": 1749675486482 + }, + { + "name": "vocab.enuk.spm", + "schema": 1749670769959, + "toLang": "uk", + "version": "2.0", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "330fe40da410c7a41fcbf6aa98a2e619600b235b278c186c0f04c8ad1c2fbb7d", + "size": 885736, + "filename": "vocab.enuk.spm", + "location": "main-workspace/translations-models/5a141fad-f1e9-44c2-98e5-bd15cb974188.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "cdd2968a-aafa-4fc8-a88f-e91ed7aaf7aa", + "last_modified": 1749675486477 + }, + { + "name": "model.enuk.intgemm.alphas.bin", + "schema": 1749670762166, + "toLang": "uk", + "version": "2.0", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "f1058f92d0b3abedc978b91ce8928f9ee6403d7ea168b41a087f79d02a4b2866", + "size": 31561787, + "filename": "model.enuk.intgemm.alphas.bin", + "location": "main-workspace/translations-models/291051e3-7bdf-4d67-aad5-ad7737e29ef9.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "9c411e5d-4958-42cf-bc35-f1e02cc8ebbd", + "last_modified": 1749675486474 + }, + { + "name": "model.enlt.intgemm.alphas.bin", + "schema": 1749670622076, + "toLang": "lt", + "version": "2.0", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "d27c676d9d761c2abfffec83956e32b2923f3f745b56acdbd84c49d888cdc94e", + "size": 31561787, + "filename": "model.enlt.intgemm.alphas.bin", + "location": "main-workspace/translations-models/721715af-a3ea-452a-94db-8d065fd2069d.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "81c8242a-360e-41cd-aab4-a98e6c2d978b", + "last_modified": 1749675486470 + }, + { + "name": "vocab.enlt.spm", + "schema": 1749670616403, + "toLang": "lt", + "version": "2.0", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "5d38fe70ff4a50368af756b715b69519c9ee064c27cbceeabc90d4e1a10f25a8", + "size": 806827, + "filename": "vocab.enlt.spm", + "location": "main-workspace/translations-models/ebe60388-49ad-4385-8b2e-41e07a0bf317.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "45d3ee1c-4c6b-4533-88d6-68d7a303fd11", + "last_modified": 1749675486466 + }, + { + "name": "vocab.enlv.spm", + "schema": 1749670643589, + "toLang": "lv", + "version": "2.0", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "63146b49ce46ba1283b6956e38efdd4899d1a409cad9d2b6a06cbd4e32ca0808", + "size": 816287, + "filename": "vocab.enlv.spm", + "location": "main-workspace/translations-models/26b141b8-1d6a-46ad-b836-976fc34e5144.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "3de7359d-7b93-4c88-92bf-1b8f92da5eda", + "last_modified": 1749675486462 + }, + { + "name": "vocab.slen.spm", + "schema": 1749670807640, + "toLang": "en", + "version": "2.0", + "fileType": "vocab", + "fromLang": "sl", + "attachment": { + "hash": "54ed331d3435e2bdc5b02462180197b77631f466fc0e61897b5469449857dd2b", + "size": 803078, + "filename": "vocab.slen.spm", + "location": "main-workspace/translations-models/4fad6fc2-5b29-4faa-ae48-61e17e6cbef5.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "8ba82178-4acf-4a5b-9c64-ef4c2d22c61a", + "last_modified": 1749675486458 + }, + { + "name": "lex.50.50.enlv.s2t.bin", + "schema": 1749670637236, + "toLang": "lv", + "version": "2.0", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "d54b9bc278558444c5c25df5ae7339b73eee55cf79705f19fec672b6d55d959c", + "size": 3359096, + "filename": "lex.50.50.enlv.s2t.bin", + "location": "main-workspace/translations-models/222e59b3-6a78-4aa9-93c7-6dac97b836c0.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "9e251a1a-2e9c-4a0c-a63d-be0eaa7e4870", + "last_modified": 1749675486454 + }, + { + "name": "model.ensl.intgemm.alphas.bin", + "schema": 1749670710315, + "toLang": "sl", + "version": "2.0", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "a34fc5cc2f52733f64e37f8512cf1ddc4723c08a7a1a59d01fc2b6e641fc2280", + "size": 31561787, + "filename": "model.ensl.intgemm.alphas.bin", + "location": "main-workspace/translations-models/398a8b77-b602-4873-acfe-76ad7d381ece.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "5d69cacf-0e3b-48ad-8d89-45e6b2f005cc", + "last_modified": 1749675486450 + }, + { + "name": "vocab.ensl.spm", + "schema": 1749670731490, + "toLang": "sl", + "version": "2.0", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "7cd295383c46824c05a05db76b543d3595f2516537dd22b77190a45c8919224d", + "size": 803212, + "filename": "vocab.ensl.spm", + "location": "main-workspace/translations-models/ad6274ee-7e2e-4309-a642-e859cdac1c92.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "84c686f8-218b-4abe-9f3c-bd24c980df91", + "last_modified": 1749675486445 + }, + { + "name": "lex.50.50.ensl.s2t.bin", + "schema": 1749670685269, + "toLang": "sl", + "version": "2.0", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "2190798297bc12505f917189defcf451ab5bd2e815bc05df244dc291dc2ae63b", + "size": 3428300, + "filename": "lex.50.50.ensl.s2t.bin", + "location": "main-workspace/translations-models/c87b8f54-5d64-47f1-be2e-09952023234c.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "721456d0-b36d-4ba0-9b0f-321eda20abb8", + "last_modified": 1749675486441 + }, + { + "name": "lex.50.50.enlt.s2t.bin", + "schema": 1749670629606, + "toLang": "lt", + "version": "2.0", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "5972c834218c7beea241dc8fe77c2e577a8d8b4eb3d3dc286d10ad890c64d374", + "size": 3421640, + "filename": "lex.50.50.enlt.s2t.bin", + "location": "main-workspace/translations-models/84a03c74-d2f1-474e-81e8-57e0f120a371.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.appinfo.OS != 'Android' || env.channel != 'release'", + "id": "31480440-b35e-4337-9622-bcaeedf3422a", + "last_modified": 1749675486437 + }, + { + "name": "model.enhu.intgemm.alphas.bin", + "schema": 1748268761157, + "toLang": "hu", + "version": "2.0a1", + "fileType": "model", + "fromLang": "en", + "attachment": { + "hash": "ec0c210d09cd5d8a5edf7a50462db0a8fb5dd78d03bbc6d4d72d91074f0490e4", + "size": 31561787, + "filename": "model.enhu.intgemm.alphas.bin", + "location": "main-workspace/translations-models/58648c7c-9baa-4541-abbd-03054f4d37e5.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "302c4d50-f27a-40ad-b703-344a9419eea9", + "last_modified": 1748624505420 + }, + { + "name": "lex.50.50.enhu.s2t.bin", + "schema": 1748446888250, + "toLang": "hu", + "version": "2.0a1", + "fileType": "lex", + "fromLang": "en", + "attachment": { + "hash": "f3d1e61003597d1cc9d87e05d2b398a7ae2b3941e3f96947764aac239df1a808", + "size": 3490288, + "filename": "lex.50.50.enhu.s2t.bin", + "location": "main-workspace/translations-models/23ad75a1-98c3-4ca0-86c2-912249247a19.bin", + "mimetype": "application/octet-stream" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "9f43eb72-59b6-40c5-8375-38eb424f84d6", + "last_modified": 1748624505416 + }, + { + "name": "vocab.enhu.spm", + "schema": 1748446880437, + "toLang": "hu", + "version": "2.0a1", + "fileType": "vocab", + "fromLang": "en", + "attachment": { + "hash": "2eee837cfdcc45c091d025f585d3fcdb293db7794e316b38a0aeff8c47a659e0", + "size": 806121, + "filename": "vocab.enhu.spm", + "location": "main-workspace/translations-models/38e4e2f1-d9ca-4107-8573-8a4daeee3747.spm", + "mimetype": "text/plain" + }, + "filter_expression": "env.channel == 'default' || env.channel == 'nightly'", + "id": "08b307e1-23c5-4981-95ea-85e39ae1c6cb", + "last_modified": 1748624505412 + }, + { "name": "srcvocab.enja.spm", "schema": 1745957382410, "toLang": "ja", @@ -6421,5 +7501,5 @@ "last_modified": 1701186751412 } ], - "timestamp": 1745959174037 + "timestamp": 1749763158840 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/main/translations-wasm.json firefox-esr-128.12.0esr/services/settings/dumps/main/translations-wasm.json --- firefox-esr-128.11.0esr/services/settings/dumps/main/translations-wasm.json 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/main/translations-wasm.json 2025-06-17 01:36:43.000000000 +0000 @@ -2,41 +2,41 @@ "data": [ { "name": "bergamot-translator", - "schema": 1734370203944, + "schema": 1749068911282, "license": "MPL-2.0", - "release": "v0.5.0", - "version": "2.0", - "revision": "b475d25cb4568dd7bf37f80b8804030f1820bd4b", + "release": "v0.6.0", + "version": "3.0", + "revision": "1de4a085d3a7afb625c51a60aabb5ad298e4059f", "attachment": { - "hash": "e67e2f8be1a3fc0d9b00adce8b641cdf767bf3de90f1b3ccf732c2d711304fa3", - "size": 4956176, + "hash": "a3a89d9ad0a4ed8f27bf3e403701b23f5709816f6376438503f2fa5b0182c2dc", + "size": 4960506, "filename": "bergamot-translator.wasm", - "location": "main-workspace/translations-wasm/ec4aab08-4e7c-4a62-a7a5-ee6874a5d1a2.wasm", + "location": "main-workspace/translations-wasm/05082c31-aee8-4249-9e01-c1865afd7520.wasm", "mimetype": "application/wasm" }, - "fx_release": "135.0a1", + "fx_release": "141.0a1", "filter_expression": "", - "id": "876af1dd-dfce-4766-8ca3-fd08cc067bc4", - "last_modified": 1734380308791 + "id": "4fd32605-9889-4dd9-9fc7-577ad1136746", + "last_modified": 1749069444811 }, { "name": "bergamot-translator", - "schema": 1733966433707, + "schema": 1734370203944, "license": "MPL-2.0", "release": "v0.5.0", - "version": "2.0a1", - "revision": "f9010478a45cd40bf7ad3d0aecdd62dd281ec5d6", + "version": "2.0", + "revision": "b475d25cb4568dd7bf37f80b8804030f1820bd4b", "attachment": { - "hash": "5430dd7f41709620b403e4628f357304c26120c9be634c732827c2ba9164d16c", - "size": 4956240, + "hash": "e67e2f8be1a3fc0d9b00adce8b641cdf767bf3de90f1b3ccf732c2d711304fa3", + "size": 4956176, "filename": "bergamot-translator.wasm", - "location": "main-workspace/translations-wasm/95f4c7df-7cd2-4851-be11-6414679c1089.wasm", + "location": "main-workspace/translations-wasm/ec4aab08-4e7c-4a62-a7a5-ee6874a5d1a2.wasm", "mimetype": "application/wasm" }, "fx_release": "135.0a1", - "filter_expression": "env.channel == 'nightly' || env.channel == 'default'", - "id": "bb125732-a388-4a63-8242-ed6d0147f97a", - "last_modified": 1734380308789 + "filter_expression": "", + "id": "876af1dd-dfce-4766-8ca3-fd08cc067bc4", + "last_modified": 1734380308791 }, { "name": "bergamot-translator", @@ -76,24 +76,6 @@ "last_modified": 1681500422552 }, { - "name": "bergamot-translator", - "schema": 1681242478400, - "license": "MPL-2.0", - "release": "v0.4.4", - "version": "1.0", - "revision": "5ae1b1ebb3fa9a3eabed8a64ca6798154bd486eb", - "attachment": { - "hash": "dad40ec05e6e26f6df56aa37f0d3a208adcd5d35d3347e0f9a8a267c89d4f947", - "size": 5175863, - "filename": "bergamot-translator.wasm", - "location": "main-workspace/translations-wasm/3453d482-85f3-43f2-bdb9-cf86228b721b.wasm", - "mimetype": "application/wasm" - }, - "filter_expression": "", - "id": "9aaec48d-7855-4fd5-88d7-9213747e9ef5", - "last_modified": 1681500422546 - }, - { "name": "fasttext-wasm", "schema": 1681242495582, "license": "MIT", @@ -112,5 +94,5 @@ "last_modified": 1681500422542 } ], - "timestamp": 1734380308791 + "timestamp": 1749069444811 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/security-state/intermediates.json firefox-esr-128.12.0esr/services/settings/dumps/security-state/intermediates.json --- firefox-esr-128.11.0esr/services/settings/dumps/security-state/intermediates.json 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/security-state/intermediates.json 2025-06-17 01:36:42.000000000 +0000 @@ -1,6 +1,1228 @@ { "data": [ { + "schema": 1749218267234, + "derHash": "M7W3wh5mUE/T7mWw/g0SwxdboqYWRBtxM9s8Eja1Xfc=", + "attachment": { + "hash": "c1c59079867df7f1447389a387bc00327796e9c03033bc44985696095c40670b", + "size": 2320, + "filename": "vjiQOnyCiCdvQOT85lxKLDk9MvnpS8otmdz8LPe1FXw=.pem", + "location": "security-state-staging/intermediates/b932523d-d127-411d-a2a8-8f4f09805749.pem", + "mimetype": "application/x-pem-file" + }, + "id": "32dd9469-be41-45f6-835d-c703a944a14a", + "last_modified": 1749221822598 + }, + { + "schema": 1749218265639, + "derHash": "Mh+1vSYl+AnOyXc7M5W0Ug0fqTEdQ9SU5hjerAwCs0M=", + "attachment": { + "hash": "6326d18bd333ce79563a47601c65bee260ce5d770fe8b7832cf251ff119bf40f", + "size": 2320, + "filename": "4yFrEyVXGShx51a0sHVr7NAabsQswd3U0UxxhU9HA1E=.pem", + "location": "security-state-staging/intermediates/852d67bf-9d21-41d8-a576-d7aa78baeb00.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8279aace-bf65-4b16-bb99-303924d21b2b", + "last_modified": 1749221822595 + }, + { + "schema": 1749218264048, + "derHash": "3H/GKtpBqTqYzkMkWc1+QNHAN7HeJ/LFvLYomlOYQ0g=", + "attachment": { + "hash": "2faa20f89cfeb34b892217026f409750e6610408fb43ffb70a37beb475104b54", + "size": 2320, + "filename": "tSn2eZmYPk_XxYYz5YXtkHIwDjvcWl-0iRSAcHMB_AQ=.pem", + "location": "security-state-staging/intermediates/7f2528a1-fba7-4115-873f-f87e4b3a07a9.pem", + "mimetype": "application/x-pem-file" + }, + "id": "24d01768-6233-4475-9ca6-6562595393d9", + "last_modified": 1749221822591 + }, + { + "schema": 1749218263240, + "derHash": "n8xBYRiUnDEaWki0Qnj0/cxFplAiKmVt8Pnt4q7DTwQ=", + "attachment": { + "hash": "d3a07e1136178f26f37cb75e1b91a2cd7a6809e6b3a88866b972a1a249413549", + "size": 1134, + "filename": "4xbecvy-Mx03KrNLcz0oGLfYLYzohQAwLPwZjouK8y0=.pem", + "location": "security-state-staging/intermediates/7c01995c-7e6c-4a58-b4b2-59e253d694fd.pem", + "mimetype": "application/x-pem-file" + }, + "id": "ba877619-75cd-4177-bf6c-513f2abdf87b", + "last_modified": 1749221822588 + }, + { + "schema": 1749218266430, + "derHash": "leKdUlAyglkipYsDxW47l0Eje74ubNykVt+MweVr5KE=", + "attachment": { + "hash": "3b5b1865265c70149d8948ed2ad8196f7b7398b4f3fe2f92982b66dd79145d26", + "size": 1134, + "filename": "Hg8_Xe_zj8gXrEpHEaEhpEcbkBLYYKM_LXirZsSAeVw=.pem", + "location": "security-state-staging/intermediates/f8d7c02d-6112-490a-b3d2-eb86a72ce005.pem", + "mimetype": "application/x-pem-file" + }, + "id": "21f64181-ae2e-4a38-be2d-c7fed06b2014", + "last_modified": 1749221822585 + }, + { + "schema": 1749218262418, + "derHash": "B/gP15O+5MiBqQEQVldpaiN1Cbvk39sLp1K09PbUIBk=", + "attachment": { + "hash": "5906e643a602ce32dc25fff79aaaa514b667aa003b4588505a65dbf14f99fe34", + "size": 2320, + "filename": "gjdp16pPxtefRkbCojRIQ_L1T8W0Q3QtliUPLbwNw_0=.pem", + "location": "security-state-staging/intermediates/1f6dafe4-a945-4744-a005-8997e4e4a5bd.pem", + "mimetype": "application/x-pem-file" + }, + "id": "25b38664-bbb5-4986-90dd-b07dd05ca6ad", + "last_modified": 1749221822582 + }, + { + "schema": 1749218261077, + "derHash": "2KxU+vv722zmixvJlTZ1M5Zg3ZjUJd1yh24sop0kkas=", + "attachment": { + "hash": "5babdb304f52a4ebd2dd3d56ac6f7a2f68cdd02dcf162d04083fa42877748b19", + "size": 1134, + "filename": "67af9xS2EBisbFPJKaFGqSirwXd_aRV_fNJljdOCNIQ=.pem", + "location": "security-state-staging/intermediates/bc379d12-bf02-4b7c-ab42-1ec85e7230ec.pem", + "mimetype": "application/x-pem-file" + }, + "id": "40a6581e-dffd-4f13-97b3-5fc035da3449", + "last_modified": 1749221822579 + }, + { + "schema": 1749218264844, + "derHash": "1vECRDMIaUd006rTiuv6OCvENGva9q5/NsaeGbhEaJU=", + "attachment": { + "hash": "230a3dfd08aaa40714ba298c70377e61c0a6ee90833d1ae8ff2446e64d1f590e", + "size": 1134, + "filename": "n5GobuPgmKX-BK3Jon--Q0iM-2y6vaPRaugoyQltDcw=.pem", + "location": "security-state-staging/intermediates/985a901c-16cd-417a-b783-6fb10b18dd07.pem", + "mimetype": "application/x-pem-file" + }, + "id": "b5d0f8c6-8657-43c1-8f9c-704a510474a3", + "last_modified": 1749221822575 + }, + { + "schema": 1749131860538, + "derHash": "t4x/Y+JFg8fUDB0z2NvhFrOCtL6568QaGgaNUZuvS60=", + "attachment": { + "hash": "7d7086855984136d25f64b8acceb992d4dc6148286394085323bb4fd5139fad7", + "size": 1999, + "filename": "j4RL7W9ePcB4Cq0F_Ru9msmXr9LBeS_A8iEr-N9MRAY=.pem", + "location": "security-state-staging/intermediates/a42dd503-0daa-4462-8282-113d91599803.pem", + "mimetype": "application/x-pem-file" + }, + "id": "678712ab-6210-4483-a270-56de484abe70", + "last_modified": 1749135422352 + }, + { + "schema": 1748915875540, + "derHash": "boD59EwqmD8W3WqPCu/KRvlVhqchDdO3fthZ/J2xYMw=", + "attachment": { + "hash": "fb26e4f445c45ac2dc04ecdf68522143a6e7e397a5911753c68708514abced75", + "size": 1028, + "filename": "_yy4iVmH9j6LaTi-BsCaHdotDzyZ558R0p_vWad4r8A=.pem", + "location": "security-state-staging/intermediates/72474dd4-efe8-4c28-a44f-e593742073e5.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8c12217d-8f81-49fe-9c58-6b40ea05ab1a", + "last_modified": 1748919422503 + }, + { + "schema": 1748915872220, + "derHash": "g1yTzaADqKhsP0tr6UlQ93VF7tjVMOttyZFAxRSef90=", + "attachment": { + "hash": "004df2821fc204d853ad9c66c85ba3e1de6c94c58be94aea983d0dcd3d78089b", + "size": 1110, + "filename": "ba10Ay1sttjGnXGlBiQ1ZDLcIugluTOMnoqr7IaF_ss=.pem", + "location": "security-state-staging/intermediates/c58e0266-8e60-41ed-8049-7b48dea3792a.pem", + "mimetype": "application/x-pem-file" + }, + "id": "d44e18fe-4da7-4927-b18a-2e3d242bdc5d", + "last_modified": 1748919422496 + }, + { + "schema": 1748915874729, + "derHash": "i7Wz3ti2lhClQUmyOKFo/G13orzbfO8U4xWNeHsDnWo=", + "attachment": { + "hash": "43240b2141d90de62a8c293df03c3208746f5f734ff0ff11f243e138b54dfaab", + "size": 1024, + "filename": "8PWn-yZq0Qd_tjGKd9fwuCWsUx5FGvADO3P6xsNJvCA=.pem", + "location": "security-state-staging/intermediates/d5d8ebb0-2df3-4a8c-9bc9-5f2368b3c649.pem", + "mimetype": "application/x-pem-file" + }, + "id": "059dcb2f-0281-4a98-b5a0-6c9d39f66960", + "last_modified": 1748919422492 + }, + { + "schema": 1748915873897, + "derHash": "Y/p3JcCmXwOAKhlhdcPXk6MT2bORfNu71OVImPFU044=", + "attachment": { + "hash": "f14628926905d5e34aab5d50d097bbeb8702dfc08ac0bcd965bf9bbec92426d0", + "size": 1561, + "filename": "8Y2w_oLigt-bw8gKwQOUUzqLwmes0T1MsQq77du2C9Y=.pem", + "location": "security-state-staging/intermediates/d4814ee7-7ca2-4968-80ff-c728a303a82a.pem", + "mimetype": "application/x-pem-file" + }, + "id": "cb87a802-0f04-4d51-a087-b52e7128169c", + "last_modified": 1748919422489 + }, + { + "schema": 1748915871380, + "derHash": "wDJ7SCGE8MQgXfkpdSWq0qnw7/a9p932YEW6/e/UEw4=", + "attachment": { + "hash": "1267d13472d9a9badd5486f46eec706e1dc882e973f94bfa216be1018fb2afb1", + "size": 1110, + "filename": "Ogjr9PVHKvIQoIDFn4UTroh7jhD6UmE3bZLo0b2-wig=.pem", + "location": "security-state-staging/intermediates/b7760d38-9967-470b-b117-717759d16f82.pem", + "mimetype": "application/x-pem-file" + }, + "id": "3d2d148f-60af-4b6c-b472-3b72f5144d55", + "last_modified": 1748919422485 + }, + { + "schema": 1748915870556, + "derHash": "+NBzdaMZ/1+39+ufKx3vd9EL8z76KammRWOVilGhFoc=", + "attachment": { + "hash": "43f5123fc00c949fab21caf86e6fc6464637411fb26f10561d7e2790278561e8", + "size": 1024, + "filename": "v4NToCuzXGolvun_IyQ9X8Y-dZ_DLu2MVnIWvBmkGQQ=.pem", + "location": "security-state-staging/intermediates/683b4bab-3dec-4847-b4a1-6d27b6e44ed9.pem", + "mimetype": "application/x-pem-file" + }, + "id": "6c6e0351-12f3-4cb2-9e46-8628c3f31ecb", + "last_modified": 1748919422482 + }, + { + "schema": 1748915869713, + "derHash": "MRVUr9R23t6lyqDWkX8rBesSmU7orRYXtNr5jtTNV64=", + "attachment": { + "hash": "126fd09a8d25ee744e5f3f21e387f2bbbae57a2bb3ae2fe2a898576bc54ba73c", + "size": 1561, + "filename": "Q_GfxXVnUTwOQQ972ist43iGrnUdMWw2O3oEkGQDrVg=.pem", + "location": "security-state-staging/intermediates/07617b89-25c6-4b16-9191-2332c45b78ca.pem", + "mimetype": "application/x-pem-file" + }, + "id": "aef382b2-8a14-430c-9898-4fe3c4a6030b", + "last_modified": 1748919422478 + }, + { + "schema": 1748915873071, + "derHash": "jTWhHKOvTgcgRXeSh9YwxPbZ8nGD98OkKTcYG0Glvzs=", + "attachment": { + "hash": "62fc268848795546323163bdefb855da7f61ee5390b85b35e92d0b6d2f77d86f", + "size": 1110, + "filename": "5lDi6R7mZNO-ZG2hc8iFE5M1CqMELYwuOk6mU4n-v88=.pem", + "location": "security-state-staging/intermediates/3da11dbc-376f-4ab3-9cdd-9383c75df193.pem", + "mimetype": "application/x-pem-file" + }, + "id": "5c49be77-80d5-4254-9919-47373b8514ce", + "last_modified": 1748919422475 + }, + { + "schema": 1748915863636, + "derHash": "k+xOn3QYYJGSdIh95Ig/pFZGzajk8tgSEPpDK7c6zo4=", + "attachment": { + "hash": "c023e5e5cabdbfc49da0c7b895b6bd97d1f8c0c1c16fd99cd2cade947aeb4a37", + "size": 1110, + "filename": "1ZPGPLJJmJ6viwohZFICTIAMWTT2ZHqxjK94TrTElwQ=.pem", + "location": "security-state-staging/intermediates/2f0a48d7-fd41-47fb-a21e-af07a0c80be8.pem", + "mimetype": "application/x-pem-file" + }, + "id": "eafb19dc-9ab0-4cc0-9418-16ba3cb8e680", + "last_modified": 1748919422472 + }, + { + "schema": 1748915867241, + "derHash": "D06eLGWXp+vCyKkFfNDuDjuNLg51gtRC4iPVIL7Z9us=", + "attachment": { + "hash": "60d2db332955adf683873cc3be45bbd1331460d80561c4b4e55987068cbd0023", + "size": 1024, + "filename": "I2xbyLPGLOMejKsEUybNOK-L_nkjG5Xf_INS3SxqoPM=.pem", + "location": "security-state-staging/intermediates/edefbf2b-6fd5-447b-8785-cadd374d8061.pem", + "mimetype": "application/x-pem-file" + }, + "id": "27b02569-afcb-4240-a0a0-90bf0bafaf34", + "last_modified": 1748919422469 + }, + { + "schema": 1748915865504, + "derHash": "rzgdN8w3b0bqwT/3zt8buJD4floHdUsbBhe52MO/bXk=", + "attachment": { + "hash": "f1ede0203a77a0a93282135ea86f920189f2262fdae37e943432e8749b8ed592", + "size": 1024, + "filename": "6NEzYoJk-LpGYAGTWwCLEdaH95StiyftYhzQqBkTwfY=.pem", + "location": "security-state-staging/intermediates/77570df8-ac18-4a6b-801b-aaf21571a3ac.pem", + "mimetype": "application/x-pem-file" + }, + "id": "05690881-6ed1-4c39-999d-790c0d88711a", + "last_modified": 1748919422466 + }, + { + "schema": 1748915862673, + "derHash": "wZUcTe1jtSb9ysWqKPzZBzy44AtX4Y3lNvHKylMqGzo=", + "attachment": { + "hash": "ffbb94ab1d52418ca45e16b41113e6a84565ce13397483bdc45433000399983e", + "size": 1561, + "filename": "8hgx1qnLgJKSUxYT08bfpyJD2fCMj1IkP_p06yucfbs=.pem", + "location": "security-state-staging/intermediates/833df99b-6584-4e63-8f8d-939e77def52e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "2002af68-11da-4515-92d0-d9d302badd00", + "last_modified": 1748919422462 + }, + { + "schema": 1748915868895, + "derHash": "KFgMQJTvQ5mNNnqtbXpxrT2T20yKTOIbP7mSrp6n+PM=", + "attachment": { + "hash": "c3941361ba3bfd193468ce5e341f5c1314c08dc2a12c277e3dbc85fe4f8abae2", + "size": 1110, + "filename": "gP8lHOnYZe1EmHa4XAQ823j5584CqB6e5KfJvIgijgU=.pem", + "location": "security-state-staging/intermediates/ca0e2630-50a2-40ce-b467-24855c38bca0.pem", + "mimetype": "application/x-pem-file" + }, + "id": "b78ff8dd-a327-404a-a83d-1eb6857f6cee", + "last_modified": 1748919422459 + }, + { + "schema": 1748915868073, + "derHash": "aEVg2BSeYKKO9qnrCHdPrQ6kkoXSeONK7e7ykfjcj4U=", + "attachment": { + "hash": "72d919a1b08edc399ec5ea5d99a370caf9872d67389eff801025f97e783f8da8", + "size": 1110, + "filename": "wbqDgVUtHDXONZ9-HCHXYelelEYo98I3I10aRq--tbo=.pem", + "location": "security-state-staging/intermediates/e0e0494c-898d-4e85-a2b1-b4c043be7175.pem", + "mimetype": "application/x-pem-file" + }, + "id": "0684fbdf-2145-4a28-83ce-4dbed3249018", + "last_modified": 1748919422456 + }, + { + "schema": 1748915861606, + "derHash": "YrvBYnyrNsuH3sJ8dCdtTnQsftUTGSlQ2oJEybyO5Yo=", + "attachment": { + "hash": "0543539a9becde279751457617d8a2bc136944678d47a708b25a0fbf45ae2fd7", + "size": 1561, + "filename": "Re5xLOBuICSHBE8Meibuy0QaILVdhiy5RoU_WKl0BbQ=.pem", + "location": "security-state-staging/intermediates/0c49a583-d1a6-4ab4-b259-e9aed078d055.pem", + "mimetype": "application/x-pem-file" + }, + "id": "943cc31e-0769-4d4f-a1c2-71c2fea73316", + "last_modified": 1748919422452 + }, + { + "schema": 1748915866372, + "derHash": "lJMNVp7q5CZM9w9pvX/ND8+l8adq2HrR29vumE6TIeY=", + "attachment": { + "hash": "a8677f66b5c0278713d09770fc68d0fa3af9eeff0db34e723eefc3c49639a953", + "size": 1561, + "filename": "Z4FoREMhRa_LlSHG1hdFDrC1GfwFmlpF-AgFT3PIja0=.pem", + "location": "security-state-staging/intermediates/591ae170-c087-4efb-ab88-a5f3731ab39a.pem", + "mimetype": "application/x-pem-file" + }, + "id": "9899c58a-bf5d-4202-bc74-072ca1393942", + "last_modified": 1748919422449 + }, + { + "schema": 1748915864513, + "derHash": "toe0kAdI89mJD+e6gfA1vcB8yleKR3kN6L/AKRUSSFc=", + "attachment": { + "hash": "d1b102d25541abe699b09e109ee10a6de66fc1d70d13c94f58fc056d89c01653", + "size": 1561, + "filename": "6K26OIIfTmSo0ByPMH6aOCSHATueYrA5Jq72x_Wi0UA=.pem", + "location": "security-state-staging/intermediates/e90bf7bd-0376-4979-8d40-761b18adc5c7.pem", + "mimetype": "application/x-pem-file" + }, + "id": "39344ff4-17e7-46da-be2b-3211f53746b7", + "last_modified": 1748919422446 + }, + { + "schema": 1748915876359, + "derHash": "kS1+0vhur4GWyFKY/mdnM1KwR7c5SuUcP+0g0u62EvQ=", + "attachment": { + "hash": "87bf4c9ae2e75f7f62fdbdb418f511ebde3fc82259782d800a349aaf8b08a2f3", + "size": 1024, + "filename": "LdRmWh7XyypC6UdTH6bSoRYVu_h1hDpfi7aTZ8khRyM=.pem", + "location": "security-state-staging/intermediates/5d4f8f9b-ea1a-4d4c-88d7-67d8e46f246c.pem", + "mimetype": "application/x-pem-file" + }, + "id": "5269c951-2c8d-4095-ac52-45ffd179b8cc", + "last_modified": 1748919422441 + }, + { + "schema": 1748786263209, + "derHash": "8ux+Cizw41UP0zbPFrrwmnG0dZ3E2YdoAh6EmJQ8dUc=", + "attachment": { + "hash": "76969e0c4445e45fda9c8f105501e85ef67fdc5b4077b4378f4895c7557f885d", + "size": 1902, + "filename": "x8iYC3IJmVJzkxB6t6iAb16ou9o4GlR59wSvRmbEoFA=.pem", + "location": "security-state-staging/intermediates/1898620c-e2c2-48aa-8bec-553ad12abcb5.pem", + "mimetype": "application/x-pem-file" + }, + "id": "1888435d-281c-41a1-aec5-3c5ece228cc5", + "last_modified": 1748789822379 + }, + { + "schema": 1748786262358, + "derHash": "8V8pq+9zqk3Zq3VLrq42hb3Th0tGtSUHEXdihoVxgCY=", + "attachment": { + "hash": "375704665a129a1043d522e68ea2d9b2b0f30fcaa67eb8ae747af7fe84fd634d", + "size": 1061, + "filename": "44viFzTC-h_L-3OHRg4Rs5v4-AcpzHZvI9Tne2RDNGk=.pem", + "location": "security-state-staging/intermediates/f00d9965-5cc7-4c13-8394-22855f8baa89.pem", + "mimetype": "application/x-pem-file" + }, + "id": "fa82e120-91df-4d57-8cde-66afbc304aec", + "last_modified": 1748789822374 + }, + { + "schema": 1748786264159, + "derHash": "g9hD5+qfjK7xla/5OaobYi7sHesRdPh5riIzAq2g+G8=", + "attachment": { + "hash": "18c43206a19e571ce97da27cb444cfed4378b2181a419fc2282972c699e12dd8", + "size": 1061, + "filename": "GVnjj7fT_Ba-5eIOg04sZme_Dp5rmAa4a9QKbWbHFtA=.pem", + "location": "security-state-staging/intermediates/226bc5d5-89fc-41b4-a0d4-bea89bf93432.pem", + "mimetype": "application/x-pem-file" + }, + "id": "ec7123e6-60db-481c-9324-d94d16b9ff80", + "last_modified": 1748789822371 + }, + { + "schema": 1748786259747, + "derHash": "slL+HTrK1Mshq9LnmBIPykeGPEM2Q3UcZ1uAGY54gNg=", + "attachment": { + "hash": "16fb3e0872a66ecebf8fe593cb23d0bfb5867300d96beb13e327d2792675f493", + "size": 1061, + "filename": "rRCcVnsdFf0gZMZPSpg45aZLJZQiBue7_lfk-Wxy-LM=.pem", + "location": "security-state-staging/intermediates/2d554269-be0c-4f43-88c8-f3e958ab7e6a.pem", + "mimetype": "application/x-pem-file" + }, + "id": "6c7ca07e-49dc-47fd-969b-74e9bf884ae9", + "last_modified": 1748789822368 + }, + { + "schema": 1748786261501, + "derHash": "5g9UFpiSCPFgwDhXebAMP9h1qvYgEHN2T8oP9yiG5Zc=", + "attachment": { + "hash": "cf9a9c5a7f2a9b17f78503107bc86573b4077ac182f4336aa9990578b18e5a7e", + "size": 1902, + "filename": "kD2cOcFs6heIBepGhBJ0SzG5c5_fr4zadPenLbtepqs=.pem", + "location": "security-state-staging/intermediates/d46e1560-ee1a-49b3-a3d6-2c0704d1a178.pem", + "mimetype": "application/x-pem-file" + }, + "id": "0598393e-46fb-4c0e-ae03-8d9d56981cbd", + "last_modified": 1748789822365 + }, + { + "schema": 1748786260639, + "derHash": "dk+xsfCfROOxA8oGSD4OWhLc2SgjDbUVExoRiIaSk7Q=", + "attachment": { + "hash": "14755b4a5bcebf29b7e70cfa16bda38debfc13091f362940ddf1ca7120674487", + "size": 1902, + "filename": "jgVlNsWqCbzaA0lCM2FLsHcr3D7vubr7VRJlT0encg8=.pem", + "location": "security-state-staging/intermediates/94df89e3-760f-4cdc-ab68-e47bb8b971a1.pem", + "mimetype": "application/x-pem-file" + }, + "id": "b01d6f54-8501-4470-a2c4-9cc297d6c8a5", + "last_modified": 1748789822362 + }, + { + "schema": 1748613468911, + "derHash": "aIaMMybttIZShO4SOqy6mO5jS9wotEPbsjSISnu326U=", + "attachment": { + "hash": "46aba2c3a09d43f58213046d0d24b8d72909214f6a12ef536b9ac464675df479", + "size": 6606, + "filename": "OePGxvE8liB3UXJpTSD4HtrVWoYTk0zap8N5Om0muGs=.pem", + "location": "security-state-staging/intermediates/c08e74d4-41bc-4c0b-a013-178b2df71ef1.pem", + "mimetype": "application/x-pem-file" + }, + "id": "c7ce988b-e290-4807-8114-6aa381e488a9", + "last_modified": 1748617022274 + }, + { + "schema": 1748613467301, + "derHash": "6RWMavVojPz5iQIGxDBhyB+n/AfQjiiifAaMWAc6aZo=", + "attachment": { + "hash": "1c1d5e8241267136da3705fd506b169c5463a9f343d488c2a0acdfa960cd309a", + "size": 2052, + "filename": "Wd8xe_qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=.pem", + "location": "security-state-staging/intermediates/ca542134-7f2e-4fc9-87c9-eb7ee23cfafe.pem", + "mimetype": "application/x-pem-file" + }, + "id": "40452622-9d6c-48be-a106-e5d3ee4f391f", + "last_modified": 1748617022269 + }, + { + "schema": 1748613466523, + "derHash": "eQ7EKFBKYfJz5Pz3/9TVaZHtwC1EAvu9iRThSfonjB0=", + "attachment": { + "hash": "ecbc00b9ed43a432b55c42a94d0badca176de123a863ece1d8ce7b12662a4bcc", + "size": 6525, + "filename": "OePGxvE8liB3UXJpTSD4HtrVWoYTk0zap8N5Om0muGs=.pem", + "location": "security-state-staging/intermediates/f87ebe56-1386-4b95-bd23-bfee25cef01e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "469e1a5a-e758-4920-8eb8-b2a517a0baf2", + "last_modified": 1748617022265 + }, + { + "schema": 1748613468135, + "derHash": "TJE9BPtJXcNhGVUtYGj3uYke/kA0Tp5cHpEy9luu/38=", + "attachment": { + "hash": "b47f4335ae3edbdca967deaae2958f757fb4beb22b0a4d4f432579ebf498efd3", + "size": 2032, + "filename": "Wd8xe_qfTwq3ylFNd3IpaqLHZbh2ZNCLluVzmeNkcpw=.pem", + "location": "security-state-staging/intermediates/e1622bfc-91ea-4673-97d1-1b831a7c362f.pem", + "mimetype": "application/x-pem-file" + }, + "id": "065468f3-9699-44a0-a94a-9dbe23482932", + "last_modified": 1748617022260 + }, + { + "schema": 1748613465743, + "derHash": "MjIq4uMadDC+HWwEvYyr+9JAx00snb6CeA2x8/c2YKY=", + "attachment": { + "hash": "1e96c83a685ed5ee76287c49fd81f3a8b5725ab6459929b3bcfbdfe275bac468", + "size": 6480, + "filename": "OePGxvE8liB3UXJpTSD4HtrVWoYTk0zap8N5Om0muGs=.pem", + "location": "security-state-staging/intermediates/43790604-9e8f-4964-882d-4abfd11191ba.pem", + "mimetype": "application/x-pem-file" + }, + "id": "02655d38-e49e-4724-95ee-7106b411ae85", + "last_modified": 1748617022256 + }, + { + "schema": 1748613464898, + "derHash": "xrPG3kW8irklU2od8L7N6cQivhoGujkUJ1jB7MVYaA4=", + "attachment": { + "hash": "7838c760cb523cdd55efe81c53ee4c5a1ee9702379e1fdc610be0d4c52a1a332", + "size": 1999, + "filename": "LgbK4fwgsgDm-3SFV6RES-yTF9__LkFRZp4PeUTwqeA=.pem", + "location": "security-state-staging/intermediates/b6ca3b07-7c7f-41bf-8627-51e8624a2754.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8535d081-5cb2-412d-8452-365fba55e282", + "last_modified": 1748617022249 + }, + { + "schema": 1748570266149, + "derHash": "QYuXFAxxBYoJ6TOwidDVaD4xM81fclSPbBWhdXm6J9s=", + "attachment": { + "hash": "a3da475fb6b5736e6642eefa0d17b49bc818ffeb4e8284022ae6ca5de4fddd01", + "size": 2324, + "filename": "FvIFPeLJl4NoqZ3ta94YZioCRMhYblb37sr8dqlnv28=.pem", + "location": "security-state-staging/intermediates/8ba35028-240c-4a2a-855b-38f217b75ff5.pem", + "mimetype": "application/x-pem-file" + }, + "id": "6b0ba7fb-0c43-4eb1-a68c-22f8aaa631f9", + "last_modified": 1748573822563 + }, + { + "schema": 1748570265375, + "derHash": "yhpuC8Oxwu0JnULXAwV3V40T9jtLloCmuqJ03xfJ3lg=", + "attachment": { + "hash": "9643424e4746840b622942e1635dea2edc968fbd220600439a4e4dc8373b78aa", + "size": 2324, + "filename": "wadswklSw3tnb3DpULU074-_-FtKHUFCZ0xd9gJXFi0=.pem", + "location": "security-state-staging/intermediates/729c04ba-c928-45ba-981a-a09f22924e82.pem", + "mimetype": "application/x-pem-file" + }, + "id": "92c1611b-5157-4691-990a-8ef6f11682f0", + "last_modified": 1748573822559 + }, + { + "schema": 1748440663301, + "derHash": "pvnJZ+uKqSg6HKZJuHt2RyDp9cOvqBwVBnb0yjbpjPY=", + "attachment": { + "hash": "9b41b88f8fee2ce4f639b931746c791cd080b4aa700bdbacd2d6fd1ab2ac4fb8", + "size": 1987, + "filename": "PEdy1ISwUVLDpnikUbhK1EtItNX5aDwLEkamk5GZosU=.pem", + "location": "security-state-staging/intermediates/96d74948-8351-4159-87af-0ace41ef4dcc.pem", + "mimetype": "application/x-pem-file" + }, + "id": "66349e16-b1c6-460e-beb4-16ce116b7860", + "last_modified": 1748444222326 + }, + { + "schema": 1748440662520, + "derHash": "pfQe341uBF/z/u1nZlDOCDddOp7yEMFpXEeqnf8R1cU=", + "attachment": { + "hash": "222e9d49f569e0fe9c88705c7ddc63854cf1d82a4205cec8b22579ee2ee38850", + "size": 1366, + "filename": "qqgQ1iitO8P7qmUpjGzqlXoRXwuoMdE49aK6o3eCfjM=.pem", + "location": "security-state-staging/intermediates/a05f9fd6-3c39-4e85-999f-21a91fab4c70.pem", + "mimetype": "application/x-pem-file" + }, + "id": "93934e36-b53b-4915-a09a-8f853d5be4ee", + "last_modified": 1748444222323 + }, + { + "schema": 1748397462573, + "derHash": "Hm6++AZ2/SDSWXwfRaXhmN1MTL8zKOUig3GWYAwxkUE=", + "attachment": { + "hash": "c58fbce5f4273c7e28137cabe49866040ae23dcb6ebaaf2bd3080b548034845c", + "size": 1163, + "filename": "G_ANXI8TwJTdF-AFBM8IiIUPEv0Gf6H5LA_b9guG4yE=.pem", + "location": "security-state-staging/intermediates/fc3116bc-d78e-4b83-bdfe-6f7ec4db7cbe.pem", + "mimetype": "application/x-pem-file" + }, + "id": "a00f1efc-dbb1-433b-bc67-4ea0fe7eb12a", + "last_modified": 1748401022526 + }, + { + "schema": 1748397461571, + "derHash": "M2zXa2x/eHiz1KtZsomCy+5AgEqrycK+6Ygns0z/8sA=", + "attachment": { + "hash": "0ece0903a94c7695bd71ecc146b7005079d4d48c57c5af34e0ed81b302555bce", + "size": 2312, + "filename": "K89VOmb1cJAN3TK6bf4ezAbJGC1mLcG2Dh97dnwr3VQ=.pem", + "location": "security-state-staging/intermediates/20b00304-0073-4d4f-8846-698de0111793.pem", + "mimetype": "application/x-pem-file" + }, + "id": "a77ad32b-8cbd-45db-991b-8a1e73155684", + "last_modified": 1748401022518 + }, + { + "schema": 1747922269539, + "derHash": "qINVkjH4OI2vNc5ByBAQQK6P2bZWQ0JHuUda9ZLMCMo=", + "attachment": { + "hash": "b356271a5b4d96bade88931159e8cd88abb806aa5f4f1f62b4732437c154c2fa", + "size": 1983, + "filename": "HiCIj2NSDCNfjmH96nJczhdF8jPvixza52ok27Py-1k=.pem", + "location": "security-state-staging/intermediates/876656dc-1886-4c64-9008-48e7d51fdb8b.pem", + "mimetype": "application/x-pem-file" + }, + "id": "81d92ee7-2ace-485a-89b2-a2a8e641cd8e", + "last_modified": 1747925822578 + }, + { + "schema": 1747879061705, + "derHash": "3c0eiiBjjUqv9yAbsdVkUqzSx1nxaGvcOPc90VcyvcI=", + "attachment": { + "hash": "587b931ba93e2e0c10802aa5908b0ea288f3227ee735431bbfb1595ee9acf6de", + "size": 1979, + "filename": "SwPJlmyGOywAipWl7ZJUBwRIx7IZ0oMQL2psW26OKs0=.pem", + "location": "security-state-staging/intermediates/41f1f748-c641-4b86-82a8-f3dfe4f73adf.pem", + "mimetype": "application/x-pem-file" + }, + "id": "438195b4-5f3a-4ab8-a7ec-a1482ac270fa", + "last_modified": 1747882622660 + }, + { + "schema": 1747879060707, + "derHash": "YXmeNZT2+myfYZAx5KPJ9kP9o4wINwSlB15XCaIbGrc=", + "attachment": { + "hash": "b514991e8ff177cca8d1bc0ee40c8de86ae8e2a92dc8e450accef86e2a86a24f", + "size": 1179, + "filename": "_iaJoX2sgHco2sluxlSWNmpO1d6_fSHGcMNwQGHqu6U=.pem", + "location": "security-state-staging/intermediates/d8c3d220-088c-4f62-a903-dd36bc9c2b96.pem", + "mimetype": "application/x-pem-file" + }, + "id": "4de371bf-966f-4802-ba3b-1285b417cf9e", + "last_modified": 1747882622656 + }, + { + "schema": 1747835896375, + "derHash": "RQ1BRWBcmnribBjp5LlFDyzgR7Z081rPBOY3WiK+K9U=", + "attachment": { + "hash": "b10f41562dfa2f4b8b7c0788b44d8d367d1d5e3a9bafe699dab918f8e6f69136", + "size": 2215, + "filename": "1Kn8GiUGTU1IrrYZZZYshDi0_jPXoCKh1rD1E1qjo0k=.pem", + "location": "security-state-staging/intermediates/fd6b4068-d7b3-41bd-9900-567dd793d623.pem", + "mimetype": "application/x-pem-file" + }, + "id": "7289a108-c77f-4043-a58e-7d702782af34", + "last_modified": 1747839422682 + }, + { + "schema": 1747835892622, + "derHash": "11XX5vEMUxv4YE3JczthabqiEy1rnTXs5b0Acp5QMFY=", + "attachment": { + "hash": "0d068fc0484bb01bf688f7716dabc46d23ba488561e6c4487ecd06c0b5d2485c", + "size": 2211, + "filename": "-rXSHbsFASQY6DuKrieASnEFcVsauO-3Aix6odjdxEA=.pem", + "location": "security-state-staging/intermediates/85b502d4-2396-4168-b903-b7c90547d8d5.pem", + "mimetype": "application/x-pem-file" + }, + "id": "7ee3fcef-c861-436b-84f9-1611d683fc73", + "last_modified": 1747839422679 + }, + { + "schema": 1747835894842, + "derHash": "PWeCx+F8w2tEiGdWfAsvX70PaKcQeVdNprrqRnu9q74=", + "attachment": { + "hash": "0594839f0455d68c598561aa7b29d0441bca70678d3383fa62224c87314fdd3e", + "size": 2215, + "filename": "LMXKloOKuXDdgUlrMLoUw_KiSkykvGjuzdSYddZf0rg=.pem", + "location": "security-state-staging/intermediates/8aafcb0d-7856-4237-852c-005c8b9c265a.pem", + "mimetype": "application/x-pem-file" + }, + "id": "57ba548d-fbfa-455f-baaf-a31b1e70b464", + "last_modified": 1747839422675 + }, + { + "schema": 1747835895578, + "derHash": "kluvsb/Rd+/XbIzIkSzisA4FOlY1Zx7fxpRhCfw090k=", + "attachment": { + "hash": "644304fec073b034485ac81b987fbfa1dcd485aee54e19d582ec7ff5264cd63e", + "size": 2182, + "filename": "h3cgxmb0-sxVjzDjp65esP3SJVqgHOKOevsSlydnL8k=.pem", + "location": "security-state-staging/intermediates/d1b77114-da1d-4891-a53c-9a0113179d6e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8d674656-0719-46a5-9d48-c976079dcc41", + "last_modified": 1747839422672 + }, + { + "schema": 1747835893373, + "derHash": "vFecHOXf/o+tDncyR4858liZys6l0BUogz6eHPF3O5E=", + "attachment": { + "hash": "96239f3b55761385357211d1730c3744c11cdf965eb9f60612d2e75c8daa4875", + "size": 1215, + "filename": "sqcbX06vXKcQ_vgUx_4ndM8WfQre2HU5G1O8p5wLFb4=.pem", + "location": "security-state-staging/intermediates/cdf75966-9116-4b26-b8a8-8818548c0591.pem", + "mimetype": "application/x-pem-file" + }, + "id": "9a00115d-5466-4bc5-abd4-1bbf25ce0fd0", + "last_modified": 1747839422669 + }, + { + "schema": 1747835891056, + "derHash": "OFr0WdehOIRXV3mLLRgkxKvVwnj0IO9xz3eBlHIuL+o=", + "attachment": { + "hash": "bd3a4edcfd6ce5135402618c011aa226389ffef4c4db0030b9c0cb050f35f128", + "size": 2239, + "filename": "7-SXjBYu92LxISxCQbS7V7b5RXjpgolhrfvAlJuxoxY=.pem", + "location": "security-state-staging/intermediates/2962a1ba-95a2-4582-8ee9-589ba08a379c.pem", + "mimetype": "application/x-pem-file" + }, + "id": "e567ab03-359c-43df-8543-b9403fe5c659", + "last_modified": 1747839422666 + }, + { + "schema": 1747835888817, + "derHash": "Bs4PdOQ//+HvKMEG/IDH6ZXK4i3DtsKbBkuIBDl0r8A=", + "attachment": { + "hash": "70b1a6cbf55bf088ed8a87863c03ed479e59eb57508a6c944713dd8cc1a0a352", + "size": 1187, + "filename": "k3MPK1tcaioZPRi3ykYjlW4y6FX8Z1CDEQpNLBs9U2M=.pem", + "location": "security-state-staging/intermediates/5c87447c-b3b8-48ed-b117-da20bf35e13e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "a727a007-95d1-485f-a82f-d35e64aeb9b4", + "last_modified": 1747839422663 + }, + { + "schema": 1747835891785, + "derHash": "6VFvW+6ebwSRF6Sx3IdeV5szzcjoMD33pQBWTWojyAw=", + "attachment": { + "hash": "d0a20e57214c58c560ca507f9c89e34a96c801954ce9ba32d53c6d06eeee9482", + "size": 2211, + "filename": "s-QMGGSiL06Vy4D70QVvsugxEwRXF23KL53xgjeB2jY=.pem", + "location": "security-state-staging/intermediates/1445610b-048b-4124-a31d-d4352f1d7a1e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "4308e038-0495-4b36-93da-44afea196f14", + "last_modified": 1747839422660 + }, + { + "schema": 1747835890313, + "derHash": "dsRRV5wT2dxX6TeZr98yYjWbHd3qZlfESy48bpzwRTU=", + "attachment": { + "hash": "a13f67b610ac8c7b51fcfb737cd3787859f848501d1d7124ba2aa2e337368565", + "size": 2198, + "filename": "VFA2dOxgrQbGJHX6wZ7lHB6gLEWnVqwpI__CCeUzndE=.pem", + "location": "security-state-staging/intermediates/8d03766a-841b-454d-9db9-d47f9154d73c.pem", + "mimetype": "application/x-pem-file" + }, + "id": "118c35b3-b35b-4828-a3de-dff282f62711", + "last_modified": 1747839422657 + }, + { + "schema": 1747835887329, + "derHash": "z21wMi1WX3FjMkq2YEdjYVFZVgL6t6LsK5l6uQdSD4s=", + "attachment": { + "hash": "20508247a0875efb22f8d1638ce01c33a7fdb663bbe0a051b0300fde60bfe24e", + "size": 1167, + "filename": "B-e4p-Pg_8LH8Y_hd7OVQzRyWCNjW67kuw45RxS2H_o=.pem", + "location": "security-state-staging/intermediates/e3adc1c5-34ca-401e-a6c6-511470bc8466.pem", + "mimetype": "application/x-pem-file" + }, + "id": "fd278074-d087-499c-a316-5b9a69cfbda9", + "last_modified": 1747839422653 + }, + { + "schema": 1747835889545, + "derHash": "Zz40WCrZ7sgYbVmweHdIKxhhIWA+xc8eXkDlYKgXKiw=", + "attachment": { + "hash": "6c67e45a730968e372080abad7db64462279ee0a4c0601779e1ca3a3f58fe70a", + "size": 1187, + "filename": "6Tzp0vsyO8XO_WHN__HZkw9P3lEdvs0uF9H9ciPsXE4=.pem", + "location": "security-state-staging/intermediates/ffe34610-718b-4456-8608-08b3b5067342.pem", + "mimetype": "application/x-pem-file" + }, + "id": "9bede75c-ba0a-4c60-a69f-463a60fbb985", + "last_modified": 1747839422650 + }, + { + "schema": 1747835894112, + "derHash": "zWFUH0PdHJ+qxFEPRgbfXetc+nVZx7ZzuvL3NB06DzI=", + "attachment": { + "hash": "2f0ca626e2080b4ed3e4a2768631c3d00028b55ee4a6e3115c8d8c6bf761101b", + "size": 2223, + "filename": "b0KlJioTDY8RTW1PLZeVXBFFotmQ3gDXo-JkTa5emwg=.pem", + "location": "security-state-staging/intermediates/618369fa-08e1-4dc2-a706-eda4ae650822.pem", + "mimetype": "application/x-pem-file" + }, + "id": "ab3c2226-42d9-4d73-8692-c76a1b0a66fd", + "last_modified": 1747839422647 + }, + { + "schema": 1747835888071, + "derHash": "JGGoAkCH0HJ1omEbo0GrNPYuar5Dw/nJACy/sVDWncY=", + "attachment": { + "hash": "0e96defe29abfb5bf6e6de8804ba4f3bd15684521b039c27034ae2c65dad7598", + "size": 2194, + "filename": "bcF76FFWXYd0__-x4lZvHrUbTNLToTJzkVXVdOhTrV4=.pem", + "location": "security-state-staging/intermediates/4aba61c0-5727-4ec8-bb0a-6297d2bd8e92.pem", + "mimetype": "application/x-pem-file" + }, + "id": "f42a0bcf-1cf1-4ade-b05d-3f1eea4e3481", + "last_modified": 1747839422644 + }, + { + "schema": 1747835883538, + "derHash": "uifhsBxxsJf4OWetYrK10lRgkftyMEgTQlqN9XCPkuo=", + "attachment": { + "hash": "d33ddbf01519173fce1257a150ba6ce06ed68d051d66c4d7473ab300f1f713ee", + "size": 2219, + "filename": "_nU_PLZetCy3AsPGGzzfysSVRZZ6eiNlfw6H5cLXKuY=.pem", + "location": "security-state-staging/intermediates/730e227e-bedf-4556-9617-19a941a8db3e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "61b53f53-1f1b-4b95-8b58-e11d10c1e561", + "last_modified": 1747839422641 + }, + { + "schema": 1747835885067, + "derHash": "CNvBqcHAPesscNX4FkVmd2pkGO3HaZzY5cB3p0xqOiE=", + "attachment": { + "hash": "0095d2a558c1c01e283bef229f7e279755e588bcd45a9f78202d96997edbe0ea", + "size": 1219, + "filename": "8k5jmL_0wKwuQVPw9sjfQsu2NL_LI1BIijqQ3z9yOUk=.pem", + "location": "security-state-staging/intermediates/29decd4c-0246-43d9-87ee-bb02391e587d.pem", + "mimetype": "application/x-pem-file" + }, + "id": "59e9a358-c649-4b55-a4f8-221c9fa666c4", + "last_modified": 1747839422637 + }, + { + "schema": 1747835881992, + "derHash": "9X9zOrI7kHxJyWhRCI4gg8I6dU/eE3D1/PnlI6LvLa8=", + "attachment": { + "hash": "8d5874c3a9ab0e498ebdee60c8559dc273b6d76e012dff4d5cafa8e9d2efba90", + "size": 2231, + "filename": "tncgL00bnyFMLAQaRbis4lMuHCeaaU5ozEgMYuw3ITI=.pem", + "location": "security-state-staging/intermediates/39f6e32d-9a0b-4ebe-bf2d-7ee1b51068e9.pem", + "mimetype": "application/x-pem-file" + }, + "id": "97b743be-4c94-4689-9af6-4481a43a0f76", + "last_modified": 1747839422634 + }, + { + "schema": 1747835886588, + "derHash": "qZ4omnIST+zWNdg3L1XswILBMCYd4yrNP1jHi5X+i8c=", + "attachment": { + "hash": "f80ffa7245a4f1bc2f992c22d1efc3f5c8fcb03e0883e9b6267a650532b0b5d7", + "size": 2239, + "filename": "ULGPxixtZ5900eOm-fSoNrRM2NXrcuLtk9S32c6JKag=.pem", + "location": "security-state-staging/intermediates/3e9f5215-450f-4e09-82d4-ecbb475be955.pem", + "mimetype": "application/x-pem-file" + }, + "id": "b19cea23-43fd-4615-8ccd-5617dbfb67e5", + "last_modified": 1747839422631 + }, + { + "schema": 1747835885828, + "derHash": "Q20rl4U6jSv7lS3yaZpiq0ohe30ERfOkV0aGIWP1cbU=", + "attachment": { + "hash": "f765ad06f15a94022d4eee5d9497bec285eb9ad5d7de2f9020806badf30ca285", + "size": 2231, + "filename": "SWemaS4gl-LSkhHda47x4QAZJXcJ4YrPDTcHtcfs2mE=.pem", + "location": "security-state-staging/intermediates/112aef2a-37a0-4f4c-bcdd-9bd2b67bbec9.pem", + "mimetype": "application/x-pem-file" + }, + "id": "b0acc395-0529-4623-958e-6530a1078391", + "last_modified": 1747839422628 + }, + { + "schema": 1747835878948, + "derHash": "HPVn27xe46uf0tudwgCWj0cK2rm6Fs9mHoV+Jc3yhYE=", + "attachment": { + "hash": "18bd47dd8a4a845ba4a7ecd7ac5ed0a02cfe7f9c0a177b2f7fd4bb244cff2bfb", + "size": 1183, + "filename": "edRvoI2blHgW5tJPMn1jKahSfyAL6RZ265NbmlWZ2Zk=.pem", + "location": "security-state-staging/intermediates/a4006b20-fbb0-4c04-abae-d870fe7a95b3.pem", + "mimetype": "application/x-pem-file" + }, + "id": "aec2d89e-b3a5-4276-a4d8-041acabdd5f3", + "last_modified": 1747839422624 + }, + { + "schema": 1747835881229, + "derHash": "R4//exuOfnT/zaPrrimD7gHAwEuFi7Pv2yp9T7IeDPk=", + "attachment": { + "hash": "646bbd908f72f66c5dd844c87322af949544ff0b7726b9d643d000d1e32ba2d3", + "size": 1167, + "filename": "LwihKDIA6ni08ZkIsgDOSyt5oj7u8VjDOl6ycURC1Ck=.pem", + "location": "security-state-staging/intermediates/faa71eac-72ec-48e2-8f28-35a2d3ba0858.pem", + "mimetype": "application/x-pem-file" + }, + "id": "f04ef764-241d-474b-8e15-6e7a9724e02d", + "last_modified": 1747839422594 + }, + { + "schema": 1747835874329, + "derHash": "jrLxfWaJQcOaf8oM7hJ64OuvREYQYxzKPNGeq0bFgko=", + "attachment": { + "hash": "6102de02396ce45ebb41cd1d950fc646e7f7da732ebb17b15d3d980635db422b", + "size": 2219, + "filename": "QFr6669OfM4kr97LmfVeztchj1vVtcGXunvowh9JLmM=.pem", + "location": "security-state-staging/intermediates/433e051e-bc1a-41df-abef-1bf98663d380.pem", + "mimetype": "application/x-pem-file" + }, + "id": "3dd1eeb6-ce1a-418f-97e3-2827c42489ff", + "last_modified": 1747839422591 + }, + { + "schema": 1747835884285, + "derHash": "LzzvXES1NfS6nGVd56aWzFeVNyTgUa8C0GCxu5nTD2Q=", + "attachment": { + "hash": "d6fb17cffd700cbecb4d4fdfe2bbb7939a99ec9e0c6cec872ae9c9bbfce7d414", + "size": 1183, + "filename": "Ae4QyOdC-Z62ZGDa5hi17FulLQzcDztDMvPwyoKsXhE=.pem", + "location": "security-state-staging/intermediates/c3ce59ba-dc1a-40f8-a929-702f8e6b2a61.pem", + "mimetype": "application/x-pem-file" + }, + "id": "81789f27-a003-4378-9e3c-af74af6fab81", + "last_modified": 1747839422588 + }, + { + "schema": 1747835876564, + "derHash": "pR+qd/3iugH05pmmTvPNlsuwS4qr7k8o7ysixu+U37U=", + "attachment": { + "hash": "f65a917ca7e752cfb20b2169bdcc74d9054847b299517cf5fb9582e9cb95f658", + "size": 2215, + "filename": "D3tblQIw1ZtQ3IvnzzLsXakmtWr_cjj9Yo5Knv81XWs=.pem", + "location": "security-state-staging/intermediates/c09a3a84-6424-4344-8f3e-9d90487efcb9.pem", + "mimetype": "application/x-pem-file" + }, + "id": "44d02b0c-42b6-4881-800f-3824c4be4fc0", + "last_modified": 1747839422584 + }, + { + "schema": 1747835873563, + "derHash": "S0QI6SWOZKaU5bdynk0mXgnskWguPvkThK4wGaefVds=", + "attachment": { + "hash": "8b8b75621bd10b6e96f1d9358f560d83670391660dea94e9b6a32106890e15f7", + "size": 1199, + "filename": "cqhRzi8REhuEGzBUyKQprjM_cUQ1eps7ANMNk6xHajM=.pem", + "location": "security-state-staging/intermediates/384f014e-0d1f-4fd0-9c72-7d1ea23a3028.pem", + "mimetype": "application/x-pem-file" + }, + "id": "655d7553-59d0-4d9b-beee-3a42451ca34e", + "last_modified": 1747839422581 + }, + { + "schema": 1747835878203, + "derHash": "oqg0LPLZxCCGZLzqHpetY9sYTY59teCu0ZhaP6nELnE=", + "attachment": { + "hash": "b69593112c50c7fb99e817e6f0c2361afe85d6a442d78d2bc66d042741fde705", + "size": 1207, + "filename": "cCndPU7dq5UVncQMg-TX-zJcqOqWsNfR5TdAa_4j6EM=.pem", + "location": "security-state-staging/intermediates/331aa70d-a589-4e17-a7b9-d92e840e1366.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8c9961fa-aef0-4b8d-acdb-06c2045ee406", + "last_modified": 1747839422578 + }, + { + "schema": 1747835872027, + "derHash": "VdVQTvqNSxwTl4T8x8CV0TIMKq2xE47i5mOUFJk+8JQ=", + "attachment": { + "hash": "4c559cf95afb516ec72313953ef4d1629d4865540bfcccb20e08a174b115dce3", + "size": 1203, + "filename": "8yTz94GDQdsPOLap32XVXO3POPgCfza9BaobxcNj52Y=.pem", + "location": "security-state-staging/intermediates/b1b54ee3-7fd7-4909-ac20-77c4c3f55635.pem", + "mimetype": "application/x-pem-file" + }, + "id": "ab5ac3e4-4a0d-4f15-86a1-04dc94e50691", + "last_modified": 1747839422575 + }, + { + "schema": 1747835882778, + "derHash": "0aMGlLMhBcZnvY4tkzsYZdgDQvMvCP7qAprRbZMQrik=", + "attachment": { + "hash": "6bcea3919344174eafdcd71c78f9e517e40daf5dd877d67aa78aaf0a322b4ef0", + "size": 1211, + "filename": "9ZVUzujiW7Lx1dXQY_UwBdz4qHjv0RAJ2jO_C-zHj-M=.pem", + "location": "security-state-staging/intermediates/71284ac3-136e-4ef6-8ebd-6f4e9930dadb.pem", + "mimetype": "application/x-pem-file" + }, + "id": "adc69f9d-7632-454c-bc36-ef8a16787ef0", + "last_modified": 1747839422572 + }, + { + "schema": 1747835877430, + "derHash": "X5WKIdoe/DSMfD3Ka0lILWFY4Fuqcu6VY+c0lxMX+BM=", + "attachment": { + "hash": "f16d1c5d47069bf3082f15357bdff77c492802c387a6227b3ae2a0453eb7732b", + "size": 2182, + "filename": "YlGJx_cDun4d7C_5KefFYjX3HJbzn3INUk5eWSvVyMo=.pem", + "location": "security-state-staging/intermediates/200c6e19-2dcc-4e4e-9bcb-e31f9800f9a3.pem", + "mimetype": "application/x-pem-file" + }, + "id": "0c481ac4-5fdb-4596-9b13-8e049f9ba434", + "last_modified": 1747839422569 + }, + { + "schema": 1747835871242, + "derHash": "nfYFIHgcMejoGJRwPcYKPrr5iYxNzBdQNm7sA9yUJjY=", + "attachment": { + "hash": "77d8fdfb0cdcce24bf5d1593422576d2e66d4a40902f6e4d09038ab0e968a83d", + "size": 1167, + "filename": "2cATHwaADT3P_xG8bHJ7q0V-q1Xpj_0m0iT6KtlODmo=.pem", + "location": "security-state-staging/intermediates/2538bdea-ae1f-4c2c-833b-c9669ea1f9e5.pem", + "mimetype": "application/x-pem-file" + }, + "id": "51ea0f13-1a00-4e06-abaa-dda3d2551826", + "last_modified": 1747839422566 + }, + { + "schema": 1747835870511, + "derHash": "HkaabbHa+kepbi/K2JlFfvw3K3dSMb3O2nKMMcP6PQI=", + "attachment": { + "hash": "51e410c93447d2d06df5975d3ffcf836dfb77f0a2834d1cdda201cc0b67f33b5", + "size": 1183, + "filename": "bBw8NGREQQ6hbvtW88ZMe4pqG3sWlOyPQDpriakTOxs=.pem", + "location": "security-state-staging/intermediates/00e7983e-27ad-4a1b-8770-dba5cf1de66e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "184aac77-6ab3-46b1-82b4-d1fbdee8d28e", + "last_modified": 1747839422562 + }, + { + "schema": 1747835875068, + "derHash": "J0Lyq22uwlxPCMV3+eteKl2Vau1P1r1lK/L9COiHerM=", + "attachment": { + "hash": "02ababc9535b63061d792763ad4e6eabaef9cdf35faa950acf47349f18211aa1", + "size": 2198, + "filename": "sjMAUCMc1wurViCQYyOtKArjUNSa_XLiIjcj-8PqwGc=.pem", + "location": "security-state-staging/intermediates/ee0000be-642c-4341-a34e-b55bee5afb55.pem", + "mimetype": "application/x-pem-file" + }, + "id": "e11e5770-9a7b-4b0a-8413-7db0e96e007b", + "last_modified": 1747839422559 + }, + { + "schema": 1747835868192, + "derHash": "VO6A22K5jEgAP1sE4j6A6ki3mIdVbbBUcnCjGgXrGYU=", + "attachment": { + "hash": "e78cdac624004013b1685df9116e02c8f1b46fa0cf29a603fbc05a1b41030653", + "size": 2198, + "filename": "9SbODnn6VQoxikn6ZiaqV9PIplRWuqt2PCVxnkBF5Kw=.pem", + "location": "security-state-staging/intermediates/bc211d33-f387-493c-8e54-31b65f906acc.pem", + "mimetype": "application/x-pem-file" + }, + "id": "dda92523-a5e6-4a7a-8520-ebc73ed3d2bb", + "last_modified": 1747839422556 + }, + { + "schema": 1747835875797, + "derHash": "urKUzbc6Bs2SSZT2WAuGBvM9ebWq+bvmbcZ/PabcVyU=", + "attachment": { + "hash": "7e03eaf3cc9847f1db16ecb1d40482da5af2f4d384980f12e4ffc6b074368c64", + "size": 1207, + "filename": "7tz263LsnzyLyaAYJS-kTVlqRj4XgbAIZN-4ZQqSIm4=.pem", + "location": "security-state-staging/intermediates/a48fbcc1-7ee3-4eec-930b-e95bf2c52767.pem", + "mimetype": "application/x-pem-file" + }, + "id": "1cc6ff15-6d16-40bb-bb48-6cae2293be94", + "last_modified": 1747839422553 + }, + { + "schema": 1747835872794, + "derHash": "C5hC1ZEhk2RyaLdahH6HUSZPGvOPoL0Gm6X89FFnhNY=", + "attachment": { + "hash": "082154e516385fe27b465a3053b3072917ca89f1f9e8f84a6325959000254e0d", + "size": 2227, + "filename": "yrPiYFtqysgQZK7oWAFDUEKueoospYmiyJbR5TdBbVc=.pem", + "location": "security-state-staging/intermediates/0f94757b-ec14-473a-ae2d-fcf4342f7242.pem", + "mimetype": "application/x-pem-file" + }, + "id": "eb52ecb1-c36c-4f86-8f32-966131038e17", + "last_modified": 1747839422550 + }, + { + "schema": 1747835867346, + "derHash": "fncR9j62F1dnsdQ1kCEVEXmlNvmAOXVgK8TxMn5HFII=", + "attachment": { + "hash": "07c105abb5da00becb1e8be537ac0388355f8c5d0553f75ab0e11fdb6a87d774", + "size": 2219, + "filename": "y6gShbcLuDC7kE82u9C8h7mXxMBgfLnW1f5uVUDL9NM=.pem", + "location": "security-state-staging/intermediates/de764295-f02b-460f-baa7-5896fa9d8d06.pem", + "mimetype": "application/x-pem-file" + }, + "id": "3d79303d-6d44-47d1-8711-fbf2fd0a573a", + "last_modified": 1747839422546 + }, + { + "schema": 1747835866519, + "derHash": "rVDLc8+R0VZjATEODltbkLnnLEfoE3yuazs6zRI3cz8=", + "attachment": { + "hash": "787f5bb6fa70cf6d5e1c6d0a6fb6e9ff46d2f2ea63e02554ce4843f0034a6ef5", + "size": 1183, + "filename": "VABp5bVLFwCR9KoZSjjgGwcBPkUukdfrh7yp69xiNDU=.pem", + "location": "security-state-staging/intermediates/f6629cbb-6725-4735-8dcc-b83509443fcb.pem", + "mimetype": "application/x-pem-file" + }, + "id": "d0ada8a6-afe1-4a9c-9c38-f42182d70663", + "last_modified": 1747839422543 + }, + { + "schema": 1747835880487, + "derHash": "GTCqsWzcxXiVMQ7d5BBHgj6isKaG9OSZzLep3j9hkhY=", + "attachment": { + "hash": "9a4eb7795f40b4650f31a838856a801eaeca366fb4229494fc748c0c76ac2876", + "size": 1203, + "filename": "sf3Yud_Apg9n2jfGtAeobG54M6QqNKhIAxXXaTc9YJc=.pem", + "location": "security-state-staging/intermediates/1e18a159-cd1e-4968-83c4-2bbba7aa2a5e.pem", + "mimetype": "application/x-pem-file" + }, + "id": "d4013a6e-8dcf-496b-b748-30bd4fcce2ce", + "last_modified": 1747839422540 + }, + { + "schema": 1747835869767, + "derHash": "PNAIWXvv1kYmlccBlL9etC+KQu7kvIjcya2mcVwbDdk=", + "attachment": { + "hash": "97daa92be685cc76eea1f6ad2b7e0c7837136f8d1d88778e2418763e98f13db5", + "size": 1207, + "filename": "St9JmABfeb8GNX1ubd-P6jSy5-MjygSinCt8QDXYLn4=.pem", + "location": "security-state-staging/intermediates/d9c60974-8d15-4aa3-ac87-3611f58fe6e6.pem", + "mimetype": "application/x-pem-file" + }, + "id": "19af27cd-fad8-42c7-8e03-ed7f4d6e0808", + "last_modified": 1747839422537 + }, + { + "schema": 1747835865547, + "derHash": "DJHBqiUjgKyz3hYjOL5AJeBDCkEJ3dzX1nFrLXRsaSA=", + "attachment": { + "hash": "a6a50ada31cec61b4de768b59763e8f9073aa6762865fc227a99feac49e87cf8", + "size": 2198, + "filename": "HeuHqwHLYQNVPB46AXHDYSo2YQFqHIXCXnrf-1UmuVA=.pem", + "location": "security-state-staging/intermediates/bbfda0a9-d2d6-4607-8ce6-17ea0ce03bd3.pem", + "mimetype": "application/x-pem-file" + }, + "id": "5f8083cd-e1eb-4fdf-b35c-967b9c056239", + "last_modified": 1747839422534 + }, + { + "schema": 1747835864796, + "derHash": "6z3iArvbdgl2KID3z1L7yFp+sXzCGAX7th+PBG3LdyE=", + "attachment": { + "hash": "1e3231ffa72ec39745bd806c92e2e51649412c17f587a35571431c6e2a6f4768", + "size": 2247, + "filename": "59vKaWsAXtSXKW0lrJAlY_kDKF5qLmJYv03Ridm0XtM=.pem", + "location": "security-state-staging/intermediates/1fcbe4e5-890e-40af-a772-e7fed0f31ce0.pem", + "mimetype": "application/x-pem-file" + }, + "id": "f0a42af3-94e1-4ba9-b261-407f7c8724d3", + "last_modified": 1747839422530 + }, + { + "schema": 1747835864027, + "derHash": "Wzd2+2petWwCj9ebsdaB+4sfzPwWXYrLH736DCcUwy4=", + "attachment": { + "hash": "629b0e4cba3c9967ac196354fbde6ff37555e307dc3041a5c2edfb4c9ca1408d", + "size": 1207, + "filename": "LPMwfvM0CyZ5pld9QzBwmLEh-sdmm4lJ5sXcUnIgxB8=.pem", + "location": "security-state-staging/intermediates/6678e422-9fd4-4eda-8d44-9c7efd73db58.pem", + "mimetype": "application/x-pem-file" + }, + "id": "16ff0065-c001-4c16-a245-3d6814942823", + "last_modified": 1747839422525 + }, + { + "schema": 1747835879690, + "derHash": "0DEAv9RJwMcbepTLUh7rFX23BOrNXUuhlu7jTSCSFJk=", + "attachment": { + "hash": "5cdb56b7063e55bb748fe765476175d87f11d9ac73245ec1e74907116642684b", + "size": 1219, + "filename": "2rsNDIskoyDza1fitll1XSxjHvtNBsaiF1Le5Bz7HWk=.pem", + "location": "security-state-staging/intermediates/c3a79ff1-0f75-419e-bf54-58d9a51b7696.pem", + "mimetype": "application/x-pem-file" + }, + "id": "77820e75-cd5d-49e1-a1b9-aa1e1d0feb28", + "last_modified": 1747839422510 + }, + { + "schema": 1747835861084, + "derHash": "gIPB7scg4gnVfgi22YZFDz7BtCW6NtjNm5x/yJvM+RI=", + "attachment": { + "hash": "64d0fc7e7714f3c7fb23a0fd484e5ceb78c8cad5e15dcb58d31b47068c9d004a", + "size": 2219, + "filename": "sCw45byidHmhKFWqDSvwt-EOT__cwkXsMCCrZs0T1ho=.pem", + "location": "security-state-staging/intermediates/65a39efb-ff52-4f16-919f-2f293344d090.pem", + "mimetype": "application/x-pem-file" + }, + "id": "24e06016-29d3-4b8b-96d4-430d1080a3ea", + "last_modified": 1747839422507 + }, + { + "schema": 1747835868931, + "derHash": "voqrM3GgLpoT+0+vwZa99ls7IOKHftcPQzCO1gvN38I=", + "attachment": { + "hash": "2362385fe4580914a0d251ad6146766e7754daf611078333a8281124abb57d1e", + "size": 2182, + "filename": "Axyvfr4RKGG1R-FvQFPKk-WxVqklfxAdwJMrkDVs13w=.pem", + "location": "security-state-staging/intermediates/1ab6a224-2148-4504-9a61-005df8bd5064.pem", + "mimetype": "application/x-pem-file" + }, + "id": "8af0f1a4-7ff1-4f81-86b0-1fb3d7893f28", + "last_modified": 1747839422504 + }, + { + "schema": 1747835863157, + "derHash": "66LCWqPDRJBDpDxX+H2tfWiSq/XTjbUpDq6iKMlSQdo=", + "attachment": { + "hash": "eda4fbe2e3c430cec72ed500cc446bf1c05dda4e32232569958e6693be3661e3", + "size": 2219, + "filename": "kgDUrUtyvoveOP2MzJ_EVNVowpVl9_1fQR6gN99Rq7k=.pem", + "location": "security-state-staging/intermediates/f66b3b90-fd2b-46ba-94d8-c3ac72641216.pem", + "mimetype": "application/x-pem-file" + }, + "id": "0c45eef7-5565-4964-aa2a-f823d1bc0a90", + "last_modified": 1747839422500 + }, + { + "schema": 1747835862376, + "derHash": "GVqXBaEzPgew9Uhh7gx6X2lCibc2ysem272iKZkvscU=", + "attachment": { + "hash": "05be525bc504634d0ae5baacf6f28659065383188b8318b4f280117644be8e52", + "size": 2198, + "filename": "pWMUYyTKxJy_M2Dd8-_IfeZxNq6LyiWGKnY06CLjWOQ=.pem", + "location": "security-state-staging/intermediates/9bb7b13c-e9e4-4fbe-8c4f-a0bc66363248.pem", + "mimetype": "application/x-pem-file" + }, + "id": "bacbaf39-309d-4da3-b330-d4d8b1f4549f", + "last_modified": 1747839422496 + }, + { "schema": 1747274261060, "derHash": "Sn8QTwV9UvGrkS1BwSAHRAGeDjilb/J/T6ettOmjq5w=", "attachment": { @@ -4311,42 +5533,6 @@ "last_modified": 1719025023230 }, { - "schema": 1718419986483, - "derHash": "iA+8RP5xqhvkDbEwkXsbrsG9iJsrPXR47aBHKGZ+i0Q=", - "subject": "CN=GoDaddy Secure Certificate Authority - G5,O=GoDaddy Inc.,C=US", - "subjectDN": "MFgxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxHb0RhZGR5IEluYy4xMjAwBgNVBAMTKUdvRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEc1", - "whitelist": false, - "attachment": { - "hash": "b0ab60886b732344120e026a516f1347e7b00beb8696ea917d500d651dfe8aa9", - "size": 1983, - "filename": "xHVm0DkmnVuuM9hP1BXFOradZUCdIX-phuSB2CBWNiU=.pem", - "location": "security-state-staging/intermediates/848610e4-7c79-4502-9bb9-fd3613ddd9ba.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "xHVm0DkmnVuuM9hP1BXFOradZUCdIX+phuSB2CBWNiU=", - "crlite_enrolled": false, - "id": "e91fe4d1-97c5-4d44-b3b9-eeafa19ab96f", - "last_modified": 1718420223252 - }, - { - "schema": 1718419986168, - "derHash": "KeUCmVMQQDaF3WJY+dBIVoeJYwQtR0nG1dl3OjEMMcA=", - "subject": "CN=Starfield Secure Certificate Authority - G5,O=Starfield Technologies\\, Inc.,C=US", - "subjectDN": "MGoxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTQwMgYDVQQDEytTdGFyZmllbGQgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEc1", - "whitelist": false, - "attachment": { - "hash": "1ab16093c00cfeb6b1281bd3570ee31b90544dbe82866716c4e0dc4dd23c0850", - "size": 2040, - "filename": "ZopoHb_DFyTNtOnoOeDm_G07T5xn8PEj_4_f_lJ927A=.pem", - "location": "security-state-staging/intermediates/3bb146a9-b858-4d9e-84a3-4898d6729add.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "ZopoHb/DFyTNtOnoOeDm/G07T5xn8PEj/4/f/lJ927A=", - "crlite_enrolled": false, - "id": "c56b52a8-0671-4599-8084-0cb8e9fc79e8", - "last_modified": 1718420223250 - }, - { "schema": 1717559643220, "derHash": "zBufnkNw+2gUHSihFeqoY/jq23oE4r0js8YvnZ8XwmM=", "subject": "CN=FIRMAPROFESIONAL ICA A01 QWAC 2022,O=Firmaprofesional SA,C=ES", @@ -10071,24 +11257,6 @@ "last_modified": 1681981023385 }, { - "schema": 1680511689525, - "derHash": "9vi81BPJczFm6FhDtGjdNucnFS2aN7FRKcDnZI7O5jk=", - "subject": "CN=SHECA OV Server CA G7,O=UniTrust,C=CN", - "subjectDN": "MEAxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEeMBwGA1UEAwwVU0hFQ0EgT1YgU2VydmVyIENBIEc3", - "whitelist": false, - "attachment": { - "hash": "74f8b64ebb878cae50637037ba71ed194776d06db80a0d99d9d7bb69aa72bd2c", - "size": 2003, - "filename": "Avi_QOpi59uZzfLmkrdh6vjem03c1I8chB3tK_OFL7M=.pem", - "location": "security-state-staging/intermediates/e61bfabc-0234-47bf-902a-9b8818738a56.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "Avi/QOpi59uZzfLmkrdh6vjem03c1I8chB3tK/OFL7M=", - "crlite_enrolled": false, - "id": "b6aa83f8-f475-4f5c-8d7e-dcb466827c22", - "last_modified": 1680512223621 - }, - { "schema": 1679518190665, "derHash": "uLGLq6y2qU6r5pKMa6z09qLYQjXX+GZIa194RHO+cIw=", "subject": "CN=CATrust ECC DV SSL CA,O=Zhejiang Xinya Network Technology Co.\\, Ltd.,C=CN", @@ -13023,24 +14191,6 @@ "last_modified": 1666727873196 }, { - "schema": 1666727452137, - "derHash": "NcC4pXfRHJS6Zl4kLeRdZodSKlMeORu02ZXSYfOCmrc=", - "subject": "CN=certSIGN CA Class 2 G2,OU=certSIGN CA Class 2 G2,O=certSIGN,C=RO", - "subjectDN": "MGIxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEfMB0GA1UECxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMjEfMB0GA1UEAxMWY2VydFNJR04gQ0EgQ2xhc3MgMiBHMg==", - "whitelist": false, - "attachment": { - "hash": "df0ec1a6797109126df83a75e016edf4ec5eae8f6a58946debcf2ddee8cf2524", - "size": 1609, - "filename": "noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm_L3qt4=.pem", - "location": "security-state-staging/intermediates/e03925b7-c8a0-4286-aa06-57ae5c110937.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "noYGcVGJvDlxvfPLFE31WgvXSwkoZGrfCEpsm/L3qt4=", - "crlite_enrolled": false, - "id": "a0571407-53b3-407c-bbd4-0be77d0d2d3e", - "last_modified": 1666727873182 - }, - { "schema": 1666727331515, "derHash": "I5/6htcQM7olWRR4IFfYfoQhrt1ZELeGkotqEkjD40E=", "subject": "CN=CA Disig R2I3 Certification Service,O=Disig a.s.,L=Bratislava,C=SK", @@ -13059,42 +14209,6 @@ "last_modified": 1666727873154 }, { - "schema": 1666727440932, - "derHash": "MAO/iFNCfHuRAj91OYU9mHxY3E4Ru+BH0qkwXAGmFSw=", - "subject": "CN=certSIGN Non-Repudiation CA Class 4 G2,OU=certSIGN Non-Repudiation CA Class 4 G2,O=certSIGN,C=RO", - "subjectDN": "MIGCMQswCQYDVQQGEwJSTzERMA8GA1UEChMIY2VydFNJR04xLzAtBgNVBAsTJmNlcnRTSUdOIE5vbi1SZXB1ZGlhdGlvbiBDQSBDbGFzcyA0IEcyMS8wLQYDVQQDEyZjZXJ0U0lHTiBOb24tUmVwdWRpYXRpb24gQ0EgQ2xhc3MgNCBHMg==", - "whitelist": false, - "attachment": { - "hash": "bb516b77cbf95fd334340bb2777b602490882a3aa757c5d82da5214f34585cda", - "size": 1654, - "filename": "5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=.pem", - "location": "security-state-staging/intermediates/052ceaa4-fdf0-40d7-8242-4aa8fcb41d3e.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "5z5YTIwg2yLkx8NYmJAGw7XsuJfhisYA72CTV71K7Tc=", - "crlite_enrolled": false, - "id": "0d31579b-64f1-4e30-bf5f-c484b7588ede", - "last_modified": 1666727873140 - }, - { - "schema": 1666727396796, - "derHash": "yJwktBWnLJQJZn6I+15ukqONVgnDyZ5V2ZtLHUWJkPk=", - "subject": "CN=certSIGN Qualified CA Class 3 G2,OU=certSIGN Qualified CA Class 3 G2,O=certSIGN,C=RO", - "subjectDN": "MHYxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEpMCcGA1UECxMgY2VydFNJR04gUXVhbGlmaWVkIENBIENsYXNzIDMgRzIxKTAnBgNVBAMTIGNlcnRTSUdOIFF1YWxpZmllZCBDQSBDbGFzcyAzIEcy", - "whitelist": false, - "attachment": { - "hash": "8790a1c05eb34050a0518d6b450074d0a070eab4fdfc196e7812a7cc01b12fc8", - "size": 1634, - "filename": "UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP-qGdwY=.pem", - "location": "security-state-staging/intermediates/dcc54254-18e6-46af-8584-ac6c726a3de5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "UPMbIpu91S39VXXONt79PssKsPf6YLoNySvPP+qGdwY=", - "crlite_enrolled": false, - "id": "17f3db66-1a26-4fc2-b72b-4734ccc0cd35", - "last_modified": 1666727873126 - }, - { "schema": 1666727446208, "derHash": "sJNdwEtOYMDELe9+xXobHY+VjReYjnHMgKjPXmNbpbQ=", "subject": "CN=D-TRUST SSL Class 3 CA 1 EV 2009,O=D-Trust GmbH,C=DE", @@ -14571,24 +15685,6 @@ "last_modified": 1666727871285 }, { - "schema": 1666727365351, - "derHash": "QhZScWOtLKqCXTv0j2GnZh0KvIm1irdrI6HhCZnwdp8=", - "subject": "CN=SHECA EV Server CA G2,O=UniTrust,C=CN", - "subjectDN": "MEAxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEeMBwGA1UEAwwVU0hFQ0EgRVYgU2VydmVyIENBIEcy", - "whitelist": false, - "attachment": { - "hash": "fd9b635f3000431dd27c22b7ea2f2d637beacb75ccb76da39b98eda1c4871977", - "size": 2003, - "filename": "bUpcnmc4JpksMlGlIr1WSxLb8xQLir7IBpzPm_ONH8I=.pem", - "location": "security-state-staging/intermediates/9dc9607c-c2c0-4b03-975f-5821d5fdfb79.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "bUpcnmc4JpksMlGlIr1WSxLb8xQLir7IBpzPm/ONH8I=", - "crlite_enrolled": false, - "id": "04059b9a-9277-47a6-b91c-fd937c69c6cf", - "last_modified": 1666727871267 - }, - { "schema": 1666727435110, "derHash": "ffgAB19SA8AXNk6BGVqayf8AxQfWSnD3N9jT6Ms/CEU=", "subject": "CN=e-Szigno Qualified TLS CA 2018,O=Microsec Ltd.,L=Budapest,C=HU", @@ -15273,24 +16369,6 @@ "last_modified": 1666727870352 }, { - "schema": 1666727454545, - "derHash": "0WuprLdP7kqoCH7kguhuf29fVfrFAlY5cwdT/h5wXjw=", - "subject": "CN=TrustAsia RSA OV TLS CA - S1,O=TrustAsia Technologies\\, Inc.,C=CN", - "subjectDN": "MFsxCzAJBgNVBAYTAkNOMSUwIwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSUwIwYDVQQDDBxUcnVzdEFzaWEgUlNBIE9WIFRMUyBDQSAtIFMx", - "whitelist": false, - "attachment": { - "hash": "3478555efe90114245336918b07ce2fd5642c151b04ae871aa5b719513eff08c", - "size": 2044, - "filename": "3sdsoSIuRvtjF8OsOc4xIdevOWOclELQuaEQ85MqCYY=.pem", - "location": "security-state-staging/intermediates/a04c15b5-f9b9-47f9-91bc-106fd7754d29.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "3sdsoSIuRvtjF8OsOc4xIdevOWOclELQuaEQ85MqCYY=", - "crlite_enrolled": false, - "id": "4a8de048-65c5-4477-b64e-79f9f290218e", - "last_modified": 1666727870336 - }, - { "schema": 1666727415484, "derHash": "wY1Tv5hk3Qm8vKz9Zy4lZtTIH2iJ42313UJcBCEdB2M=", "subject": "CN=Hongkong Post e-Cert EV SSL CA 3 - 17,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK", @@ -15795,24 +16873,6 @@ "last_modified": 1666727869652 }, { - "schema": 1666727430858, - "derHash": "OH1Ja5IgLUxEPNlP9C2hffLx5o4kTC+7p+KU290RNXs=", - "subject": "CN=WISeKey CertifyID Advanced GC CA 1,O=WISeKey,C=CH", - "subjectDN": "MEwxCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSswKQYDVQQDEyJXSVNlS2V5IENlcnRpZnlJRCBBZHZhbmNlZCBHQyBDQSAx", - "whitelist": false, - "attachment": { - "hash": "3847cc74ceb46d2e07d37b69b668ff50587428a43ef992473d4a3e433bcb1972", - "size": 1293, - "filename": "Y3IJxxxojxFKeXVhVUyyPE4P-7QrAbKt0viCWXpb1G8=.pem", - "location": "security-state-staging/intermediates/233bd648-66bc-440b-8b31-293196be1b49.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "Y3IJxxxojxFKeXVhVUyyPE4P+7QrAbKt0viCWXpb1G8=", - "crlite_enrolled": false, - "id": "5905f153-1bda-44df-8205-013b8756834a", - "last_modified": 1666727869638 - }, - { "schema": 1666727396472, "derHash": "ubZIktCtRxksE/FdrM9bogQbs58wQagPqq1vxsUqilA=", "subject": "CN=ZwTrus EV SSL CA,O=北京中万网络科技有限责任公司,C=CN", @@ -20061,24 +21121,6 @@ "last_modified": 1664891823141 }, { - "schema": 1664585320982, - "derHash": "UNPXH8DNfjatrjIiH+++jMKbJna6MmwJuPobJNvnVRQ=", - "subject": "CN=Plex Devices High Assurance CA2,O=Plex\\, Inc.,C=US", - "subjectDN": "MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ey", - "whitelist": false, - "attachment": { - "hash": "b9ec4c02a550f9a56f28784144351318a6a3cb42352706073353594b30831f29", - "size": 1699, - "filename": "ymL44ll2Q9SIPAQZkomkZ5uFqCHuOYoXpsbrXWfyZkg=.pem", - "location": "security-state-staging/intermediates/b1dae52e-fa30-4d0b-bfd3-410952ab066e.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "ymL44ll2Q9SIPAQZkomkZ5uFqCHuOYoXpsbrXWfyZkg=", - "crlite_enrolled": false, - "id": "5a85e7b2-ce77-42e7-acfb-9ef72026acf9", - "last_modified": 1664585823063 - }, - { "schema": 1664326321968, "derHash": "vRk8R15OZ5OL7zQSK5i1WKKILn7ZQ2mmywETIO8VYjw=", "subject": "CN=AlwaysOnSSL TLS ECC CA G1,OU=Domain Validated SSL,O=CertCenter AG,C=DE", @@ -20979,24 +22021,6 @@ "last_modified": 1664326624918 }, { - "schema": 1664326191302, - "derHash": "+2BghIRAqkWU/oEJdB76tAxWcysmxnw21tyUW7L+E88=", - "subject": "CN=Plex Devices High Assurance CA3,O=Plex\\, Inc.,C=US", - "subjectDN": "MEwxCzAJBgNVBAYTAlVTMRMwEQYDVQQKEwpQbGV4LCBJbmMuMSgwJgYDVQQDEx9QbGV4IERldmljZXMgSGlnaCBBc3N1cmFuY2UgQ0Ez", - "whitelist": false, - "attachment": { - "hash": "cd28540e93a3e7eada94060afc6916529a05233243a206dfe1a370ff5b0563f8", - "size": 1817, - "filename": "7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu-SVeew9nqo=.pem", - "location": "security-state-staging/intermediates/43a54629-f407-4965-9395-d247c9d23517.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "7vFogPWQjRRrBULu9CTSZG05Zp5wI5psu+SVeew9nqo=", - "crlite_enrolled": false, - "id": "7d8027f5-c921-4f5d-bbbf-de30773d90a2", - "last_modified": 1664326624872 - }, - { "schema": 1664326189590, "derHash": "13N+Xy0//KQpkC6fOIz9bFlZzTWg/BA87i9+k9HGalI=", "subject": "CN=DigiCert Assured ID TLS CA,OU=www.digicert.com,O=DigiCert Inc,C=US", @@ -21267,24 +22291,6 @@ "last_modified": 1664326624578 }, { - "schema": 1664326158618, - "derHash": "TFbKejwQ61h2Xg/8+ANcV8nzvbAUhi9nZ1bPeJGT8Q4=", - "subject": "CN=Sonavation IoT CA,OU=sonavation.com,O=Sonavation\\, Inc.,C=US", - "subjectDN": "MF0xCzAJBgNVBAYTAlVTMRkwFwYDVQQKExBTb25hdmF0aW9uLCBJbmMuMRcwFQYDVQQLEw5zb25hdmF0aW9uLmNvbTEaMBgGA1UEAxMRU29uYXZhdGlvbiBJb1QgQ0E=", - "whitelist": false, - "attachment": { - "hash": "9435c16f54620272aec7d7abc3dd2a3ba91eb56527a23274814bcb29a44b2632", - "size": 1695, - "filename": "vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=.pem", - "location": "security-state-staging/intermediates/d3c84332-b918-41de-8190-89370390db4d.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "vVP8FQS5b7BRuCncy0juht2sjHUUGqg1uuyGap7EMKI=", - "crlite_enrolled": false, - "id": "8d518eb7-5f35-46c4-b927-8b7aac8c0ff9", - "last_modified": 1664326624555 - }, - { "schema": 1664326155179, "derHash": "w2g/fZF1Qhna2k6Nww5LGL05KLU9Ork9BzhLxYcc41U=", "subject": "CN=Cybertrust Japan Secure Server ECC CA,O=Cybertrust Japan Co.\\, Ltd.,C=JP", @@ -24291,24 +25297,6 @@ "last_modified": 1656896223181 }, { - "schema": 1656701331513, - "derHash": "WoTJQFTTQNZQopmF75e7OWNS4hWu1sCzPKf/3TvV0qI=", - "subject": "CN=SwissSign RSA SMIME Root CA 2022 - 1,O=SwissSign AG,C=CH", - "subjectDN": "MFMxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBSU0EgU01JTUUgUm9vdCBDQSAyMDIyIC0gMQ==", - "whitelist": false, - "attachment": { - "hash": "f5c50b1eb05ddcd12e58d62bf14a7146c9ee6abac9c4e0a2212437d6fd8e8953", - "size": 2117, - "filename": "lscl7HdjRMUHcclcvnvcvSKZWwmFafcnrjiw69_1v34=.pem", - "location": "security-state-staging/intermediates/2eb2a167-41f4-4bde-bdaa-fdcf93c34129.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "lscl7HdjRMUHcclcvnvcvSKZWwmFafcnrjiw69/1v34=", - "crlite_enrolled": false, - "id": "4cfb7454-e1fb-470f-9660-70576be6323f", - "last_modified": 1656701823304 - }, - { "schema": 1656701333450, "derHash": "GTFE9DHg/dt0BxfU3pJqVxEziEtDYNMOJykTy+ZgzkE=", "subject": "CN=SwissSign RSA TLS Root CA 2022 - 1,O=SwissSign AG,C=CH", @@ -24327,24 +25315,6 @@ "last_modified": 1656701823286 }, { - "schema": 1656701328514, - "derHash": "mhLDkr/leJGgxUUwnU2f1WfkgMthPWNCJ4sZXHmnkx8=", - "subject": "CN=SwissSign RSA SMIME Root CA 2022 - 1,O=SwissSign AG,C=CH", - "subjectDN": "MFMxCzAJBgNVBAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxLTArBgNVBAMTJFN3aXNzU2lnbiBSU0EgU01JTUUgUm9vdCBDQSAyMDIyIC0gMQ==", - "whitelist": false, - "attachment": { - "hash": "68921ff34a6b13fef5893df8dcd7193fbf6c07d6756c8e72fc46604ce69dbcfa", - "size": 1999, - "filename": "lscl7HdjRMUHcclcvnvcvSKZWwmFafcnrjiw69_1v34=.pem", - "location": "security-state-staging/intermediates/219de1a1-ca20-4079-93af-cd73fe778a24.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "lscl7HdjRMUHcclcvnvcvSKZWwmFafcnrjiw69/1v34=", - "crlite_enrolled": false, - "id": "a644bff9-3b45-42cb-a1e9-a33b7fc61bc4", - "last_modified": 1656701823267 - }, - { "schema": 1656679991246, "derHash": "KItKn2BbCbmZshWFCCXIH5tTfbryNmSsqYv2upjtw3k=", "subject": "CN=SwissSign RSA TLS Root CA 2022 - 1,O=SwissSign AG,C=CH", @@ -26199,24 +27169,6 @@ "last_modified": 1645578266465 }, { - "schema": 1645577656054, - "derHash": "B0rdfx5z6xEOyOK3ipLFHPWkURNbb33vwBnunXS/pNY=", - "subject": "CN=TrustAsia RSA DV TLS CA - S1,O=TrustAsia Technologies\\, Inc.,C=CN", - "subjectDN": "MFsxCzAJBgNVBAYTAkNOMSUwIwYDVQQKDBxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSUwIwYDVQQDDBxUcnVzdEFzaWEgUlNBIERWIFRMUyBDQSAtIFMx", - "whitelist": false, - "attachment": { - "hash": "e3e6be32df35be180b103881b25f39b0efcaad3bc88d3ff492084a8e2c77b85a", - "size": 2044, - "filename": "UnhoHanj6MYk29pqvTEkZnAW1vQGrFENyVWfwU-5cE8=.pem", - "location": "security-state-staging/intermediates/edf7a0ab-f105-4045-ad80-91b14cc59cd4.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "UnhoHanj6MYk29pqvTEkZnAW1vQGrFENyVWfwU+5cE8=", - "crlite_enrolled": false, - "id": "41e38596-47f9-47d1-8818-44bcca75c54a", - "last_modified": 1645578266294 - }, - { "schema": 1645577657404, "derHash": "Ho8FHyIm+ZLRe3zxfw3s4Kp2mQLp/o0R81sZsYpaFPE=", "subject": "CN=National Technical University of Athens TLS RSA SubCA R1,O=Hellenic Academic and Research Institutions CA,C=GR", @@ -26829,24 +27781,6 @@ "last_modified": 1610999846060 }, { - "schema": 1605123695624, - "derHash": "yTGg+FoFKQEjSlT9Rg1BfxqLY8OMSBH3m5jzrhwv6fs=", - "subject": "CN=SECOM Passport for Member PUB CA5,OU=SECOM Passport for Member 2.0 PUB,O=SECOM Trust Systems CO.\\,LTD.,C=JP", - "subjectDN": "MIGMMQswCQYDVQQGEwJKUDElMCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMhU0VDT00gUGFzc3BvcnQgZm9yIE1lbWJlciAyLjAgUFVCMSowKAYDVQQDEyFTRUNPTSBQYXNzcG9ydCBmb3IgTWVtYmVyIFBVQiBDQTU=", - "whitelist": false, - "attachment": { - "hash": "c65635be2bd0d20a2b0fd6d70bd227a546782c46ab1e3c6b2394239fc8cfd6cb", - "size": 1695, - "filename": "v3h5R_3OzMC-NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=.pem", - "location": "security-state-staging/intermediates/de481d0f-d78a-4134-95c5-8978b12cffcd.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "v3h5R/3OzMC+NBXKj05v4LQG5laFzE9fB4KsGpwAMtk=", - "crlite_enrolled": false, - "id": "8cc1c1a9-82f5-425d-bc26-7033cc45e093", - "last_modified": 1605189460438 - }, - { "schema": 1601473889131, "derHash": "fOuUWEQnVvQKSFww8rrwAQfB6e6F2wL6APQbpYRDZOU=", "subject": "CN=ISSAuth ECC DV CA,O=INTEGRITY Security Services LLC,C=US", @@ -27153,24 +28087,6 @@ "last_modified": 1591199861864 }, { - "schema": 1591167103436, - "derHash": "rv/kM17lZCLpJ/Rela4UK56zWXmnQAVprpvepsqrwdw=", - "subject": "CN=SHECA Global G3 SSL,O=UniTrust,ST=Shanghai,C=CN", - "subjectDN": "MFExCzAJBgNVBAYTAkNOMREwDwYDVQQIDAhTaGFuZ2hhaTERMA8GA1UECgwIVW5pVHJ1c3QxHDAaBgNVBAMME1NIRUNBIEdsb2JhbCBHMyBTU0w=", - "whitelist": false, - "attachment": { - "hash": "966814ad4c7925d39057eb115ca90947f532fe888d00abdd9884f26cad189f7d", - "size": 1999, - "filename": "-3DYv-zWynH_VKDDzSsG9R5GfeXFt--F4B8P0tAoRsU=.pem", - "location": "security-state-staging/intermediates/72f5db49-9653-406b-b129-7db8f562a09a.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "+3DYv+zWynH/VKDDzSsG9R5GfeXFt++F4B8P0tAoRsU=", - "crlite_enrolled": false, - "id": "9a5f7622-15ab-419e-9203-7b79dd0f844e", - "last_modified": 1591199861813 - }, - { "schema": 1591167133769, "derHash": "wKsH2QcaTMHTRAkXj4vKBYMQqLER3c+mVWWHYCJvUPk=", "subject": "CN=WoSign EV SSL CA,O=WoSign CA Limited,C=CN", @@ -28575,24 +29491,6 @@ "last_modified": 1562025090175 }, { - "schema": 1562025022401, - "derHash": "Jb/bHF/izOBR7G378rsk54yS+WmxuzeGfa7fk9Gnrn4=", - "subject": "CN=SHECA Extended Validation SSL CA,O=UniTrust,C=CN", - "subjectDN": "MEsxCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEpMCcGA1UEAwwgU0hFQ0EgRXh0ZW5kZWQgVmFsaWRhdGlvbiBTU0wgQ0E=", - "whitelist": false, - "attachment": { - "hash": "42b647c52ed57012729814fa390a3a85ee801287cea6820f002c3e2d0f8cb467", - "size": 1959, - "filename": "J1sjCSbhps4X1wNpt4UhFDB8y_McQPnMa3S-sE4q0u0=.pem", - "location": "security-state-staging/intermediates/270af4bc-d20d-421d-baa5-121348e70203.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "J1sjCSbhps4X1wNpt4UhFDB8y/McQPnMa3S+sE4q0u0=", - "crlite_enrolled": false, - "id": "d83176fc-a4d2-461d-84e7-446080d64684", - "last_modified": 1562025023133 - }, - { "schema": 1562025020924, "derHash": "qfjQ7GD3LYrIefbjzDgOUACYvACAwHrFOfrmglQ//AI=", "subject": "CN=UbiquiTLS™ DV ECC Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB", @@ -29079,5 +29977,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1747580222718 + "timestamp": 1749567422319 } diff -Nru firefox-esr-128.11.0esr/services/settings/dumps/security-state/onecrl.json firefox-esr-128.12.0esr/services/settings/dumps/security-state/onecrl.json --- firefox-esr-128.11.0esr/services/settings/dumps/security-state/onecrl.json 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/services/settings/dumps/security-state/onecrl.json 2025-06-17 01:36:42.000000000 +0000 @@ -1,6 +1,229 @@ { "data": [ { + "schema": 1747778629161, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "why": "Manually added because not included in batch", + "name": "SZAFIR Trusted CA3" + }, + "enabled": true, + "issuerName": "MFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIgUk9PVCBDQTI=", + "serialNumber": "fk7i+G0qEYDpyR6iD9kRL2PcVFI=", + "id": "5925e258-97bb-454a-8fee-68c4dc1bd8fb", + "last_modified": 1747787134572 + }, + { + "schema": 1746810064672, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MF0xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTI=", + "serialNumber": "IrmxUyPlrv3N", + "id": "05416135-bf3a-4416-9239-262362e11738", + "last_modified": 1747787134567 + }, + { + "schema": 1746810064732, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==", + "serialNumber": "AgO8U1lrNMcY9QFQZg==", + "id": "270ae8bd-6c80-4481-a644-03ee519409c7", + "last_modified": 1747787134562 + }, + { + "schema": 1746810064566, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MFAxJDAiBgNVBAsTG0dsb2JhbFNpZ24gRUNDIFJvb3QgQ0EgLSBSNDETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbg==", + "serialNumber": "f1fzxMo59L7GZJ8m536C1A==", + "id": "92ae4984-3847-4d1c-9d16-489d7aa76f96", + "last_modified": 1747787134557 + }, + { + "schema": 1746810064505, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MF0xCzAJBgNVBAYTAkpQMSUwIwYDVQQKExxTRUNPTSBUcnVzdCBTeXN0ZW1zIENPLixMVEQuMScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTI=", + "serialNumber": "IrmxUmQ7WLAR", + "id": "59f1b815-16ab-4f34-8a85-5260af8dcbc0", + "last_modified": 1747787134552 + }, + { + "schema": 1746810064339, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MDQxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25h", + "serialNumber": "aTMre5mroaX/m972+sY3e6uQc20=", + "id": "c91e9ade-516a-46ad-b887-471f01c0810c", + "last_modified": 1747787134547 + }, + { + "schema": 1746810064399, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==", + "serialNumber": "AgCOsgIzNmWLZM3bmw==", + "id": "13c5edbe-dcd6-4153-9b4f-0cb1c76f917a", + "last_modified": 1747787134541 + }, + { + "schema": 1746810064223, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMw==", + "serialNumber": "f1fz0urxwMumkbADyfvQpA==", + "id": "e5fc6acd-eeec-4530-b2b6-b8d37a206f08", + "last_modified": 1747787134537 + }, + { + "schema": 1746810063807, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MFoxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAXBgNVBAMMEENlcnRpZ25hIFJvb3QgQ0E=", + "serialNumber": "IP4v/H5h29FfVNAu111YOTgCh/A=", + "id": "770bf3c6-1201-4f5b-9a1e-31ff65204ce7", + "last_modified": 1747787134532 + }, + { + "schema": 1746810064160, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMQ==", + "serialNumber": "AgO8UKMnU/CRgCLt8Q==", + "id": "b50c30e3-b045-4d78-b902-b407847def3c", + "last_modified": 1747787134528 + }, + { + "schema": 1746810063973, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSNA==", + "serialNumber": "AhZoJeFwBEBhJJH1QA==", + "id": "139ffa93-f55a-4401-a55c-c84afb7f01a1", + "last_modified": 1747787134525 + }, + { + "schema": 1746437704352, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSNA==", + "serialNumber": "AgCOsljntZQMH/kARA==", + "id": "2e51255e-69ef-4461-aa15-11d410d09dad", + "last_modified": 1747787134522 + }, + { + "schema": 1746810064037, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MEcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKExlHb29nbGUgVHJ1c3QgU2VydmljZXMgTExDMRQwEgYDVQQDEwtHVFMgUm9vdCBSMg==", + "serialNumber": "f1fzi3cRYlYfs8GNYeXYuQ==", + "id": "594b3d8c-4bab-4231-9c9c-ee6f6dbba83e", + "last_modified": 1747787134519 + }, + { + "schema": 1746810063910, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MDQxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25h", + "serialNumber": "Z2gWCZU9nGGtawVklObmyntKVPw=", + "id": "06480074-57b4-421c-bd6f-bd59614fff08", + "last_modified": 1747787134515 + }, + { + "schema": 1746810063637, + "details": { + "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1965541", + "who": "", + "why": "", + "name": "", + "created": "" + }, + "enabled": false, + "issuerName": "MFoxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAXBgNVBAMMEENlcnRpZ25hIFJvb3QgQ0E=", + "serialNumber": "VWcr5jfewI8oLAaWShhDmOmSLsU=", + "id": "b8043bef-5b50-48d6-8f99-99c0d54d0885", + "last_modified": 1747787134511 + }, + { "schema": 1734800449856, "details": { "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1938770", @@ -24961,5 +25184,5 @@ "last_modified": 1480349158647 } ], - "timestamp": 1736374736460 + "timestamp": 1747787134572 } diff -Nru firefox-esr-128.11.0esr/sourcestamp.txt firefox-esr-128.12.0esr/sourcestamp.txt --- firefox-esr-128.11.0esr/sourcestamp.txt 2025-05-19 15:00:49.000000000 +0000 +++ firefox-esr-128.12.0esr/sourcestamp.txt 2025-06-17 01:37:13.000000000 +0000 @@ -1,2 +1,2 @@ -20250519114620 -https://hg.mozilla.org/releases/mozilla-esr128/rev/c6fae8e73635b58fac8a4536e34f63c8518a350d +20250616190003 +https://hg.mozilla.org/releases/mozilla-esr128/rev/f3f836bf735d55fcfdf97dd3788f7952419dea1f diff -Nru firefox-esr-128.11.0esr/taskcluster/docker/periodic-updates/scripts/getHSTSPreloadList.js firefox-esr-128.12.0esr/taskcluster/docker/periodic-updates/scripts/getHSTSPreloadList.js --- firefox-esr-128.11.0esr/taskcluster/docker/periodic-updates/scripts/getHSTSPreloadList.js 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/taskcluster/docker/periodic-updates/scripts/getHSTSPreloadList.js 2025-06-17 01:36:42.000000000 +0000 @@ -478,6 +478,7 @@ "network.stricttransportsecurity.preloadlist", false ); + Services.prefs.setBoolPref("network.http.http3.enable", false); // download and parse the raw json file from the Chromium source let rawdata = download(); // get just the hosts with mode: "force-https" diff -Nru firefox-esr-128.11.0esr/taskcluster/gecko_taskgraph/transforms/signing.py firefox-esr-128.12.0esr/taskcluster/gecko_taskgraph/transforms/signing.py --- firefox-esr-128.11.0esr/taskcluster/gecko_taskgraph/transforms/signing.py 2025-05-19 14:57:59.000000000 +0000 +++ firefox-esr-128.12.0esr/taskcluster/gecko_taskgraph/transforms/signing.py 2025-06-17 01:36:43.000000000 +0000 @@ -208,6 +208,7 @@ build_platform, attributes.get("build_type"), ) + task["retries"] = 0 elif "macosx" in build_platform: # iscript overrides task["worker"]["mac-behavior"] = "mac_sign_and_pkg" diff -Nru firefox-esr-128.11.0esr/taskcluster/gecko_taskgraph/transforms/task.py firefox-esr-128.12.0esr/taskcluster/gecko_taskgraph/transforms/task.py --- firefox-esr-128.11.0esr/taskcluster/gecko_taskgraph/transforms/task.py 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/taskcluster/gecko_taskgraph/transforms/task.py 2025-06-17 01:36:44.000000000 +0000 @@ -198,6 +198,8 @@ }, # Override the default priority for the project Optional("priority"): str, + # Override the default 5 retries + Optional("retries"): int, } ) @@ -2243,6 +2245,8 @@ if task.get("requires", None): task_def["requires"] = task["requires"] + if task.get("retries") is not None: + task_def["retries"] = task["retries"] if task_th: # link back to treeherder in description diff -Nru firefox-esr-128.11.0esr/taskcluster/kinds/release-bouncer-aliases/kind.yml firefox-esr-128.12.0esr/taskcluster/kinds/release-bouncer-aliases/kind.yml --- firefox-esr-128.11.0esr/taskcluster/kinds/release-bouncer-aliases/kind.yml 2025-05-19 14:58:00.000000000 +0000 +++ firefox-esr-128.12.0esr/taskcluster/kinds/release-bouncer-aliases/kind.yml 2025-06-17 01:36:42.000000000 +0000 @@ -73,6 +73,7 @@ firefox-esr-msix-latest-ssl: msix firefox-esr-pkg-latest-ssl: pkg firefox-esr-langpack-latest-ssl: langpack + esr140: # ... these point to the newer branch firefox-esr-next-latest-ssl: installer-ssl firefox-esr-next-latest: installer diff -Nru firefox-esr-128.11.0esr/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs firefox-esr-128.12.0esr/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs --- firefox-esr-128.11.0esr/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs 2025-05-19 14:58:07.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs 2025-06-17 01:36:51.000000000 +0000 @@ -78,6 +78,7 @@ Services.obs.addObserver(this, "final-ui-startup", true); Services.obs.addObserver(this, "sessionstore-windows-restored", true); Services.obs.addObserver(this, "EnterprisePolicies:Restart", true); + Services.obs.addObserver(this, "distribution-customization-complete", true); } EnterprisePoliciesManager.prototype = { @@ -112,20 +113,17 @@ if (provider.failed) { this.status = Ci.nsIEnterprisePolicies.FAILED; - this._reportEnterpriseTelemetry(); return; } if (!provider.hasPolicies) { this.status = Ci.nsIEnterprisePolicies.INACTIVE; - this._reportEnterpriseTelemetry(); return; } this.status = Ci.nsIEnterprisePolicies.ACTIVE; this._parsedPolicies = {}; this._activatePolicies(provider.policies); - this._reportEnterpriseTelemetry(); Services.prefs.setBoolPref(PREF_POLICIES_APPLIED, true); }, @@ -276,6 +274,7 @@ await notifyTopicOnIdle("profile-after-change"); await notifyTopicOnIdle("final-ui-startup"); await notifyTopicOnIdle("sessionstore-windows-restored"); + await notifyTopicOnIdle("distribution-customization-complete"); }, // nsIObserver implementation @@ -299,16 +298,22 @@ case "sessionstore-windows-restored": this._runPoliciesCallbacks("onAllWindowsRestored"); + break; + + case "EnterprisePolicies:Restart": + this._restart().then(null, console.error); + break; - // After the last set of policy callbacks ran, notify the test observer. + case "distribution-customization-complete": + this._reportEnterpriseTelemetry(); + + // Notify the test observer when the last message + // is received. Services.obs.notifyObservers( null, "EnterprisePolicies:AllPoliciesApplied" ); - break; - case "EnterprisePolicies:Restart": - this._restart().then(null, console.error); break; } }, diff -Nru firefox-esr-128.11.0esr/toolkit/components/extensions/Extension.sys.mjs firefox-esr-128.12.0esr/toolkit/components/extensions/Extension.sys.mjs --- firefox-esr-128.11.0esr/toolkit/components/extensions/Extension.sys.mjs 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/extensions/Extension.sys.mjs 2025-06-17 01:36:50.000000000 +0000 @@ -380,6 +380,8 @@ const UUID_MAP_PREF = "extensions.webextensions.uuids"; const LEAVE_STORAGE_PREF = "extensions.webextensions.keepStorageOnUninstall"; const LEAVE_UUID_PREF = "extensions.webextensions.keepUuidOnUninstall"; +const WEBCOMPAT_ADDON_ID = "webcompat@mozilla.org"; +const WEBCOMPAT_UUID = "9a310967-e580-48bf-b3e8-4eafebbc122d"; const COMMENT_REGEXP = new RegExp( String.raw` @@ -420,6 +422,23 @@ get(id, create = true) { let map = this._read(); + // In general, the UUID should not change once assigned because it may be + // stored elsewhere within the profile directory, when the extension URL is + // exposed (e.g. history, bookmarks, site permissions, web or extension + // APIs that associate data with the extension principal or origin). + // The webcompat add-on does not rely on the persisted uuid, so we can + // simply migrate the uuid below, see bug 1717672. + if (id === WEBCOMPAT_ADDON_ID) { + if (!create && !(id in map)) { + return null; + } + if (map[id] !== WEBCOMPAT_UUID) { + map[id] = WEBCOMPAT_UUID; + this._write(map); + } + return WEBCOMPAT_UUID; + } + if (id in map) { return map[id]; } diff -Nru firefox-esr-128.11.0esr/toolkit/components/nimbus/FeatureManifest.yaml firefox-esr-128.12.0esr/toolkit/components/nimbus/FeatureManifest.yaml --- firefox-esr-128.11.0esr/toolkit/components/nimbus/FeatureManifest.yaml 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/nimbus/FeatureManifest.yaml 2025-06-17 01:36:51.000000000 +0000 @@ -1022,6 +1022,12 @@ owner: sdowne@getpocket.com hasExposure: false variables: + enabled: + type: boolean + setPref: + branch: user + pref: extensions.pocket.enabled + description: Enabled save to Pocket feature. emailButton: type: boolean setPref: diff -Nru firefox-esr-128.11.0esr/toolkit/components/reputationservice/ApplicationReputation.cpp firefox-esr-128.12.0esr/toolkit/components/reputationservice/ApplicationReputation.cpp --- firefox-esr-128.11.0esr/toolkit/components/reputationservice/ApplicationReputation.cpp 2025-05-19 14:58:07.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/reputationservice/ApplicationReputation.cpp 2025-06-17 01:36:51.000000000 +0000 @@ -152,6 +152,7 @@ ".air", ".atloc", ".ftploc", + ".terminal", // clang-format on }; diff -Nru firefox-esr-128.11.0esr/toolkit/components/reputationservice/ApplicationReputation.h firefox-esr-128.12.0esr/toolkit/components/reputationservice/ApplicationReputation.h --- firefox-esr-128.11.0esr/toolkit/components/reputationservice/ApplicationReputation.h 2025-05-19 14:58:07.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/reputationservice/ApplicationReputation.h 2025-06-17 01:36:51.000000000 +0000 @@ -25,7 +25,7 @@ NS_DECL_NSIAPPLICATIONREPUTATIONSERVICE public: - static const char* const kNonBinaryExecutables[5]; + static const char* const kNonBinaryExecutables[6]; #ifdef XP_WIN static const char* const kBinaryFileExtensions[184]; #else diff -Nru firefox-esr-128.11.0esr/toolkit/components/reputationservice/test/gtest/TestExecutableLists.cpp firefox-esr-128.12.0esr/toolkit/components/reputationservice/test/gtest/TestExecutableLists.cpp --- firefox-esr-128.11.0esr/toolkit/components/reputationservice/test/gtest/TestExecutableLists.cpp 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/components/reputationservice/test/gtest/TestExecutableLists.cpp 2025-06-17 01:36:50.000000000 +0000 @@ -241,6 +241,7 @@ ".tbz", // Linux archive (bzip2) ".tbz2", // Linux archive (bzip2) ".tcsh", // Linux shell + ".terminal", // Apple Terminal configuration files ".tgz", // Linux archive (gzip) ".torrent", // Bittorrent ".tpz", // Linux archive (gzip) diff -Nru firefox-esr-128.11.0esr/toolkit/moz.configure firefox-esr-128.12.0esr/toolkit/moz.configure --- firefox-esr-128.11.0esr/toolkit/moz.configure 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/toolkit/moz.configure 2025-06-17 01:36:50.000000000 +0000 @@ -2646,9 +2646,9 @@ ) -@depends(dependable(wasm_sandboxing_libraries), build_project) -def default_wasm_sandboxing_libraries(libraries, build_project): - if build_project != "tools/rusttests": +@depends(dependable(wasm_sandboxing_libraries), build_project, target) +def default_wasm_sandboxing_libraries(libraries, build_project, target): + if build_project != "tools/rusttests" and target.endianness == "little": non_default_libs = {} return tuple(l for l in libraries if l not in non_default_libs) diff -Nru firefox-esr-128.11.0esr/uriloader/base/nsIURILoader.idl firefox-esr-128.12.0esr/uriloader/base/nsIURILoader.idl --- firefox-esr-128.11.0esr/uriloader/base/nsIURILoader.idl 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/uriloader/base/nsIURILoader.idl 2025-06-17 01:36:51.000000000 +0000 @@ -53,6 +53,12 @@ * be indicated. */ const unsigned long DONT_RETARGET = 1 << 1; + /** + * If this flag is set, the navigation is for an object or embed element, + * which may handle some content types internally, even if an attachment + * content disposition is specified. + */ + const unsigned long IS_OBJECT_EMBED = 1 << 2; /* @} */ /** diff -Nru firefox-esr-128.11.0esr/uriloader/base/nsURILoader.cpp firefox-esr-128.12.0esr/uriloader/base/nsURILoader.cpp --- firefox-esr-128.11.0esr/uriloader/base/nsURILoader.cpp 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/uriloader/base/nsURILoader.cpp 2025-06-17 01:36:51.000000000 +0000 @@ -47,6 +47,7 @@ #include "mozilla/StaticPrefs_dom.h" #include "mozilla/StaticPrefs_general.h" #include "nsContentUtils.h" +#include "imgLoader.h" mozilla::LazyLogModule nsURILoader::mLog("URILoader"); @@ -240,6 +241,28 @@ return NS_OK; } +static bool IsContentPDF(nsIChannel* aChannel, const nsACString& aContentType) { + bool isPDF = aContentType.LowerCaseEqualsASCII(APPLICATION_PDF); + if (!isPDF && (aContentType.LowerCaseEqualsASCII(APPLICATION_OCTET_STREAM) || + aContentType.IsEmpty())) { + nsAutoString flname; + aChannel->GetContentDispositionFilename(flname); + isPDF = StringEndsWith(flname, u".pdf"_ns); + if (!isPDF) { + nsCOMPtr uri; + aChannel->GetURI(getter_AddRefs(uri)); + nsCOMPtr url(do_QueryInterface(uri)); + if (url) { + nsAutoCString ext; + url->GetFileExtension(ext); + isPDF = ext.EqualsLiteral("pdf"); + } + } + } + + return isPDF; +} + nsresult nsDocumentOpenInfo::DispatchContent(nsIRequest* request) { LOG(("[0x%p] nsDocumentOpenInfo::DispatchContent for type '%s'", this, mContentType.get())); @@ -274,72 +297,51 @@ // could happen because the Content-Disposition header is set so, or, in the // future, because the user has specified external handling for the MIME // type. - // - // If we're not going to be able to retarget to an external handler, ignore - // content-disposition, and unconditionally try to display the content. - // This is used for object/embed tags, which expect to display subresources - // marked with an attachment disposition. - bool forceExternalHandling = false; - if (!(mFlags & nsIURILoader::DONT_RETARGET)) { - uint32_t disposition; - rv = aChannel->GetContentDisposition(&disposition); + uint32_t disposition; + rv = aChannel->GetContentDisposition(&disposition); - if (NS_SUCCEEDED(rv) && disposition == nsIChannel::DISPOSITION_ATTACHMENT) { - forceExternalHandling = true; - } - } + bool forceExternalHandling = + NS_SUCCEEDED(rv) && disposition == nsIChannel::DISPOSITION_ATTACHMENT; LOG((" forceExternalHandling: %s", forceExternalHandling ? "yes" : "no")); - if (forceExternalHandling && - mozilla::StaticPrefs::browser_download_open_pdf_attachments_inline()) { - // Check if this is a PDF which should be opened internally. We also handle - // octet-streams that look like they might be PDFs based on their extension. - bool isPDF = mContentType.LowerCaseEqualsASCII(APPLICATION_PDF); - if (!isPDF && - (mContentType.LowerCaseEqualsASCII(APPLICATION_OCTET_STREAM) || - mContentType.IsEmpty())) { - nsAutoString flname; - aChannel->GetContentDispositionFilename(flname); - isPDF = StringEndsWith(flname, u".pdf"_ns); - if (!isPDF) { - nsCOMPtr uri; - aChannel->GetURI(getter_AddRefs(uri)); - nsCOMPtr url(do_QueryInterface(uri)); - if (url) { - nsAutoCString ext; - url->GetFileExtension(ext); - isPDF = ext.EqualsLiteral("pdf"); - } - } - } + // Ignore the Content-Disposition header if we're loading a PDF or Image + // subresource within an object/embed element. + if (forceExternalHandling && (mFlags & nsIURILoader::IS_OBJECT_EMBED) && + (imgLoader::SupportImageWithMimeType(mContentType) || + IsContentPDF(aChannel, mContentType))) { + LOG(("Handling pdf/image MIME internally for object/embed element")); + forceExternalHandling = false; + } + // Check if this is a PDF which should be opened internally. We also handle + // octet-streams that look like they might be PDFs based on their extension. + if (forceExternalHandling && + mozilla::StaticPrefs::browser_download_open_pdf_attachments_inline() && + IsContentPDF(aChannel, mContentType)) { // For a PDF, check if the preference is set that forces attachments to be // opened inline. If so, treat it as a non-attachment by clearing // 'forceExternalHandling' again. This allows it open a PDF directly // instead of downloading it first. It may still end up being handled by // a helper app depending anyway on the later checks. - if (isPDF) { - nsCOMPtr loadInfo; - aChannel->GetLoadInfo(getter_AddRefs(loadInfo)); - - nsCOMPtr mimeInfo; - - nsCOMPtr mimeSvc( - do_GetService(NS_MIMESERVICE_CONTRACTID)); - NS_ENSURE_TRUE(mimeSvc, NS_ERROR_FAILURE); - mimeSvc->GetFromTypeAndExtension(nsLiteralCString(APPLICATION_PDF), ""_ns, - getter_AddRefs(mimeInfo)); - - if (mimeInfo) { - int32_t action = nsIMIMEInfo::saveToDisk; - mimeInfo->GetPreferredAction(&action); - - bool alwaysAsk = true; - mimeInfo->GetAlwaysAskBeforeHandling(&alwaysAsk); - forceExternalHandling = - alwaysAsk || action != nsIMIMEInfo::handleInternally; - } + nsCOMPtr loadInfo; + aChannel->GetLoadInfo(getter_AddRefs(loadInfo)); + + nsCOMPtr mimeInfo; + + nsCOMPtr mimeSvc(do_GetService(NS_MIMESERVICE_CONTRACTID)); + NS_ENSURE_TRUE(mimeSvc, NS_ERROR_FAILURE); + mimeSvc->GetFromTypeAndExtension(nsLiteralCString(APPLICATION_PDF), ""_ns, + getter_AddRefs(mimeInfo)); + + if (mimeInfo) { + int32_t action = nsIMIMEInfo::saveToDisk; + mimeInfo->GetPreferredAction(&action); + + bool alwaysAsk = true; + mimeInfo->GetAlwaysAskBeforeHandling(&alwaysAsk); + forceExternalHandling = + alwaysAsk || action != nsIMIMEInfo::handleInternally; } } diff -Nru firefox-esr-128.11.0esr/xpcom/io/nsLocalFileCommon.cpp firefox-esr-128.12.0esr/xpcom/io/nsLocalFileCommon.cpp --- firefox-esr-128.11.0esr/xpcom/io/nsLocalFileCommon.cpp 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/xpcom/io/nsLocalFileCommon.cpp 2025-06-17 01:36:51.000000000 +0000 @@ -117,6 +117,7 @@ ".settingcontent-ms", ".shb", ".shs", + ".terminal", // macOS terminal files ".url", ".vb", ".vbe", diff -Nru firefox-esr-128.11.0esr/xpcom/io/nsLocalFileCommon.h firefox-esr-128.12.0esr/xpcom/io/nsLocalFileCommon.h --- firefox-esr-128.11.0esr/xpcom/io/nsLocalFileCommon.h 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/xpcom/io/nsLocalFileCommon.h 2025-06-17 01:36:51.000000000 +0000 @@ -8,9 +8,9 @@ #define _NS_LOCAL_FILE_COMMON_H_ #ifdef MOZ_ESR -extern const char* const sExecutableExts[109]; -#else extern const char* const sExecutableExts[110]; +#else +extern const char* const sExecutableExts[111]; #endif #endif diff -Nru firefox-esr-128.11.0esr/xpcom/io/nsLocalFileUnix.cpp firefox-esr-128.12.0esr/xpcom/io/nsLocalFileUnix.cpp --- firefox-esr-128.11.0esr/xpcom/io/nsLocalFileUnix.cpp 2025-05-19 14:58:08.000000000 +0000 +++ firefox-esr-128.12.0esr/xpcom/io/nsLocalFileUnix.cpp 2025-06-17 01:36:51.000000000 +0000 @@ -1811,6 +1811,7 @@ "ftploc", // Can point to other files. "inetloc", // Shouldn't be able to do the same, but can, due to // macOS vulnerabilities. + "terminal", // macOS Terminal app configuration files #endif "jar" // java application bundle };