From 4af255ba8a6924c54a9bafa6fdac32bbc56069b8 Mon Sep 17 00:00:00 2001 From: Roy Tam Date: Fri, 28 Feb 2020 13:38:35 +0800 Subject: [PATCH] import changes from tenfourfox: - #591: M1467722 (cfb43390a) - #591: bustage fix (bbc9a12a5) - #592: implement CSSStyleSheet rules and addRule (2eb5ba7f6) - #588: increase latency of search a little more (ddd1b9aab) - #541: more disgusting hacks to fix jsfiddle (1f3d8fcbe) - more hosts for adblock (1cdef889b) - #593: M1607742 M1684490 + updated TLDs, pins, HSTS (67706e1f6) --- browser/app/profile/firefox.js | 2 +- caps/nsScriptSecurityManager.cpp | 21 + devtools/client/shared/Curl.jsm | 36 +- dom/base/nsGlobalWindow.cpp | 28 +- dom/smil/nsSMILCSSProperty.cpp | 8 +- dom/webidl/CSSStyleSheet.webidl | 8 + editor/libeditor/nsHTMLCSSUtils.cpp | 5 +- js/src/frontend/BytecodeEmitter.cpp | 3 +- layout/style/CSSStyleSheet.cpp | 34 + layout/style/CSSStyleSheet.h | 2 + layout/style/nsComputedDOMStyle.cpp | 60 +- layout/style/nsComputedDOMStyle.h | 12 +- netwerk/dns/effective_tld_names.dat | 19 +- .../protocol/ftp/nsFtpConnectionThread.cpp | 6 +- netwerk/protocol/ftp/nsFtpConnectionThread.h | 2 + security/manager/ssl/StaticHPKPins.h | 6 +- security/manager/ssl/nsSTSPreloadList.inc | 4329 ++++++++++------- 17 files changed, 2831 insertions(+), 1750 deletions(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index b41fc4fe7..b87414286 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -294,7 +294,7 @@ pref("browser.urlbar.maxRichResults", 6); // The amount of time (ms) to wait after the user has stopped typing // before starting to perform autocomplete. 50 is the default set in // autocomplete.xml. -pref("browser.urlbar.delay", 100); +pref("browser.urlbar.delay", 250); // The special characters below can be typed into the urlbar to either restrict // the search to visited history, bookmarked, tagged pages; or force a match on diff --git a/caps/nsScriptSecurityManager.cpp b/caps/nsScriptSecurityManager.cpp index b5ee54c70..44ab87758 100644 --- a/caps/nsScriptSecurityManager.cpp +++ b/caps/nsScriptSecurityManager.cpp @@ -990,6 +990,7 @@ nsScriptSecurityManager::CheckLoadURIWithPrincipal(nsIPrincipal* aPrincipal, BLOK("c.fqtag.com") || BLOK("new.fqtag.com") || + BLOK("tag.1rx.io") || BLOK("a-nj.1rx.io") || BLOK("rxcdn.1rx.io") || @@ -1111,6 +1112,7 @@ nsScriptSecurityManager::CheckLoadURIWithPrincipal(nsIPrincipal* aPrincipal, BLOK("js.gumgum.com") || BLOK("cdn.digitru.st") || + BLOK("prebid.digitru.st") || BLOK("collector.cint.com") || @@ -1185,6 +1187,25 @@ nsScriptSecurityManager::CheckLoadURIWithPrincipal(nsIPrincipal* aPrincipal, BLOK("tag.crsspxl.com") || + BLOK("a.pub.network") || + BLOK("a.publir.com") || + + BLOK("eb.proper.io") || + BLOK("s2s.proper.io") || + BLOK("bids.proper.io") || + BLOK("events.proper.io") || + BLOK("global.proper.io") || + BLOK("propermedia-d.openx.net") || + + BLOK("stat.media") || + + BLOK("c.jsrdn.com") || + BLOK("s.jsrdn.com") || + + BLOK("hb.emxdgt.com") || + + BLOK("lockerdome.com") || + #include "shavar-blocklist.h" 0) { diff --git a/devtools/client/shared/Curl.jsm b/devtools/client/shared/Curl.jsm index 9026f109d..30bdead3b 100644 --- a/devtools/client/shared/Curl.jsm +++ b/devtools/client/shared/Curl.jsm @@ -63,6 +63,18 @@ this.Curl = { let utils = CurlUtils; let command = ["curl"]; + + // Make sure to use the following helpers to sanitize arguments before execution. + const addParam = value => { + const safe = /^[a-zA-Z-]+$/.test(value) ? value : escapeString(value); + command.push(safe); + }; + + const addPostData = value => { + const safe = /^[a-zA-Z-]+$/.test(value) ? value : escapeString(value); + data.push(safe); + }; + let ignoredHeaders = new Set(); // The cURL command is expected to run on the same platform that Firefox runs @@ -71,7 +83,7 @@ this.Curl = { utils.escapeStringWin : utils.escapeStringPosix; // Add URL. - command.push(escapeString(aData.url)); + addParam(aData.url); let postDataText = null; let multipartRequest = utils.isMultipartRequest(aData); @@ -80,15 +92,15 @@ this.Curl = { let data = []; if (utils.isUrlEncodedRequest(aData) || aData.method == "PUT") { postDataText = aData.postDataText; - data.push("--data"); - data.push(escapeString(utils.writePostDataTextParams(postDataText))); + addPostData("--data"); + addPostData(utils.writePostDataTextParams(postDataText)); ignoredHeaders.add("Content-Length"); } else if (multipartRequest) { postDataText = aData.postDataText; - data.push("--data-binary"); + addPostData("--data-binary"); let boundary = utils.getMultipartBoundary(aData); let text = utils.removeBinaryDataFromMultipartText(postDataText, boundary); - data.push(escapeString(text)); + addPostData(text); ignoredHeaders.add("Content-Length"); } @@ -96,20 +108,20 @@ this.Curl = { // For GET and POST requests this is not necessary as GET is the // default. If --data or --binary is added POST is the default. if (!(aData.method == "GET" || aData.method == "POST")) { - command.push("-X"); - command.push(aData.method); + addParam("-X"); + addParam(aData.method); } // Add -I (HEAD) // For servers that supports HEAD. // This will fetch the header of a document only. if (aData.method == "HEAD") { - command.push("-I"); + addParam("-I"); } // Add http version. if (aData.httpVersion && aData.httpVersion != DEFAULT_HTTP_VERSION) { - command.push("--" + aData.httpVersion.split("/")[1]); + addParam("--" + aData.httpVersion.split("/")[1]); } // Add request headers. @@ -121,14 +133,14 @@ this.Curl = { for (let i = 0; i < headers.length; i++) { let header = headers[i]; if (header.name === "Accept-Encoding"){ - command.push("--compressed"); + addParam("--compressed"); continue; } if (ignoredHeaders.has(header.name)) { continue; } - command.push("-H"); - command.push(escapeString(header.name + ": " + header.value)); + addParam("-H"); + addParam(header.name + ": " + header.value); } // Add post data. diff --git a/dom/base/nsGlobalWindow.cpp b/dom/base/nsGlobalWindow.cpp index 242f1ab2e..2118c708a 100644 --- a/dom/base/nsGlobalWindow.cpp +++ b/dom/base/nsGlobalWindow.cpp @@ -10009,36 +10009,12 @@ nsGlobalWindow::GetComputedStyleHelperOuter(Element& aElt, { MOZ_RELEASE_ASSERT(IsOuterWindow()); - if (!mDocShell) { + if (!mDoc) { return nullptr; } - nsCOMPtr presShell = mDocShell->GetPresShell(); - - if (!presShell) { - // Try flushing frames on our parent in case there's a pending - // style change that will create the presshell. - nsGlobalWindow *parent = - static_cast(GetPrivateParent()); - if (!parent) { - return nullptr; - } - - parent->FlushPendingNotifications(Flush_Frames); - - // Might have killed mDocShell - if (!mDocShell) { - return nullptr; - } - - presShell = mDocShell->GetPresShell(); - if (!presShell) { - return nullptr; - } - } - RefPtr compStyle = - NS_NewComputedDOMStyle(&aElt, aPseudoElt, presShell, + NS_NewComputedDOMStyle(&aElt, aPseudoElt, mDoc, aDefaultStylesOnly ? nsComputedDOMStyle::eDefaultOnly : nsComputedDOMStyle::eAll); diff --git a/dom/smil/nsSMILCSSProperty.cpp b/dom/smil/nsSMILCSSProperty.cpp index 61a7ea29c..80182c679 100644 --- a/dom/smil/nsSMILCSSProperty.cpp +++ b/dom/smil/nsSMILCSSProperty.cpp @@ -38,14 +38,8 @@ GetCSSComputedValue(Element* aElem, return false; } - nsIPresShell* shell = doc->GetShell(); - if (!shell) { - NS_WARNING("Unable to look up computed style -- no pres shell"); - return false; - } - RefPtr computedStyle = - NS_NewComputedDOMStyle(aElem, EmptyString(), shell); + NS_NewComputedDOMStyle(aElem, EmptyString(), doc); computedStyle->GetPropertyValue(aPropID, aResult); return true; diff --git a/dom/webidl/CSSStyleSheet.webidl b/dom/webidl/CSSStyleSheet.webidl index dc88888c3..4d7079fec 100644 --- a/dom/webidl/CSSStyleSheet.webidl +++ b/dom/webidl/CSSStyleSheet.webidl @@ -18,4 +18,12 @@ interface CSSStyleSheet : StyleSheet { unsigned long insertRule(DOMString rule, optional unsigned long index = 0); [Throws] void deleteRule(unsigned long index); + + // Non-standard WebKit things, see https://github.com/w3c/csswg-drafts/pull/3900. + [Throws, BinaryName="cssRules"] + readonly attribute CSSRuleList rules; + [Throws, BinaryName="deleteRule"] + void removeRule(optional unsigned long index = 0); + [Throws] + long addRule(optional DOMString selector = "undefined", optional DOMString style = "undefined", optional unsigned long index); }; diff --git a/editor/libeditor/nsHTMLCSSUtils.cpp b/editor/libeditor/nsHTMLCSSUtils.cpp index 09e0dba21..b20506791 100644 --- a/editor/libeditor/nsHTMLCSSUtils.cpp +++ b/editor/libeditor/nsHTMLCSSUtils.cpp @@ -537,11 +537,8 @@ nsHTMLCSSUtils::GetComputedStyle(dom::Element* aElement) nsIDocument* doc = aElement->GetCurrentDoc(); NS_ENSURE_TRUE(doc, nullptr); - nsIPresShell* presShell = doc->GetShell(); - NS_ENSURE_TRUE(presShell, nullptr); - RefPtr style = - NS_NewComputedDOMStyle(aElement, EmptyString(), presShell); + NS_NewComputedDOMStyle(aElement, EmptyString(), doc); return style.forget(); } diff --git a/js/src/frontend/BytecodeEmitter.cpp b/js/src/frontend/BytecodeEmitter.cpp index faea25b06..5501d97ef 100644 --- a/js/src/frontend/BytecodeEmitter.cpp +++ b/js/src/frontend/BytecodeEmitter.cpp @@ -1260,10 +1260,11 @@ CheckSetConstOp(JSOp op, ParseNode* pn) case JSOP_INITLEXICAL: case JSOP_INITALIASEDLEXICAL: break; #if (0) // flip this for confidence testing case JSOP_SETLOCAL: return JSOP_THROWSETCONST; + case JSOP_SETALIASEDVAR: return JSOP_THROWSETALIASEDCONST; #else case JSOP_SETLOCAL: break; + case JSOP_SETALIASEDVAR: break; #endif - case JSOP_SETALIASEDVAR: return JSOP_THROWSETALIASEDCONST; default: MOZ_CRASH("unexpected set var op"); } } diff --git a/layout/style/CSSStyleSheet.cpp b/layout/style/CSSStyleSheet.cpp index 0c3a99d4d..b8089ad9a 100644 --- a/layout/style/CSSStyleSheet.cpp +++ b/layout/style/CSSStyleSheet.cpp @@ -1918,6 +1918,40 @@ CSSStyleSheet::InsertRule(const nsAString& aRule, return InsertRuleInternal(aRule, aIndex, aReturn); } +/* TenFourFox issue 592 */ +int32_t +CSSStyleSheet::AddRule(const nsAString& aSelector, const nsAString& aBlock, + const Optional& aIndex, ErrorResult& aRv) +{ + uint32_t index; + if (aIndex.WasPassed()) { + index = aIndex.Value(); + } else { + CSSRuleList* collection = GetCssRules(aRv); + if (!collection) { + // Must have thrown. + return -1; + } + index = collection->Length(); + } + + nsAutoString rule; + rule.Append(aSelector); + rule.AppendLiteral(" { "); + if (!aBlock.IsEmpty()) { + rule.Append(aBlock); + rule.Append(' '); + } + rule.Append('}'); + + uint32_t retval; // unused + nsresult rv = InsertRuleInternal(rule, index, &retval); + if (NS_FAILED(rv)) aRv.Throw(rv); + + // As per Microsoft documentation, always return -1. + return -1; +} + static bool RuleHasPendingChildSheet(css::Rule *cssRule) { diff --git a/layout/style/CSSStyleSheet.h b/layout/style/CSSStyleSheet.h index 6b670699a..f1fd6c7d3 100644 --- a/layout/style/CSSStyleSheet.h +++ b/layout/style/CSSStyleSheet.h @@ -320,6 +320,8 @@ public: void DeleteRule(uint32_t aIndex, ErrorResult& aRv) { aRv = DeleteRule(aIndex); } + int32_t AddRule(const nsAString& aSelector, const nsAString& aBlock, + const dom::Optional& aIndex, ErrorResult& aRv); // WebIDL miscellaneous bits dom::ParentObject GetParentObject() const { diff --git a/layout/style/nsComputedDOMStyle.cpp b/layout/style/nsComputedDOMStyle.cpp index a9702fdab..d5c3abcc5 100644 --- a/layout/style/nsComputedDOMStyle.cpp +++ b/layout/style/nsComputedDOMStyle.cpp @@ -63,13 +63,13 @@ using namespace mozilla::dom; */ already_AddRefed -NS_NewComputedDOMStyle(dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, +NS_NewComputedDOMStyle(dom::Element* aElement, + const nsAString& aPseudoElt, + nsIDocument* aDocument, nsComputedDOMStyle::StyleType aStyleType) { RefPtr computedStyle; - computedStyle = new nsComputedDOMStyle(aElement, aPseudoElt, aPresShell, - aStyleType); + computedStyle = new nsComputedDOMStyle(aElement, aPseudoElt, aDocument, aStyleType); return computedStyle.forget(); } @@ -219,7 +219,7 @@ nsComputedStyleMap::Update() nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, StyleType aStyleType) : mDocumentWeak(nullptr), mOuterFrame(nullptr), mInnerFrame(nullptr), mPresShell(nullptr), @@ -228,11 +228,13 @@ nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, mExposeVisitedStyle(false), mResolvedStyleContext(false) { - MOZ_ASSERT(aElement && aPresShell); + MOZ_ASSERT(aElement); + MOZ_ASSERT(aDocument); + // TODO(emilio, bug 548397, https://github.com/w3c/csswg-drafts/issues/2403): + // Should use aElement->OwnerDoc() instead. + mDocumentWeak = do_GetWeakReference(aDocument); - mDocumentWeak = do_GetWeakReference(aPresShell->GetDocument()); - - mContent = aElement; + mElement = aElement; if (!DOMStringIsNull(aPseudoElt) && !aPseudoElt.IsEmpty() && aPseudoElt.First() == char16_t(':')) { @@ -259,11 +261,8 @@ nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, mPseudo = nullptr; } } - - MOZ_ASSERT(aPresShell->GetPresContext()); } - nsComputedDOMStyle::~nsComputedDOMStyle() { ClearStyleContext(); @@ -272,13 +271,13 @@ nsComputedDOMStyle::~nsComputedDOMStyle() NS_IMPL_CYCLE_COLLECTION_CLASS(nsComputedDOMStyle) NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsComputedDOMStyle) - tmp->ClearStyleContext(); // remove observer before clearing mContent - NS_IMPL_CYCLE_COLLECTION_UNLINK(mContent) + tmp->ClearStyleContext(); // remove observer before clearing mElement + NS_IMPL_CYCLE_COLLECTION_UNLINK(mElement) NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsComputedDOMStyle) - NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mContent) + NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mElement) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END @@ -345,8 +344,6 @@ nsComputedDOMStyle::SetCssText(const nsAString& aCssText) NS_IMETHODIMP nsComputedDOMStyle::GetLength(uint32_t* aLength) { - NS_PRECONDITION(aLength, "Null aLength! Prepare to die!"); - uint32_t length = GetComputedStyleMap()->Length(); // Make sure we have up to date style so that we can include custom @@ -354,6 +351,8 @@ nsComputedDOMStyle::GetLength(uint32_t* aLength) UpdateCurrentStyleSources(false); if (mStyleContext) { length += StyleVariables()->mVariables.Count(); + } else { + length = 0; } *aLength = length; @@ -599,7 +598,7 @@ nsComputedDOMStyle::ClearStyleContext() { if (mResolvedStyleContext) { mResolvedStyleContext = false; - mContent->RemoveMutationObserver(this); + mElement->RemoveMutationObserver(this); } mStyleContext = nullptr; } @@ -609,7 +608,7 @@ nsComputedDOMStyle::SetResolvedStyleContext(RefPtr&& aContext) { if (!mResolvedStyleContext) { mResolvedStyleContext = true; - mContent->AddMutationObserver(this); + mElement->AddMutationObserver(this); } mStyleContext = aContext; } @@ -634,7 +633,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) // Flush _before_ getting the presshell, since that could create a new // presshell. Also note that we want to flush the style on the document - // we're computing style in, not on the document mContent is in -- the two + // we're computing style in, not on the document mElement is in -- the two // may be different. document->FlushPendingNotifications( aNeedsLayoutFlush ? Flush_Layout : Flush_Style); @@ -642,7 +641,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mFlushedPendingReflows = aNeedsLayoutFlush; #endif - nsCOMPtr presShellForContent = GetPresShellForContent(mContent); + nsCOMPtr presShellForContent = GetPresShellForContent(mElement); if (presShellForContent && presShellForContent != mPresShell) { presShellForContent->FlushPendingNotifications(Flush_Style); } @@ -657,7 +656,11 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mPresShell->GetPresContext()->GetRestyleGeneration(); if (mStyleContext) { - if (mStyleContextGeneration == currentGeneration) { + // We can't rely on the undisplayed restyle generation if mElement is + // out-of-document, since that generation is not incremented for DOM changes + // on out-of-document elements. + if (mStyleContextGeneration == currentGeneration && + mElement->IsInComposedDoc()) { // Our cached style context is still valid. return; } @@ -666,12 +669,12 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mStyleContext = nullptr; } - // XXX the !mContent->IsHTMLElement(nsGkAtoms::area) + // XXX the !mElement->IsHTMLElement(nsGkAtoms::area) // check is needed due to bug 135040 (to avoid using // mPrimaryFrame). Remove it once that's fixed. if (!mPseudo && mStyleType == eAll && - !mContent->IsHTMLElement(nsGkAtoms::area)) { - mOuterFrame = mContent->GetPrimaryFrame(); + !mElement->IsHTMLElement(nsGkAtoms::area)) { + mOuterFrame = mElement->GetPrimaryFrame(); mInnerFrame = mOuterFrame; if (mOuterFrame) { nsIAtom* type = mOuterFrame->GetType(); @@ -715,7 +718,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) // Need to resolve a style context RefPtr resolvedStyleContext = nsComputedDOMStyle::GetStyleContextForElementNoFlush( - mContent->AsElement(), + mElement, mPseudo, presShellForContent ? presShellForContent.get() : mPresShell, mStyleType); @@ -808,7 +811,6 @@ nsComputedDOMStyle::GetPropertyCSSValue(const nsAString& aPropertyName, ErrorRes UpdateCurrentStyleSources(needsLayoutFlush); if (!mStyleContext) { - aRv.Throw(NS_ERROR_NOT_AVAILABLE); return nullptr; } @@ -4866,7 +4868,7 @@ nsComputedDOMStyle::GetLineHeightCoord(nscoord& aCoord) // lie about font size inflation since we lie about font size (since // the inflation only applies to text) - aCoord = nsHTMLReflowState::CalcLineHeight(mContent, mStyleContext, + aCoord = nsHTMLReflowState::CalcLineHeight(mElement, mStyleContext, blockHeight, 1.0f); // CalcLineHeight uses font->mFont.size, but we want to use @@ -6228,7 +6230,7 @@ nsComputedDOMStyle::DoGetCustomProperty(const nsAString& aPropertyName) void nsComputedDOMStyle::ParentChainChanged(nsIContent* aContent) { - NS_ASSERTION(mContent == aContent, "didn't we register mContent?"); + NS_ASSERTION(mElement == aContent, "didn't we register mElement?"); NS_ASSERTION(mResolvedStyleContext, "should have only registered an observer when " "mResolvedStyleContext is true"); diff --git a/layout/style/nsComputedDOMStyle.h b/layout/style/nsComputedDOMStyle.h index ce7a6d02b..72b67cd56 100644 --- a/layout/style/nsComputedDOMStyle.h +++ b/layout/style/nsComputedDOMStyle.h @@ -70,12 +70,12 @@ public: nsComputedDOMStyle(mozilla::dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, StyleType aStyleType); - virtual nsINode *GetParentObject() override + nsINode *GetParentObject() override { - return mContent; + return reinterpret_cast(mElement.get()); } static already_AddRefed @@ -614,9 +614,9 @@ private: // We don't really have a good immutable representation of "presentation". // Given the way GetComputedStyle is currently used, we should just grab the - // 0th presshell, if any, from the document. + // presshell, if any, from the document. nsWeakPtr mDocumentWeak; - nsCOMPtr mContent; + RefPtr mElement; /** * Strong reference to the style context we access data from. This can be @@ -682,7 +682,7 @@ private: already_AddRefed NS_NewComputedDOMStyle(mozilla::dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, nsComputedDOMStyle::StyleType aStyleType = nsComputedDOMStyle::eAll); diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat index 2cd57d811..caa040c5c 100644 --- a/netwerk/dns/effective_tld_names.dat +++ b/netwerk/dns/effective_tld_names.dat @@ -982,8 +982,19 @@ fi // TODO: Check for updates (expected to be phased out around Q1/2009) aland.fi -// fj : https://en.wikipedia.org/wiki/.fj -*.fj +// fj : http://domains.fj/ +// Submitted by registry 2020-02-11 +fj +ac.fj +biz.fj +com.fj +gov.fj +info.fj +mil.fj +name.fj +net.fj +org.fj +pro.fj // fk : https://en.wikipedia.org/wiki/.fk *.fk @@ -7074,7 +7085,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-02-01T17:46:27Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-02-06T17:49:42Z // This list is auto-generated, don't edit it manually. // aaa : 2015-02-26 American Automobile Association, Inc. aaa @@ -10532,7 +10543,7 @@ xin // xn--nyqy26a : 2014-11-07 Stable Tone Limited 健康 -// xn--otu796d : 2017-08-06 Internet DotTrademark Organisation Limited +// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited 招聘 // xn--p1acf : 2013-12-12 Rusnames Limited diff --git a/netwerk/protocol/ftp/nsFtpConnectionThread.cpp b/netwerk/protocol/ftp/nsFtpConnectionThread.cpp index dede9bec2..fd0cfe94d 100644 --- a/netwerk/protocol/ftp/nsFtpConnectionThread.cpp +++ b/netwerk/protocol/ftp/nsFtpConnectionThread.cpp @@ -85,6 +85,7 @@ nsFtpState::nsFtpState() , mAnonymous(true) , mRetryPass(false) , mStorReplyReceived(false) + , mRlist1xxReceived(false) , mInternalError(NS_OK) , mReconnectAndLoginAgain(false) , mCacheConnection(true) @@ -1187,15 +1188,18 @@ nsFtpState::S_list() { FTP_STATE nsFtpState::R_list() { if (mResponseCode/100 == 1) { + mRlist1xxReceived = true; + // OK, time to start reading from the data connection. if (mDataStream && HasPendingCallback()) mDataStream->AsyncWait(this, 0, 0, CallbackTarget()); return FTP_READ_BUF; } - if (mResponseCode/100 == 2) { + if (mResponseCode/100 == 2 && mRlist1xxReceived) { //(DONE) mNextState = FTP_COMPLETE; + mRlist1xxReceived = false; return FTP_COMPLETE; } return FTP_ERROR; diff --git a/netwerk/protocol/ftp/nsFtpConnectionThread.h b/netwerk/protocol/ftp/nsFtpConnectionThread.h index dd48da562..85bd09be1 100644 --- a/netwerk/protocol/ftp/nsFtpConnectionThread.h +++ b/netwerk/protocol/ftp/nsFtpConnectionThread.h @@ -185,6 +185,8 @@ private: bool mRetryPass; // retrying the password bool mStorReplyReceived; // FALSE if waiting for STOR // completion status from server + bool mRlist1xxReceived; // TRUE if we have received a LIST + // 1xx response from the server nsresult mInternalError; // represents internal state errors bool mReconnectAndLoginAgain; bool mCacheConnection; diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index ae96c00cc..bedb3d6d4 100644 --- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -686,7 +686,6 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "chrome-devtools-frontend.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "chrome.com", true, false, false, -1, &kPinset_google_root_pems }, { "chrome.google.com", true, false, false, -1, &kPinset_google_root_pems }, - { "chromereporting-pa.googleapis.com", true, false, false, -1, &kPinset_google_root_pems }, { "chromiumbugs.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "chromiumcodereview.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "cl.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, @@ -1083,7 +1082,6 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "torproject.org", false, false, false, -1, &kPinset_tor }, { "touch.facebook.com", true, false, false, -1, &kPinset_facebook }, { "tr.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, - { "translate.googleapis.com", true, false, false, -1, &kPinset_google_root_pems }, { "tv.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "tw.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "twimg.com", true, false, false, -1, &kPinset_twitterCDN }, @@ -1133,8 +1131,8 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "zh.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, }; -// Pinning Preload List Length = 488; +// Pinning Preload List Length = 486; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1588253180115000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1590413552686000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index f31efead3..24f9a84bf 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -10,7 +10,7 @@ /* imported from ESR68 by TenFourFox conversion script */ #include -const PRTime gPreloadListExpirationTime = INT64_C(1590672355841000); +const PRTime gPreloadListExpirationTime = INT64_C(1592832724562000); class nsSTSPreload { @@ -24,8 +24,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0-1.party", true }, { "0-24.com", true }, { "0-24.net", true }, + { "00004048.com", true }, { "000321365.com", true }, - { "0007552.com", true }, + { "0007552.com", false }, { "000a1.com", true }, { "000a2.com", true }, { "000a3.com", true }, @@ -39,72 +40,68 @@ static const nsSTSPreload kSTSPreloadList[] = { { "000x3.com", true }, { "00100010.net", true }, { "0010100.net", true }, - { "0011d88.com", true }, { "00120012.net", true }, { "00130013.net", true }, - { "0013d88.com", true }, { "00140014.net", true }, - { "0014d88.com", true }, { "00150015.net", true }, { "0015d88.com", true }, { "00160016.net", true }, { "00168365.com", true }, { "0016d88.com", true }, - { "0017552.com", true }, + { "0017552.com", false }, { "0017d88.com", true }, { "00180018.net", true }, { "0018d88.com", true }, { "00190019.net", true }, - { "0019d88.com", true }, - { "001yapan.com", false }, + { "001yapan.com", true }, { "0020d88.com", true }, { "00220022.net", true }, - { "00228.am", false }, - { "00228.org", false }, + { "00228.am", true }, + { "00228.org", true }, { "00228555.com", true }, { "00228999.com", true }, - { "00228vip5.com", false }, - { "00228vip6.com", false }, - { "00228vip8.com", false }, - { "00228vv.com", false }, - { "00228w.com", false }, - { "00228ww.com", false }, - { "00228x.com", false }, - { "00228xx.com", false }, - { "00228y.com", false }, - { "00228yy.com", false }, - { "00228z.com", false }, - { "00228zz.com", false }, - { "0022bet.vip", false }, + { "00228vip5.com", true }, + { "00228vip6.com", true }, + { "00228vip8.com", true }, + { "00228vv.com", true }, + { "00228w.com", true }, + { "00228ww.com", true }, + { "00228x.com", true }, + { "00228xx.com", true }, + { "00228y.com", true }, + { "00228yy.com", true }, + { "00228z.com", true }, + { "00228zz.com", true }, + { "0022bet.vip", true }, { "002d88.com", true }, { "002k8.com", true }, { "00365t.com", true }, - { "0037552.com", true }, + { "0037552.com", false }, { "003971.com", true }, { "003d88.com", true }, { "00440044.net", true }, - { "0047552.com", true }, + { "0047552.com", false }, { "004d88.com", true }, { "00550055.net", true }, - { "0057552.com", true }, + { "0057552.com", false }, { "005d88.com", true }, { "0064427.com", true }, { "00660066.net", true }, - { "0067552.com", true }, + { "0067552.com", false }, { "006d88.com", true }, { "00770077.net", true }, - { "0077552.com", true }, + { "0077552.com", false }, { "007d88.com", true }, { "007kf.com", true }, { "008207.com", true }, { "008251.com", true }, { "008253.com", true }, { "008271.com", true }, - { "0087552.com", true }, + { "0087552.com", false }, { "00880088.net", true }, { "008d88.com", true }, { "009597.com", true }, - { "0097552.com", true }, + { "0097552.com", false }, { "00990099.net", false }, { "009d88.com", true }, { "009zl.com", true }, @@ -121,13 +118,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "010ks.net", true }, { "01100010011001010111001101110100.com", true }, { "01110000011100110111001001100111.com", true }, - { "0117552.com", true }, + { "0117552.com", false }, { "011ks.com", true }, + { "01234048.com", true }, { "012345678365.com", true }, { "0123456789365.com", true }, - { "0127552.com", true }, + { "0127552.com", false }, { "01365t.com", true }, - { "0137552.com", true }, + { "0137552.com", false }, { "0138365.com", false }, { "0139365.com", false }, { "013zl.com", true }, @@ -151,7 +149,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "019ks.com", true }, { "019zl.com", true }, { "01smh.com", true }, - { "01tools.com", true }, { "020ks.com", true }, { "020ks.net", true }, { "021002.com", true }, @@ -224,7 +221,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0375z6.com", true }, { "0376z6.com", true }, { "0377z6.com", true }, - { "038456.com", false }, + { "038456.com", true }, { "038663.com", true }, { "038899.com", true }, { "0391315.com", true }, @@ -341,7 +338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "060870.com", true }, { "060875.com", true }, { "06091994.xyz", true }, - { "060s.com", true }, { "06365t.com", true }, { "065679.com", true }, { "065706.com", true }, @@ -364,7 +360,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "067361.com", true }, { "06804.com", true }, { "0681a.com", true }, + { "0681b.com", true }, + { "0681c.com", true }, + { "0681d.com", true }, + { "0681e.com", true }, + { "0681f.com", true }, + { "0681g.com", true }, { "0681h.com", true }, + { "0681i.com", true }, + { "0681j.com", true }, + { "0681l.com", true }, + { "0681m.com", true }, + { "0681o.com", true }, + { "0681p.com", true }, + { "0681q.com", true }, + { "0681s.com", true }, + { "0681t.com", true }, + { "0681u.com", true }, + { "0681w.com", true }, + { "0681x.com", true }, + { "0681y.com", true }, + { "0681z.com", true }, { "068552.com", false }, { "068663.com", true }, { "068697.com", true }, @@ -429,7 +445,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0799ks.com", true }, { "07am8.com", true }, { "07d88.com", true }, - { "07d88.net", true }, { "0809yh.com", true }, { "081115.com", true }, { "081752.com", true }, @@ -558,7 +573,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0x15.ca", true }, { "0x17.de", true }, { "0x378.net", true }, - { "0x3bb.net", true }, { "0x41.us", true }, { "0x52.net", true }, { "0x52.org", true }, @@ -648,7 +662,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1068511.com", true }, { "106jamz.com", true }, { "10774.net", true }, - { "107996.com", false }, + { "107996.com", true }, { "10840.net", true }, { "1088.fun", true }, { "1091.jp", true }, @@ -775,7 +789,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "118118118.net", true }, { "11883837.com", true }, { "11885835.com", true }, - { "1188bet.vip", false }, + { "1188bet.vip", true }, { "1188z6.com", true }, { "118btt.com", true }, { "118vip.net", true }, @@ -783,7 +797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1190america.tk", true }, { "11993837.com", true }, { "11995835.com", true }, - { "1199bet.vip", false }, + { "1199bet.vip", true }, { "1199z6.com", true }, { "119lc.com", true }, { "119z6.com", true }, @@ -797,6 +811,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "11thstreetcoffee.com", true }, { "11urss.com", true }, { "120323.com", true }, + { "120percent-inc.com", true }, { "1212873467.rsc.cdn77.org", true }, { "1212z6.com", true }, { "1218641649.rsc.cdn77.org", true }, @@ -881,6 +896,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1234365x.com", true }, { "1234365y.com", true }, { "1234365z.com", true }, + { "12344048.com", true }, { "12345678365.com", true }, { "123456789365.com", true }, { "1234888.com", true }, @@ -906,6 +922,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "123writings.com", true }, { "123z6.com", true }, { "124133.com", true }, + { "1244546066.rsc.cdn77.org", true }, { "124633.com", true }, { "1248.ink", true }, { "125m125.de", true }, @@ -919,25 +936,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "12thmanrising.com", true }, { "12train.com", true }, { "12vpn.net", true }, - { "12zw.com", true }, { "13-th.com", true }, { "130.ua", true }, { "130kb.com", true }, { "130ks.com", true }, { "130ks.net", true }, { "131365a.com", false }, - { "131365aa.com", false }, - { "131365b.com", false }, - { "131365c.com", false }, - { "131365d.com", false }, - { "131365e.com", false }, - { "131365ee.com", false }, - { "131365f.com", false }, - { "131365g.com", false }, - { "131365h.com", false }, - { "131365i.com", false }, - { "131365j.com", false }, - { "131365ll.com", false }, + { "131365aa.com", true }, + { "131365b.com", true }, + { "131365c.com", true }, + { "131365d.com", true }, + { "131365e.com", true }, + { "131365ee.com", true }, + { "131365f.com", true }, + { "131365g.com", true }, + { "131365h.com", true }, + { "131365i.com", true }, + { "131365j.com", true }, + { "131365ll.com", true }, { "131365qq.com", true }, { "1313z6.com", true }, { "131934.com", true }, @@ -951,13 +967,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "132k66.ag", true }, { "132kb.com", true }, { "132ks.com", true }, + { "132ks.net", true }, { "132kv.ch", true }, { "132z6.com", true }, { "13318522.com", true }, { "133294.com", true }, { "1333z6.com", true }, { "133492.com", true }, - { "1337.vg", true }, { "133769.xyz", true }, { "133846.xyz", true }, { "133ks.com", true }, @@ -985,6 +1001,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "137z6.com", true }, { "13826145000.com", true }, { "138k66.ag", true }, + { "138ks.net", true }, { "138z6.com", true }, { "1391kj.com", true }, { "1395kj.com", true }, @@ -1029,6 +1046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "14x3.de", true }, { "15-10.com", true }, { "150ks.com", true }, + { "150ks.net", true }, { "1511774230.rsc.cdn77.org", true }, { "1517598.com", true }, { "1517668.com", true }, @@ -1085,8 +1103,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1527web.com", true }, { "152k66.ag", true }, { "152k66.com", true }, + { "152ks.com", true }, { "152z6.com", true }, { "153kb.com", true }, + { "153ks.com", true }, { "153ks.net", true }, { "153z.com", true }, { "153z6.com", true }, @@ -1225,7 +1245,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "168z6.com", true }, { "168zz.cc", true }, { "1698k.com", true }, - { "169xpj.com", false }, + { "169xpj.com", true }, { "16ag6.com", true }, { "16agks.com", true }, { "16packets.com", true }, @@ -1235,6 +1255,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "170376.com", true }, { "170386.com", true }, { "170686.com", true }, + { "170kb.com", true }, { "170ks.com", true }, { "171083.com", true }, { "17187q.com", true }, @@ -1286,7 +1307,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1720348.com", true }, { "1720349.com", true }, { "1720350.com", true }, - { "173940.com", true }, + { "173940.com", false }, { "173jsh.com", true }, { "173ks.com", true }, { "174.net.nz", true }, @@ -1389,6 +1410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "185zlong.com", true }, { "186kb.com", true }, { "186ks.com", true }, + { "186ks.net", true }, { "186z6.com", true }, { "1876996.com", true }, { "187kb.com", true }, @@ -1399,12 +1421,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "188da.com", true }, { "188kb.com", true }, { "188kb.net", true }, + { "188ks.net", true }, { "188lilai.com", true }, { "188wei.com", true }, { "188z6.com", true }, { "188zlong.com", true }, { "189dv.com", true }, { "189fc.com", true }, + { "189ks.net", true }, { "189z6.com", true }, { "18agks.com", true }, { "18f.gov", true }, @@ -1490,7 +1514,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1ag777.com", true }, { "1ag88.com", true }, { "1android.de", true }, - { "1b1.pl", true }, { "1baks.tk", true }, { "1bet86.com", true }, { "1blazing.cf", true }, @@ -1690,7 +1713,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "22256j.com", false }, { "2226321.com", true }, { "2227035.com", true }, - { "2227552.com", true }, + { "2227552.com", false }, { "222b58.com", true }, { "222k8.com", true }, { "222k8.net", true }, @@ -1702,21 +1725,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2264707.ru", true }, { "2277bet.com", true }, { "228668.com", true }, - { "22884.org", false }, + { "22884.org", true }, { "2288422.com", true }, { "2288499.com", true }, - { "22884a.com", false }, - { "22884b.com", false }, - { "22884c.com", false }, - { "22884d.com", false }, - { "22884e.com", false }, - { "22884f.com", false }, - { "22884g.com", false }, - { "22884h.com", false }, + { "22884a.com", true }, + { "22884b.com", true }, + { "22884c.com", true }, + { "22884d.com", true }, + { "22884e.com", true }, + { "22884f.com", true }, + { "22884g.com", true }, + { "22884h.com", true }, { "2288bet.vip", false }, { "228wns.com", true }, { "22918.net", true }, - { "22994.org", false }, + { "22994.org", true }, { "2299411.com", true }, { "2299422.com", true }, { "2299433.com", true }, @@ -1881,12 +1904,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "27728522.com", true }, { "2777z6.com", true }, { "277z6.com", true }, + { "27878.com", true }, + { "27878dd.com", true }, + { "27878gg.com", true }, + { "27878hh.com", true }, + { "27878ii.com", true }, + { "27878jj.com", true }, + { "27878ll.com", true }, + { "27878nn.com", true }, + { "27878oo.com", true }, + { "27878pp.com", true }, + { "27878qq.com", true }, + { "27878rr.com", true }, + { "27878ss.com", true }, + { "27878tt.com", true }, + { "27878vv.com", true }, + { "27878ww.com", true }, + { "27878xx.com", true }, + { "27878yy.com", true }, + { "27878zz.com", true }, { "27is.com", true }, { "28-industries.com", true }, { "281116.com", true }, { "281180.de", true }, { "281ks.com", true }, { "282ks.com", true }, + { "2831365.com", true }, { "28365cn-365.com", true }, { "284365.com", true }, { "285551.com", true }, @@ -1934,9 +1977,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2chan.eu", true }, { "2chan.jp", true }, { "2cv-fahrer.de", true }, - { "2dua.com", true }, { "2earn-online.com", false }, - { "2evip.com", false }, + { "2evip.com", true }, { "2fm.ie", true }, { "2fm.radio", true }, { "2fr3.com", true }, @@ -1975,12 +2017,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2tuu.com", true }, { "2ulcceria.nl", true }, { "2wheel.com", false }, + { "2x.nu", true }, { "2y.fi", true }, { "2y3x.com", true }, { "3-dot-careapp1-146314.appspot.com", true }, { "30019.com", true }, { "3004233.com", true }, - { "3006789.com", false }, + { "3006789.com", true }, { "3007337.com", true }, { "300m.com", false }, { "301.technology", true }, @@ -2084,7 +2127,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "318wns.com", true }, { "319422.com", true }, { "319k3.com", true }, - { "319xpj.com", false }, + { "319xpj.com", true }, { "31du.cn", true }, { "31klabs.com", true }, { "320281.net", true }, @@ -2255,7 +2298,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "35898y.com", true }, { "35898z.com", true }, { "35d88.com", true }, - { "360-staffing.com", true }, { "360365.com", true }, { "360hosting.com.au", true }, { "360live.fr", true }, @@ -2267,6 +2309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "361171.com", true }, { "361173.com", true }, { "361183.com", true }, + { "361365.cc", true }, { "3615jacky.fr", true }, { "362590.com", true }, { "363331.com", true }, @@ -2276,6 +2319,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3650607.com", true }, { "36506088.com", true }, { "36506099.com", true }, + { "3651143.com", true }, { "3651145.com", true }, { "3651146.com", true }, { "3651147.com", true }, @@ -2284,6 +2328,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3651202.com", true }, { "3651203.com", true }, { "3651204.com", true }, + { "3651205.com", true }, { "365123456.com", false }, { "3651267.com", false }, { "3652367.com", false }, @@ -2309,6 +2354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "36533t.com", true }, { "36533u.com", true }, { "36533v.com", true }, + { "365361.cc", true }, { "365365.com", true }, { "3653650000.com", false }, { "3653651111.com", false }, @@ -2350,10 +2396,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "36594a.com", true }, { "36594b.com", true }, { "36594c.com", true }, - { "3659801.com", false }, + { "3659801.com", true }, { "3659868.com", true }, { "3659869.com", true }, { "3659980.com", true }, + { "365b58.com", true }, { "365beautyworld.com", true }, { "365cn-288.com", true }, { "365d88.com", true }, @@ -2401,8 +2448,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "365y77.com", true }, { "365y9.com", true }, { "365y99.com", true }, - { "365yapan.com", false }, - { "365ypw.com", false }, + { "365yapan.com", true }, + { "365ypw.com", true }, { "365yuwen.com", true }, { "365zg.com", true }, { "365zg.org", true }, @@ -2418,7 +2465,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "371422.com", true }, { "371687.com", true }, { "371cloud.com", false }, - { "373.moe", true }, { "3733366.xyz", true }, { "373422.com", true }, { "373816.com", true }, @@ -2437,13 +2483,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "378902.com", true }, { "378ks.com", true }, { "379700.com", true }, - { "37987.com", false }, - { "37987a.com", false }, - { "37987c.com", false }, - { "37987d.com", false }, - { "37987e.com", false }, - { "37987f.com", false }, - { "37987g.com", false }, + { "37987.com", true }, + { "37987a.com", true }, + { "37987c.com", true }, + { "37987d.com", true }, + { "37987e.com", true }, + { "37987f.com", true }, + { "37987g.com", true }, { "37zk.com", true }, { "37zw.com", true }, { "3800611.com", true }, @@ -2524,28 +2570,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "394922.com", true }, { "3957b.com", true }, { "3957d.com", true }, - { "3957e.com", false }, + { "3957e.com", true }, { "3957f.com", true }, { "3957g.com", true }, - { "3957h.com", false }, - { "3957i.com", false }, - { "3957j.com", false }, - { "3957k.com", false }, - { "3957l.com", false }, - { "3957m.com", false }, - { "3957n.com", false }, - { "3957o.com", false }, - { "3957p.com", false }, - { "3957q.com", false }, - { "3957r.com", false }, - { "3957s.com", false }, - { "3957t.com", false }, - { "3957u.com", false }, - { "3957v.com", false }, - { "3957w.com", false }, - { "3957x.com", false }, - { "3957y.com", false }, - { "3957z.com", false }, + { "3957h.com", true }, + { "3957i.com", true }, + { "3957j.com", true }, + { "3957k.com", true }, + { "3957l.com", true }, + { "3957m.com", true }, + { "3957n.com", true }, + { "3957o.com", true }, + { "3957p.com", true }, + { "3957q.com", true }, + { "3957r.com", true }, + { "3957s.com", true }, + { "3957t.com", true }, + { "3957u.com", true }, + { "3957v.com", true }, + { "3957w.com", true }, + { "3957x.com", true }, + { "3957y.com", true }, + { "3957z.com", true }, { "396228.com", true }, { "396301.com", true }, { "396302.com", true }, @@ -2630,7 +2676,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "39sihu.com", false }, { "39w66.com", true }, { "39w66.net", true }, - { "3aandl.com", true }, { "3aexpert.com.ua", true }, { "3ags.de", true }, { "3amtoolbox.se", true }, @@ -2646,11 +2691,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3cs.ch", true }, { "3d-animator.net", true }, { "3d-fotoservice.de", true }, + { "3d-glow.de", true }, { "3d1t0r4.com", false }, { "3danimation.tk", true }, { "3dcollective.es", true }, { "3de5.nl", true }, { "3deeplearner.com", true }, + { "3deni.com", true }, { "3dgep.com", true }, { "3djuegos.com", true }, { "3dlab.team", true }, @@ -2738,29 +2785,70 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4025367.com", true }, { "4025368.com", true }, { "4025369.com", true }, - { "4025c.com", false }, - { "4025d.com", false }, - { "4025f.com", false }, - { "4025g.com", false }, - { "4025h.com", false }, - { "4025i.com", false }, - { "4025j.com", false }, - { "4025k.com", false }, - { "4025l.com", false }, - { "4025n.com", false }, - { "4025p.com", false }, - { "4025q.com", false }, - { "4025s.com", false }, - { "4025t.com", false }, - { "4025u.com", false }, - { "4025v.com", false }, - { "4025w.com", false }, - { "4025x.com", false }, - { "4025y.com", false }, + { "4025c.com", true }, + { "4025d.com", true }, + { "4025f.com", true }, + { "4025g.com", true }, + { "4025h.com", true }, + { "4025i.com", true }, + { "4025j.com", true }, + { "4025k.com", true }, + { "4025l.com", true }, + { "4025n.com", true }, + { "4025p.com", true }, + { "4025q.com", true }, + { "4025s.com", true }, + { "4025t.com", true }, + { "4025u.com", true }, + { "4025v.com", true }, + { "4025w.com", true }, + { "4025x.com", true }, + { "4025y.com", true }, { "403.ch", true }, + { "403page.com", true }, { "404.guide", true }, + { "4048.co", true }, + { "40481234.com", true }, + { "40482345.com", true }, + { "40484567.com", true }, + { "40485678.com", true }, + { "40486789.com", true }, + { "4048aaa.com", true }, + { "4048b.com", true }, + { "4048ccc.com", true }, + { "4048ddd.com", true }, + { "4048e.com", true }, + { "4048eee.com", true }, + { "4048fff.com", true }, + { "4048ggg.com", true }, + { "4048hhh.com", true }, + { "4048i.com", true }, + { "4048iii.com", true }, + { "4048jjj.com", true }, { "4048kkk.com", true }, + { "4048lll.com", true }, + { "4048mmm.com", true }, + { "4048ooo.com", true }, + { "4048p.com", true }, + { "4048ppp.com", true }, + { "4048q.com", true }, + { "4048qqq.com", true }, + { "4048r.com", true }, + { "4048rrr.com", true }, + { "4048s.com", true }, + { "4048sss.com", true }, + { "4048t.com", true }, + { "4048ttt.com", true }, { "4048v.com", true }, + { "4048vvv.com", true }, + { "4048w.com", true }, + { "4048www.com", true }, + { "4048x.com", true }, + { "4048xxx.com", true }, + { "4048y.com", true }, + { "4048yyy.com", true }, + { "4048z.com", true }, + { "4048zzz.com", true }, { "404ks.com", true }, { "404notfound.com.br", true }, { "4050601.com", true }, @@ -2835,10 +2923,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "443887.com", true }, { "444321365.com", true }, { "4447035.com", true }, - { "4447552.com", true }, + { "4447552.com", false }, { "444887.com", true }, { "444b58.com", true }, - { "4455bet.vip", false }, + { "4455bet.vip", true }, { "445887.com", true }, { "44b58.com", true }, { "44sec.com", false }, @@ -2852,10 +2940,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4553vip.com", true }, { "4562030.com", true }, { "4562040.com", true }, + { "4562050.com", true }, { "45636565.com", true }, { "456365t.com", true }, { "4566321.com", true }, { "456666365.com", true }, + { "45674048.com", true }, { "456lc.com", true }, { "456zlong.com", true }, { "457552.com", true }, @@ -2865,7 +2955,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "463855.com", true }, { "4661049.com", true }, { "46d88.com", true }, - { "46d88.net", true }, { "46fa.com", true }, { "47.rs", true }, { "4706666.com", true }, @@ -2879,7 +2968,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4776070.com", true }, { "4786666.com", true }, { "47d88.com", true }, - { "47d88.net", true }, { "47essays.com", true }, { "47tech.com", true }, { "48365365cn.com", true }, @@ -2913,8 +3001,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4dbygg.se", true }, { "4dillusion.tk", true }, { "4dpredict.com", true }, + { "4dropping.com", true }, { "4everproxy.com", true }, - { "4evip.com", false }, + { "4evip.com", true }, { "4eyes.ch", true }, { "4fit.ro", true }, { "4flex.info", true }, @@ -2928,6 +3017,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4kpi.eu", true }, { "4kprojektory.cz", true }, { "4loc.us", true }, + { "4mama.ua", true }, { "4mm.org", true }, { "4monar.com", true }, { "4o5.xyz", true }, @@ -2996,8 +3086,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "504322.com", true }, { "504622.com", true }, { "504922.com", true }, - { "505343.com", false }, - { "5055990.com", false }, + { "505343.com", true }, + { "5055990.com", true }, { "5060711.com", true }, { "5060715.com", true }, { "506422.com", true }, @@ -3005,7 +3095,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "50lakeshore.com", true }, { "50ma.xyz", true }, { "50milli.com", true }, - { "50north.de", true }, { "50plusnet.nl", true }, { "50ten40.com", true }, { "5132app.com", true }, @@ -3125,15 +3214,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "52051.com", true }, { "52051a.com", true }, { "5205365.com", false }, - { "52062a.com", true }, - { "52062i.com", true }, - { "52062s.com", true }, - { "52062w.com", true }, + { "52062b.com", true }, + { "52062d.com", true }, + { "52062e.com", true }, + { "52062j.com", true }, + { "52062m.com", true }, + { "52062p.com", true }, + { "52062q.com", true }, + { "52062v.com", true }, { "52062y.com", true }, - { "52062z.com", true }, { "5206365.com", false }, { "5209365.com", false }, - { "520xpjxpj.com", true }, + { "520xpjxpj.com", false }, { "5214889.com", true }, { "5219.ml", true }, { "521jsh.com", true }, @@ -3143,7 +3235,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "524922.com", true }, { "525.info", true }, { "5287.com", true }, - { "5288900.com", true }, { "529kb.com", true }, { "52b9.com", true }, { "52b9.net", true }, @@ -3171,7 +3262,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5364d.com", true }, { "5364jc.com", true }, { "536kb.com", true }, - { "5388900.com", true }, { "538vv.com", true }, { "53ningen.com", true }, { "540922.com", true }, @@ -3206,11 +3296,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5539z.com", true }, { "553z6.com", true }, { "555321365.com", true }, + { "55554048.com", true }, { "5555k8.com", true }, { "5555k8.net", true }, { "5556321.com", true }, { "5557035.com", true }, - { "5557552.com", true }, + { "5557552.com", false }, { "555b58.com", true }, { "555btt.com", true }, { "555k8.com", true }, @@ -3231,6 +3322,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "559z6.com", true }, { "55b58.com", true }, { "55d88.com", true }, + { "55k66.vip", true }, { "55ks.app", true }, { "55lc8.com", true }, { "56365t.com", true }, @@ -3246,6 +3338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5676321.com", true }, { "567666365.com", true }, { "567667.cc", true }, + { "56784048.com", true }, { "56877.com", true }, { "572kb.com", true }, { "575380.com", true }, @@ -3385,14 +3478,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5lc8.com", true }, { "5lc8.net", true }, { "5percentperweek.com", true }, + { "5sba.ru", true }, { "5stars.tv", true }, { "5thchichesterscouts.org.uk", true }, { "5y.fi", true }, - { "5yeb.com", true }, { "6004233.com", true }, - { "60062b.cc", false }, - { "60062h.cc", false }, - { "60062i.cc", false }, + { "60062b.cc", true }, + { "60062h.cc", true }, + { "60062i.cc", true }, { "600k8.com", true }, { "60160365.com", true }, { "602422.com", true }, @@ -3410,8 +3503,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "608vets.com", true }, { "609422.com", true }, { "60n13.com", true }, - { "611121.com", true }, - { "611125.com", true }, + { "611121.com", false }, + { "611125.com", false }, { "611135.com", true }, { "611165.com", true }, { "611195.com", true }, @@ -3463,7 +3556,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "625kb.com", true }, { "626380.com", true }, { "626422.com", true }, - { "628vv.com", true }, { "630422.com", true }, { "631422.com", true }, { "632017.com", true }, @@ -3542,9 +3634,47 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6365zj.com", true }, { "638566.com", true }, { "639422.com", true }, + { "6396000.com", true }, + { "63960000.com", true }, + { "63961111.com", true }, + { "639611111.com", true }, + { "6396222.com", true }, + { "63962222.com", true }, + { "639622222.com", true }, + { "6396333.com", true }, + { "63963333.com", true }, + { "639633333.com", true }, + { "6396444.com", true }, + { "63964444.com", true }, + { "639644444.com", true }, + { "63965555.com", true }, + { "639655555.com", true }, + { "639666666.com", true }, + { "63967777.com", true }, + { "639677777.com", true }, + { "63968888.com", true }, + { "639688888.com", true }, + { "63969999.com", true }, + { "639699999.com", true }, + { "6396aaa.com", true }, + { "6396bbb.com", true }, { "6396ccc.com", true }, + { "6396eee.com", true }, { "6396fff.com", true }, + { "6396ggg.com", true }, { "6396hhh.com", true }, + { "6396iii.com", true }, + { "6396jjj.com", true }, + { "6396ooo.com", true }, + { "6396qqq.com", true }, + { "6396rrr.com", true }, + { "6396sss.com", true }, + { "6396ttt.com", true }, + { "6396vvv.com", true }, + { "6396www.com", true }, + { "6396xxx.com", true }, + { "6396yyy.com", true }, + { "6396zzz.com", true }, { "63gaming.com", true }, { "640622.com", true }, { "640722.com", true }, @@ -3585,7 +3715,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "649822.com", true }, { "64bitgaming.de", true }, { "64d88.com", true }, - { "64d88.net", true }, { "64stacks.com", true }, { "65131a.com", true }, { "65131b.com", true }, @@ -3701,6 +3830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "663365z.com", false }, { "6639s.com", true }, { "663z6.com", true }, + { "664048.com", true }, { "6652566.com", true }, { "6658.fun", true }, { "665z6.com", true }, @@ -3718,14 +3848,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "666555bet.com", true }, { "666618.cc", true }, { "6666365q.com", true }, + { "66664048.com", true }, { "666648.com", false }, { "666668722.com", true }, { "6666sb.com", true }, { "6667035.com", true }, { "666777bet.com", true }, { "666888bet.com", true }, - { "66689j.com", false }, - { "6669255.com", false }, + { "66689j.com", true }, + { "6669255.com", true }, { "666999bet.com", true }, { "666am8.com", true }, { "666b58.com", true }, @@ -3733,6 +3864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "666k66.com", true }, { "666k8.com", true }, { "666k8.net", true }, + { "666ks.app", true }, { "666omg.com", true }, { "666zlong.com", true }, { "6671365.com", true }, @@ -3752,11 +3884,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "669z6.com", true }, { "66ag9.com", true }, { "66agks.com", true }, - { "66b.com", true }, { "66b58.com", true }, { "66bwf.com", true }, { "66d88.net", true }, { "66k66.ag", true }, + { "66k66.vip", true }, { "66lc8.com", true }, { "66lc8.net", true }, { "670102.com", true }, @@ -3901,7 +4033,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "678365cc.com", true }, { "678365t.com", true }, { "678678365.com", true }, - { "67877777.com", false }, + { "67877777.com", true }, + { "67894048.com", true }, { "678z6.com", true }, { "679422.com", true }, { "679660.com", true }, @@ -3915,15 +4048,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6848.com", true }, { "68522.com", true }, { "68522c.com", true }, - { "68522k.com", true }, - { "68522m.com", true }, - { "68522s.com", true }, + { "68522k.com", false }, + { "68522m.com", false }, + { "68522s.com", false }, { "68622.com", true }, - { "68622a.com", true }, - { "68622b.com", true }, - { "6863070.com", false }, + { "68622a.com", false }, + { "68622b.com", false }, + { "6863070.com", true }, { "686848.com", true }, - { "68722.com", true }, + { "68722.com", false }, { "688libo.com", true }, { "688z6.com", true }, { "68agks.com", true }, @@ -4032,10 +4165,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6lc8.net", true }, { "6lo.zgora.pl", true }, { "6t-montjoye.org", true }, + { "6thmarch.com", true }, { "6u55ooxpo38mnikkxqvbmwfwauiiv35bsmm-2yj.com", true }, { "6upagent.com", true }, { "6wbz.com", true }, - { "7.plus", true }, { "700.az", true }, { "7004233.com", true }, { "7007337.com", true }, @@ -4056,6 +4189,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "709129.com", true }, { "70d88.com", true }, { "70d88.net", true }, + { "70mpg.org", true }, { "7111365.com", true }, { "712433.com", true }, { "712kb.com", true }, @@ -4063,6 +4197,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "713387.com", true }, { "713433.com", true }, { "71365365.com", false }, + { "7139365.com", true }, { "713kb.com", true }, { "714133.com", true }, { "714533.com", true }, @@ -4126,16 +4261,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "743833.com", true }, { "74d88.com", true }, { "74th.jp", true }, - { "7552001.com", true }, - { "7552002.com", true }, - { "7552005.com", true }, - { "7552006.com", true }, - { "7552008.com", true }, - { "7552009.com", true }, - { "7552010.com", true }, - { "7552011.com", true }, - { "7552012.com", true }, - { "7552013.com", true }, + { "7552001.com", false }, + { "7552002.com", false }, + { "7552005.com", false }, + { "7552006.com", false }, + { "7552008.com", false }, + { "7552009.com", false }, + { "7552010.com", false }, + { "7552011.com", false }, + { "7552012.com", false }, + { "7552013.com", false }, { "755204.com", false }, { "755243.com", true }, { "755245.com", false }, @@ -4154,6 +4289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "762116.com", true }, { "763137.com", true }, { "76365365.com", false }, + { "7652.cc", true }, { "7654321c.com", false }, { "765666365.com", true }, { "7666321.com", true }, @@ -4188,6 +4324,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7776321.com", false }, { "7776365.com", true }, { "7777365q.com", true }, + { "77774048.com", true }, { "7777k8.com", true }, { "7777k8.net", true }, { "77789j.com", true }, @@ -4223,6 +4360,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7888813.com", true }, { "7888815.com", true }, { "7888821.com", true }, + { "78904048.com", true }, { "7891553.com", true }, { "7891997.com", true }, { "7893.net", true }, @@ -4251,6 +4389,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7k66.ag", true }, { "7k66.vip", true }, { "7ka.co", true }, + { "7ki.photography", true }, { "7kicks.com", true }, { "7kovrikov.ru", true }, { "7l00p.com", true }, @@ -4529,64 +4668,64 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8238d.com", true }, { "8239d.com", true }, { "827774.com", true }, - { "82781111.com", false }, - { "82783333.com", false }, - { "82784444.com", false }, - { "82785555.com", false }, - { "82786666.com", false }, - { "82789999.com", false }, - { "8278a.com", false }, - { "8278a.net", false }, + { "82781111.com", true }, + { "82783333.com", true }, + { "82784444.com", true }, + { "82785555.com", true }, + { "82786666.com", true }, + { "82789999.com", true }, + { "8278a.com", true }, + { "8278a.net", true }, { "8278aa.com", true }, - { "8278aaa.com", false }, - { "8278b.com", false }, - { "8278b.net", false }, - { "8278bb.com", false }, - { "8278bbb.com", false }, + { "8278aaa.com", true }, + { "8278b.com", true }, + { "8278b.net", true }, + { "8278bb.com", true }, + { "8278bbb.com", true }, { "8278bet.com", true }, - { "8278c.net", false }, - { "8278ccc.com", false }, - { "8278d.com", false }, - { "8278d.net", false }, - { "8278ddd.com", false }, - { "8278e.net", false }, - { "8278ee.com", false }, + { "8278c.net", true }, + { "8278ccc.com", true }, + { "8278d.com", true }, + { "8278d.net", true }, + { "8278ddd.com", true }, + { "8278e.net", true }, + { "8278ee.com", true }, { "8278eee.com", true }, - { "8278f.net", false }, - { "8278ff.com", false }, - { "8278fff.com", false }, - { "8278g.com", false }, - { "8278g.net", false }, - { "8278gg.com", false }, - { "8278ggg.com", false }, - { "8278h.net", false }, - { "8278hh.com", false }, - { "8278hhh.com", false }, - { "8278i.net", false }, - { "8278ii.com", false }, - { "8278iii.com", false }, - { "8278j.net", false }, - { "8278jj.com", false }, + { "8278f.net", true }, + { "8278ff.com", true }, + { "8278fff.com", true }, + { "8278g.com", true }, + { "8278g.net", true }, + { "8278gg.com", true }, + { "8278ggg.com", true }, + { "8278h.net", true }, + { "8278hh.com", true }, + { "8278hhh.com", true }, + { "8278i.net", true }, + { "8278ii.com", true }, + { "8278iii.com", true }, + { "8278j.net", true }, + { "8278jj.com", true }, { "8278jjj.com", true }, - { "8278k.com", false }, - { "8278kk.com", false }, - { "8278l.com", false }, - { "8278ll.com", false }, - { "8278m.com", false }, - { "8278mm.com", false }, - { "8278nn.com", false }, - { "8278oo.com", false }, - { "8278pp.com", false }, - { "8278qq.com", false }, - { "8278rr.com", false }, - { "8278ss.com", false }, - { "8278tt.com", false }, - { "8278w.com", false }, - { "8278ww.com", false }, - { "8278y.com", false }, - { "8278yy.com", false }, - { "8286hg.com", false }, - { "8289hg.com", false }, + { "8278k.com", true }, + { "8278kk.com", true }, + { "8278l.com", true }, + { "8278ll.com", true }, + { "8278m.com", true }, + { "8278mm.com", true }, + { "8278nn.com", true }, + { "8278oo.com", true }, + { "8278pp.com", true }, + { "8278qq.com", true }, + { "8278rr.com", true }, + { "8278ss.com", true }, + { "8278tt.com", true }, + { "8278w.com", true }, + { "8278ww.com", true }, + { "8278y.com", true }, + { "8278yy.com", true }, + { "8286hg.com", true }, + { "8289hg.com", true }, { "82ag88.com", true }, { "82kb88.com", true }, { "83365365.com", true }, @@ -4627,8 +4766,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "85kb88.com", true }, { "8602010.com", true }, { "8602012.com", true }, + { "8602013.com", true }, { "8602014.com", true }, + { "8602015.com", true }, { "8602016.com", true }, + { "8602017.com", true }, { "8602018.com", true }, { "8602019.com", true }, { "8602020.com", true }, @@ -4636,6 +4778,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "86086011.com", true }, { "86086022.com", true }, { "86086033.com", true }, + { "86086044.com", true }, { "86086055.com", true }, { "86086066.com", true }, { "86086077.com", true }, @@ -4670,6 +4813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "861365y.com", true }, { "861365z.com", true }, { "861kb.com", true }, + { "86286286.com", true }, { "86499.com", true }, { "8649955.com", true }, { "8649966.com", true }, @@ -4708,21 +4852,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "877027.com", true }, { "877791.com", true }, { "877z6.com", true }, - { "878365aa.com", false }, - { "878365app.com", false }, - { "878365b.com", false }, - { "878365bb.com", false }, - { "878365c.com", false }, - { "878365cc.com", false }, - { "878365cn.com", true }, - { "878365d.com", false }, - { "878365dd.com", false }, - { "878365ee.com", false }, - { "878365ii.com", false }, - { "878365jj.com", false }, - { "878365ll.com", false }, - { "878365mm.com", false }, - { "878365nn.com", false }, + { "878365aa.com", true }, + { "878365app.com", true }, + { "878365b.com", true }, + { "878365bb.com", true }, + { "878365c.com", true }, + { "878365cc.com", true }, + { "878365d.com", true }, + { "878365dd.com", true }, + { "878365ee.com", true }, + { "878365ii.com", true }, + { "878365jj.com", true }, + { "878365ll.com", true }, + { "878365mm.com", true }, + { "878365nn.com", true }, { "878989.com", true }, { "87ag9.com", true }, { "87kb88.com", true }, @@ -4781,6 +4924,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8850d88.com", true }, { "8850ks.com", true }, { "8851d88.com", true }, + { "8851ks.com", true }, { "88522am.com", true }, { "885287.com", true }, { "8852d.com", true }, @@ -4805,28 +4949,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8861ks.com", true }, { "8862d.com", true }, { "8862ks.com", true }, - { "886666b.com", false }, - { "886666d.com", false }, - { "886666e.com", false }, - { "886666f.com", false }, - { "886666g.com", false }, - { "886666j.com", false }, - { "886666k.com", false }, - { "886666l.com", false }, - { "886666m.com", false }, - { "886666n.com", false }, - { "886666o.com", false }, - { "886666p.com", false }, - { "886666q.com", false }, - { "886666r.com", false }, - { "886666s.com", false }, - { "886666t.com", false }, - { "886666u.com", false }, - { "886666v.com", false }, - { "886666w.com", false }, - { "886666x.com", false }, - { "886666y.com", false }, - { "886666z.com", false }, + { "886666b.com", true }, + { "886666d.com", true }, + { "886666e.com", true }, + { "886666f.com", true }, + { "886666g.com", true }, + { "886666j.com", true }, + { "886666k.com", true }, + { "886666l.com", true }, + { "886666m.com", true }, + { "886666n.com", true }, + { "886666o.com", true }, + { "886666p.com", true }, + { "886666q.com", true }, + { "886666r.com", true }, + { "886666s.com", true }, + { "886666t.com", true }, + { "886666u.com", true }, + { "886666v.com", true }, + { "886666w.com", true }, + { "886666x.com", true }, + { "886666y.com", true }, + { "886666z.com", true }, { "8866d88.com", true }, { "8868ks.com", true }, { "8869ks.com", true }, @@ -4867,26 +5011,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "887k66.com", true }, { "887z6.com", true }, { "8880ks.com", true }, - { "8881234j.com", false }, + { "8881234j.com", true }, { "8881ks.com", true }, - { "888234j.com", false }, + { "888234j.com", true }, { "8882ks.com", true }, { "888321365.com", true }, - { "8883456j.com", false }, - { "888345j.com", false }, + { "8883456j.com", true }, + { "888345j.com", true }, { "8884553.com", true }, - { "8884567j.com", false }, - { "888456j.com", false }, + { "8884567j.com", true }, + { "888456j.com", true }, { "88851333.com", true }, - { "888567j.com", false }, + { "888567j.com", true }, { "8885ks.com", true }, { "888666pj.com", true }, - { "8886789j.com", false }, + { "8886789j.com", true }, { "8886ks.com", true }, { "8887ks.com", true }, { "88881.pw", true }, { "8888209.com", true }, { "8888365q.com", true }, + { "88884048.com", true }, { "888888722.com", true }, { "88889822.com", true }, { "8888esb.com", true }, @@ -4899,7 +5044,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "888funcity.com", true }, { "888funcity.net", true }, { "888k66.com", true }, - { "888xpjxpj.com", true }, + { "888xpjxpj.com", false }, { "8890d.com", true }, { "8890ks.com", true }, { "8891d.com", true }, @@ -4925,7 +5070,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "88d.com", true }, { "88djl.cc", true }, { "88home9.com", true }, + { "88k66.vip", true }, { "88kash.com", true }, + { "88kb.app", true }, { "88kb88.com", true }, { "88laohu.cc", true }, { "88laohu.com", true }, @@ -5219,11 +5366,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918iz.com", true }, { "918ji.com", true }, { "918jt.co", true }, - { "918jwo.com", true }, { "918kissinw.com", true }, { "918kx.com", true }, - { "918ll.com", true }, - { "918lzoz.com", true }, { "918ma.com", true }, { "918mc.com", true }, { "918md10.com", true }, @@ -5250,8 +5394,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918qs.com", true }, { "918qz.com", true }, { "918rh.com", true }, - { "918rs.com", true }, - { "918rt.com", true }, { "918rw.com", true }, { "918sa.com", true }, { "918sj.com", true }, @@ -5412,6 +5554,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "939394.org", true }, { "9397.com", false }, { "9397dh.com", false }, + { "9397e.com", false }, { "9397hb.com", true }, { "9397hd.com", false }, { "9397l.com", false }, @@ -5528,9 +5671,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "956jj.com", true }, { "95am8.com", true }, { "95kb88.com", true }, - { "96002.com", false }, + { "96002.com", true }, { "96002e.com", true }, - { "961705.com", false }, + { "961705.com", true }, { "9617818.com", true }, { "9617818.net", true }, { "962312.com", true }, @@ -5563,7 +5706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9721ee.com", false }, { "9721f.com", true }, { "9721ff.com", true }, - { "9721g.com", true }, + { "9721g.com", false }, { "9721gg.com", true }, { "9721h.com", true }, { "9721hd.com", false }, @@ -5584,6 +5727,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9721p.com", true }, { "9721pp.com", true }, { "9721q.com", true }, + { "9721yy.com", false }, { "972422.com", true }, { "9728a.co", true }, { "9728aa.co", true }, @@ -5678,7 +5822,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "98laba.net", false }, { "98lc98.net", true }, { "9906753.net", true }, - { "99123j.com", false }, + { "99123j.com", true }, { "9918883.com", true }, { "991z6.com", true }, { "992z6.com", true }, @@ -5686,29 +5830,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9933445.com", true }, { "99365t.com", true }, { "993z6.com", true }, - { "99456j.com", false }, + { "99456j.com", true }, { "9950p.com", true }, { "99599.fi", true }, { "99599.net", true }, { "995z6.com", true }, - { "9968508.com", true }, - { "9968838.com", true }, { "9968909.com", false }, { "9968aaa.com", true }, - { "9968bbb.com", true }, - { "9968ll.com", true }, - { "9968nn.com", true }, - { "9968pp.com", true }, - { "9968ttt.com", true }, { "9968xl.com", true }, - { "9968yyy.com", true }, { "996z6.com", true }, { "9977432.com", true }, - { "99789j.com", false }, + { "99789j.com", true }, { "997z6.com", true }, { "998081.com", true }, - { "9988551.com", false }, - { "9988959.com", false }, + { "9988551.com", true }, + { "9988959.com", true }, { "9988ty.com", true }, { "998k66.com", true }, { "998sa.com", true }, @@ -5724,13 +5860,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99989796.net", true }, { "9998k8.com", true }, { "9999365q.com", true }, + { "99994048.com", true }, { "99998522.com", true }, { "99999822.com", true }, { "999998722.com", true }, { "9999k8.com", true }, { "9999k8.net", true }, + { "999b58.com", true }, { "999btt.net", true }, { "999k66.com", true }, + { "999ks.app", true }, { "999salon.co", true }, { "999salon.com", true }, { "999zlong.com", true }, @@ -5738,7 +5877,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99buffets.com", true }, { "99d88.com", true }, { "99kb88.com", true }, - { "99lib.net", true }, { "99naturalfoods.de", true }, { "99qp.org", true }, { "99rst.org", true }, @@ -5747,6 +5885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9ag88.com", true }, { "9agks.com", true }, { "9allery.com", true }, + { "9articles.org", true }, { "9bet86.com", true }, { "9bingo.net", true }, { "9box.jp", true }, @@ -5808,7 +5947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k322.com", true }, { "9k323.com", true }, { "9k325.com", true }, - { "9k326.com", true }, { "9k327.com", true }, { "9k328.com", true }, { "9k329.com", true }, @@ -5821,16 +5959,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k362.com", true }, { "9k363.com", true }, { "9k366.com", true }, - { "9k367.com", true }, { "9k368.com", true }, { "9k372.com", true }, { "9k373.com", true }, { "9k375.com", true }, { "9k376.com", true }, - { "9k377.com", true }, { "9k378.com", true }, { "9k379.com", true }, - { "9k382.com", true }, { "9k383.com", true }, { "9k385.com", true }, { "9k386.com", true }, @@ -5839,32 +5974,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k389.com", true }, { "9k392.com", true }, { "9k393.com", true }, - { "9k395.com", true }, { "9k397.com", true }, { "9k398.com", true }, - { "9k399.com", true }, { "9k562.com", true }, { "9k566.com", true }, { "9k568.com", true }, { "9k569.com", true }, { "9k572.com", true }, { "9k573.com", true }, - { "9k575.com", true }, { "9k577.com", true }, - { "9k578.com", true }, - { "9k579.com", true }, - { "9k583.com", true }, { "9k585.com", true }, { "9k586.com", true }, { "9k587.com", true }, { "9k589.com", true }, - { "9k592.com", true }, - { "9k622.com", true }, - { "9k623.com", true }, { "9k625.com", true }, { "9k626.com", true }, { "9k627.com", true }, - { "9k628.com", true }, { "9k629.com", true }, { "9k632.com", true }, { "9k633.com", true }, @@ -5873,7 +5998,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k637.com", true }, { "9k638.com", true }, { "9k639.com", true }, - { "9k652.com", true }, { "9k653.com", true }, { "9k655.com", true }, { "9k656.com", true }, @@ -5887,7 +6011,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k668.com", true }, { "9k669.com", true }, { "9k672.com", true }, - { "9k673.com", true }, { "9k675.com", true }, { "9k677.com", true }, { "9k679.com", true }, @@ -5905,7 +6028,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k823.com", true }, { "9k825.com", true }, { "9k826.com", true }, - { "9k827.com", true }, { "9k828.com", true }, { "9k829.com", true }, { "9k832.com", true }, @@ -5920,7 +6042,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k858.com", true }, { "9k859.com", true }, { "9k862.com", true }, - { "9k863.com", true }, { "9k865.com", true }, { "9k866.com", true }, { "9k867.com", true }, @@ -5929,9 +6050,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k872.com", true }, { "9k873.com", true }, { "9k875.com", true }, - { "9k876.com", true }, { "9k877.com", true }, - { "9k878.com", true }, { "9k879.com", true }, { "9k882.com", true }, { "9k883.com", true }, @@ -5961,7 +6080,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-1basements.com", true }, { "a-1indianawaterproofing.com", true }, { "a-allard.be", true }, + { "a-bicycleshop.com", true }, { "a-care.net", true }, + { "a-h-p.de", true }, { "a-invest.de", true }, { "a-ix.net", true }, { "a-msystems.com", true }, @@ -5971,7 +6092,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-tes-cotes.com", true }, { "a-wife.net", true }, { "a-ztransmission.com", true }, - { "a00228.com", false }, + { "a00228.com", true }, { "a04gameapp.com", true }, { "a04webapp.com", true }, { "a06gameapp.com", true }, @@ -6017,6 +6138,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a50666.com", true }, { "a50999.com", true }, { "a5197.co", true }, + { "a632079.me", true }, { "a66.la", true }, { "a6619.com", true }, { "a6621.com", true }, @@ -6049,7 +6171,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a70777.com", true }, { "a70888.com", true }, { "a70999.com", true }, - { "a77018.com", false }, + { "a77018.com", true }, { "a7m2.me", true }, { "a81365.com", true }, { "a82365.com", true }, @@ -6079,7 +6201,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aaben-bank.dk", true }, { "aabenbank.dk", true }, { "aabenjaminjewelry.com", true }, - { "aacfree.com", true }, { "aacs-design.com", true }, { "aadv.com.br", true }, { "aaex.uk", true }, @@ -6090,12 +6211,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aaltocapital.com", true }, { "aamwa.com", true }, { "aanbieders.ga", true }, + { "aandachtsmeditatie.nl", true }, { "aandkevents.co.uk", true }, { "aanmpc.com", true }, { "aanwp.com", true }, { "aaomidi.com", true }, { "aapar.nl", true }, - { "aarailfan.com", true }, { "aardvarksoep.nl", true }, { "aariefhaafiz.com", true }, { "aarklendoia.com", true }, @@ -6108,6 +6229,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aaronhorler.com.au", true }, { "aaronkimmig.de", true }, { "aaronroyle.com", true }, + { "aaronsilber.me", true }, { "aarquiteta.com.br", true }, { "aartsplastics.nl", true }, { "aarvinproperties.com", true }, @@ -6171,7 +6293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abdullahavci.com.tr", true }, { "abdullahavci.net.tr", true }, { "abdullahzubayerofficial.ml", true }, - { "abdulrahman.eu", true }, + { "abdulrahman.eu", false }, { "abdulwahaab.ca", true }, { "abdurrahmangazidis.tk", true }, { "abdurrehman.tk", true }, @@ -6227,6 +6349,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abmledger.ca", true }, { "abmtax.ca", true }, { "abn-consultants.ie", true }, + { "abnamropensioenen.nl", true }, { "abnehmen.com", true }, { "abobuch.de", true }, { "aboces.org", true }, @@ -6284,6 +6407,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abox-kb.com", true }, { "abpis.hr", true }, { "abracadabra.co.jp", false }, + { "abrafast.com", true }, { "abrah.am", true }, { "abrahametalero.tk", true }, { "abraxan.pro", true }, @@ -6294,6 +6418,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abrition.com", true }, { "abseits.org", true }, { "absolem.cc", false }, + { "absoluav.com", true }, + { "absoluconseils.com", true }, + { "absolucopine.com", true }, + { "absolugroupe.com", true }, + { "absoluphoto.com", true }, { "absolutcruceros.com", true }, { "absoluteautobody.com", true }, { "absolutedouble.co.uk", true }, @@ -6305,7 +6434,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abstimmen.online", true }, { "abstractbarista.com", true }, { "abstractbarista.net", true }, - { "abstraction21.com", true }, { "absturztau.be", true }, { "absturztaube.ch", true }, { "absynthe-inquisition.fr", true }, @@ -6372,6 +6500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accessibilityguidelines.com", true }, { "accessibletravelclub.com", true }, { "accesskeycloning.com", true }, + { "accessnetworks.com", true }, { "accessoirescheveuxchic.com", true }, { "accessoripersmartphone.it", true }, { "acchicocchi.com", true }, @@ -6414,6 +6543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acemypaper.com", true }, { "acen.eu", true }, { "acerentalandsales.com", true }, + { "acerislaw.com", true }, { "aceshop702.com", true }, { "acessibilidadebr.com.br", true }, { "acessoeducacao.com", true }, @@ -6439,7 +6569,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "achterstieg.dedyn.io", true }, { "achtzehn.de", true }, { "achtzehn.eu", true }, - { "achtzehnterachter.de", true }, { "achtzig20.de", true }, { "achwo.de", true }, { "acid.ninja", true }, @@ -6455,6 +6584,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acmegamer.com", true }, { "acmi.fr", true }, { "acneintelligence.com", true }, + { "acnpacific.com", true }, { "acodess.com", true }, { "aconnor.xyz", true }, { "acordes.online", true }, @@ -6471,6 +6601,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acperu.ch", false }, { "acpica.org", true }, { "acpinformatique.fr", true }, + { "acprail.com.vn", true }, { "acquaparrucchieri.it", true }, { "acquire.media", true }, { "acquisition.gov", true }, @@ -6505,6 +6636,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "action-verite.fr", true }, { "actioncleaningnd.com", true }, { "actioncoachignite.co.za", true }, + { "actioncutprint.com", true }, { "actionfinancialservices.net", true }, { "actionlabs.net", true }, { "actionmadagascar.ch", false }, @@ -6561,6 +6693,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acupunturamadrid.xyz", true }, { "acupunturavalencia.xyz", true }, { "acus.gov", true }, + { "acutehoest.nl", true }, { "acutewealthadvisors.com", true }, { "acwcerts.co.uk", true }, { "acwi.gov", true }, @@ -6596,6 +6729,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adamfontenot.com", true }, { "adamgibbins.com", true }, { "adamh.us", true }, + { "adamh.website", true }, { "adamjoycegames.co.uk", true }, { "adamkostecki.de", true }, { "adamlee.com", true }, @@ -6620,6 +6754,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adarshcloud.in", true }, { "adarshthapa.in", true }, { "adasbench.com", true }, + { "adata.kz", true }, { "adativos.com.br", true }, { "adawolfa.cz", true }, { "adayinthelifeof.nl", true }, @@ -6658,6 +6793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adelightfulglow.com", true }, { "adelina.com.br", true }, { "adeline.mobi", true }, + { "adenos.in", true }, { "adentalsolution.com", true }, { "adeon.ml", true }, { "adept-elearning.com", true }, @@ -6673,6 +6809,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adhocracy.plus", true }, { "adi.com.au", true }, { "adi.net.au", true }, + { "adidas-2020-spring.com", true }, { "adidasrunningpartners.com", true }, { "adiehard.party", false }, { "adimaja.com", true }, @@ -6712,10 +6849,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "admirable.pro", true }, { "admody.com", true }, { "admongo.gov", true }, + { "adn-recrutement.fr", true }, { "adnanotoyedekparca.com", true }, { "adnexa.it", true }, { "adnmb1.com", true }, { "adnolesh.com", true }, + { "adnotam.ch", true }, { "adnseguros.es", true }, { "adoll.ml", true }, { "adollarseo.com", true }, @@ -6736,8 +6875,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adorecricket.com", true }, { "adorewe.com", true }, { "adorno-gymnasium.de", true }, + { "adotta.me", true }, { "adoucisseur.shop", true }, { "adpkdsim.org", true }, + { "adpot.xyz", true }, { "adquisitio.co.uk", true }, { "adquisitio.es", true }, { "adquisitio.fr", true }, @@ -6746,6 +6887,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adra.com", true }, { "adrafinil.wiki", true }, { "adrans.com", true }, + { "adregain.com", true }, + { "adregain.ru", true }, { "adrenalin.od.ua", true }, { "adrenalin.travel", true }, { "adrenaline-gaming.ru", true }, @@ -6759,16 +6902,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adrianoansaldi.it", true }, { "adrianobarbosa.xyz", true }, { "adrianseo.ro", false }, + { "adriarae.xyz", true }, { "adriatic.hr", true }, { "adriatrans.ga", true }, { "adrienjacquierbret.com", true }, { "adrienkohlbecker.com", true }, { "adriennesmiles.com", true }, - { "adrinet.tk", true }, { "adrup.com", true }, { "adsamcik.com", true }, { "adsbouncycastles.co.uk", true }, { "adsbtc.org", true }, + { "adsense-arbitrage.com", true }, { "adsib.gob.bo", true }, { "adsl2meg.fr", true }, { "adsviews.gq", true }, @@ -6850,6 +6994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "advst.uk", true }, { "advtran.com", true }, { "adware.pl", false }, + { "adwokatkosterka.pl", true }, { "adwokatzdunek.pl", true }, { "adws.io", true }, { "adxperience.com", true }, @@ -6884,6 +7029,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ae86zx.com", true }, { "aeb.io", true }, { "aebian.org", true }, + { "aebleskoven.dk", true }, { "aecexpert.fr", true }, { "aecis.org", true }, { "aedollon.com", true }, @@ -6900,6 +7046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aehe.us", true }, { "aei.co.uk", true }, { "aeksistem.com", true }, + { "aelisya.net", true }, { "aelurus.com", true }, { "aenterprise.info", true }, { "aeon.co", true }, @@ -6949,17 +7096,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afavre.io", true }, { "afbeelding.im", true }, { "afbeeldinguploaden.nl", true }, + { "afbrunswick.com", true }, { "afbtoto.com", true }, + { "afc-capital.mx", true }, { "afcmrs.org", true }, { "afcmrsfeedback.org", true }, { "afcmrstest.org", true }, - { "afcompany.it", true }, { "afcurgentcarelyndhurst.com", true }, { "affaire.com", true }, { "affairefacile.net", true }, { "affarsnatverk.nu", true }, + { "affcoupon.com", true }, { "affektblog.de", true }, - { "affichagepub3.com", true }, { "affiliates.trade", true }, { "affiliatetest.azurewebsites.net", true }, { "affilie.de", true }, @@ -6986,7 +7134,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afgaim.com", true }, { "afghan.dating", true }, { "afgn.com.ua", true }, - { "afharvey.com", true }, { "afi-business-consulting.com", true }, { "aficards.com", true }, { "aficionados.com.br", true }, @@ -6994,12 +7141,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afinadoronline.com.br", true }, { "afinaudio.com", true }, { "afinterio.com", true }, + { "aflattr.com", true }, { "aflebedevo.tk", true }, { "aflfreebets.com", true }, { "aflowershop.ca", true }, { "afmtevents.com", true }, { "afonso.io", true }, { "afp548.com", true }, + { "afpayday.com", true }, { "afrakib.com", true }, { "afri.cc", true }, { "africa.dating", true }, @@ -7013,7 +7162,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afrikmag.com", true }, { "afrishade.com", true }, { "afrodigital.uk", true }, - { "afs-asso.org", true }, { "afscheidsportret.nl", true }, { "afslankspecialist.nl", true }, { "after.digital", true }, @@ -7218,7 +7366,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ag82001.com", true }, { "ag82006.com", true }, { "ag82007.com", true }, - { "ag82008.com", true }, { "ag82011.vip", true }, { "ag82015.com", true }, { "ag82018.cc", true }, @@ -7336,8 +7483,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agaa35.com", true }, { "agaa41.com", true }, { "agagent.vip", true }, - { "agahi90.ir", true }, { "agalliasis.ch", false }, + { "agambarta.com", true }, { "agamsecurity.ch", false }, { "agatajanik.de", true }, { "agate.pw", true }, @@ -7345,9 +7492,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agdalieso.com.ba", true }, { "agds.pw", true }, { "age-encryption.org", true }, + { "age.hk", false }, { "agechecker.net", true }, { "agefriendlyri.org", true }, - { "ageg.ca", true }, { "agelesscitizen.com", true }, { "agelesscitizens.com", true }, { "agemfis.com", true }, @@ -7358,8 +7505,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agencia.cat", true }, { "agencia.pro", true }, { "agenciacorujadesign.com.br", true }, + { "agenciadeempregosdourados.com.br", true }, { "agenciafiscal.pe", true }, { "agencyalacarte.com", true }, + { "agencybeam.com", true }, { "agencyinmotion.com", true }, { "agencymanager.be", true }, { "agencytsunami.com", true }, @@ -7367,7 +7516,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agenda21senden.de", true }, { "agendaspectacles.fr", true }, { "agent-grow.com", true }, - { "agenteit.com", true }, { "agentprocessing.com", true }, { "agentrisk.com", true }, { "agentur-pottkinder.de", true }, @@ -7391,7 +7539,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agilebits.com", true }, { "agilebits.net", false }, { "agilecraft.com", true }, - { "agilesurvey.ch", true }, { "agileui.com", true }, { "agiley.se", true }, { "agilicus.ca", true }, @@ -7548,9 +7695,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agreor.com", true }, { "agrichamber.com.ua", true }, { "agriculture-schools.com", true }, - { "agridir.site", true }, { "agrikulturchic.com", true }, { "agrios.de", true }, + { "agripartner.fr", true }, { "agriquads.nl", true }, { "agro-forestry.net", true }, { "agrobaza.com.ua", true }, @@ -7572,7 +7719,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agsogou.com", true }, { "agsun6.com", true }, { "aguiascarecas.org", true }, - { "aguijara.com", true }, { "agung-furniture.com", true }, { "agvip1000.com", true }, { "agvip168.com", true }, @@ -7665,7 +7811,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aignermunich.com", true }, { "aignermunich.de", true }, { "aignermunich.jp", true }, - { "aiicy.org", true }, { "aiinsurance.io", true }, { "aiinsurance.xyz", true }, { "aijsk.com", true }, @@ -7673,6 +7818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aikenpromotions.com", true }, { "aiki.de", true }, { "aiki.do", true }, + { "aiki.tk", false }, { "aikido-club-limburg.de", true }, { "aikido-kiel.de", true }, { "aikido-linz.at", true }, @@ -7685,10 +7831,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aimeeandalec.com", true }, { "aimgroup.co.tz", true }, { "aimi-salon.com", true }, - { "aimiastestseries.com", true }, { "aimotive.com", true }, { "aimrom.org", true }, - { "aimstoreglobal.com", true }, { "ainfographie.com", true }, { "ainvest.de", true }, { "ainzu.net", true }, @@ -7701,6 +7845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "air-shots.ch", false }, { "air-techniques.fr", true }, { "air-we-go.co.uk", true }, + { "airalamo.com", true }, { "airbnb.ae", true }, { "airbnb.at", true }, { "airbnb.be", true }, @@ -7849,7 +7994,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ajarope.com", true }, { "ajaxed.net", true }, { "ajaxtime.tk", true }, - { "ajbenet.com", true }, { "ajbouncycastles.co.uk", true }, { "ajces.com", true }, { "ajdiaz.me", true }, @@ -7956,7 +8100,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alaboard.com", true }, { "alabordage.fr", true }, { "alacriti.com", true }, - { "alacritylaw.com", true }, { "aladdin.ie", true }, { "aladdinschools.appspot.com", true }, { "aladintechnologies.tk", true }, @@ -7975,7 +8118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alan.moe", false }, { "alana.com.ua", true }, { "alanberger.me.uk", true }, - { "aland.co.uk", true }, { "alandoyle.com", true }, { "alanhua.ng", true }, { "alanhuang.name", true }, @@ -8001,11 +8143,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alaxyjewellers.co.za", true }, { "alb-flirt.de", true }, { "albagora.nl", true }, + { "albalat.cat", true }, + { "albalat.info", true }, { "albalatedelarzobispo.tk", true }, { "albanesi.it", true }, { "albanycountydems.com", true }, { "albareport.com", true }, - { "albatrosswear.com", true }, { "albbounce.co.uk", true }, { "albergolafiorita.com", true }, { "alberoraydolap.com", true }, @@ -8032,6 +8175,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alchemy.gr", true }, { "alchemyvfx.com", true }, { "alchimic.ch", false }, + { "alcites.com", true }, { "alcnutrition.com", true }, { "alco-united.com", true }, { "alcobendas.tk", true }, @@ -8141,6 +8285,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alfaproweb.fr", true }, { "alfastone.com.ua", true }, { "alfavit.cf", true }, + { "alfiebarker.com", true }, { "alforto.nl", true }, { "alfratehotelcampiglio.it", true }, { "alfred-figge.de", true }, @@ -8189,9 +8334,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aliim.gdn", true }, { "alikulov.me", true }, { "alilialili.ga", true }, + { "alimentosmcf.com", true }, { "alimentsduquebecaumenu.com", true }, { "alinasmusicstudio.com", true }, { "alinbu.net", true }, + { "alineasatu.com", true }, { "alineonline.tk", true }, { "alinode.com", true }, { "aliorange.com", true }, @@ -8217,7 +8364,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alkamitech.com", true }, { "alkel.info", true }, { "alkemi-si.fr", true }, - { "alko-centr.ru", true }, { "alko-stop.ml", true }, { "alkopedia.tk", true }, { "alkor.tk", true }, @@ -8256,7 +8402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allcarepharmacy.com", true }, { "allcarespecialty.pharmacy", true }, { "allcinema.net", true }, - { "allcleaningservice.org", true }, { "allcleanservices.ca", true }, { "allcloud.com", true }, { "allcountyins.com", true }, @@ -8271,7 +8416,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allenarchive.com", true }, { "allenscaravans.co.uk", true }, { "allensun.org", true }, - { "allentertainment.de", true }, { "allenwillis.ga", true }, { "allerstorfer.at", true }, { "alles-nur-ge.cloud", true }, @@ -8282,6 +8426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allforyou.at", true }, { "allfundsconnect.com", true }, { "allgaragefloors.com", true }, + { "allgemeinarzt-wenta-bralla.de", true }, { "allgosts.ru", true }, { "allgovernmentjobs.in", true }, { "allgrass.net", true }, @@ -8327,7 +8472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allpointsheating.com", true }, { "allproptonline.com", true }, { "allpussynow.com", true }, - { "allrad-buck.de", false }, + { "allrad-buck.de", true }, { "allram.info", true }, { "allright.tk", true }, { "allroundpvp.net", true }, @@ -8347,7 +8492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allstarcashforcars.com", true }, { "allstarpartyinflatables.co.uk", true }, { "allstarquilts.com", true }, - { "allstorebrasil.com.br", true }, { "allsun.online", true }, { "allsurpl.us", true }, { "allsync.com", true }, @@ -8364,6 +8508,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allthingswild.co.uk", true }, { "alltubedownload.net", true }, { "allurebikerental.com", true }, + { "alluremedicalaesthetic.com", true }, { "allurescarves.com", true }, { "alluvion.studio", true }, { "allvips.ru", false }, @@ -8435,6 +8580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alphasall.com", true }, { "alphasib.ru", true }, { "alphassl.de", true }, + { "alphatrash.de", true }, { "alphavote-avex.com", true }, { "alphavote.com", true }, { "alphera.nl", true }, @@ -8509,22 +8655,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altporn.xyz", true }, { "altrui.st", true }, { "altsdigital.com", true }, - { "altstipendiaten.de", true }, { "alttrackr.com", true }, { "altunbas.info", true }, + { "alukard999.tk", true }, { "aluminium-express.ru", true }, { "alumni-kusa.jp", true }, + { "alunara.eu", true }, { "alupferd.de", true }, { "aluroof.eu", true }, { "alushta-vostorg.tk", true }, { "alvaiazere.net", true }, - { "alvcs.com", true }, { "alviano.com", false }, { "alvicom.hu", true }, { "alvimedika.com.ua", true }, { "alvn.ga", true }, { "alvosec.com", true }, { "alwa.fi", true }, + { "always.com.mx", true }, { "alwayshowher.tk", true }, { "alwayslookingyourbest.com", true }, { "alwaysmine.fi", true }, @@ -8553,6 +8700,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "am22i6xaf1m2a5m9k.xyz", true }, { "am2s.fr", true }, { "am3.se", true }, + { "am5.pl", true }, { "am5039.com", true }, { "am5188.com", true }, { "am5199.com", true }, @@ -8575,7 +8723,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "am8898.net", true }, { "am8info.com", true }, { "am9588.com", true }, - { "am9d104.com", true }, { "ama.ne.jp", true }, { "amaderelectronics.com", true }, { "amadoraslindas.com", true }, @@ -8585,6 +8732,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amagical.net", false }, { "amaiz.com", true }, { "amal2019.com", true }, + { "amalfi5stars.com", true }, { "amalficoastransfers.it", true }, { "amalfilapiazzetta.it", true }, { "amalfipositanoboatrental.com", true }, @@ -8614,6 +8762,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amati.solutions", true }, { "amato.tk", true }, { "amatsuka.com", true }, + { "amatzen.dk", true }, { "amauf.de", true }, { "amautorepairwa.com", true }, { "amazetimberfurniture.com.au", true }, @@ -8678,11 +8827,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "americanmediainstitute.com", true }, { "americanreservations.us", true }, { "americans.cam", true }, - { "americansforcommunitydevelopment.org", true }, { "americanunicornparty.tk", true }, { "americanwater.lk", true }, { "americasbasementcontractor.com", true }, { "americasdirector.com", true }, + { "americathebeautifulquarters.gov", true }, { "americkykongres.cz", true }, { "americoadvogados.com.br", true }, { "americorps.gov", true }, @@ -8694,9 +8843,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ames.gq", true }, { "amesgen.de", true }, { "amesvacuumrepair.com", true }, - { "amethystbodyart.com", true }, { "amethystcards.co.uk", true }, { "amethystdevelopment.co.uk", true }, + { "amethystwebsitedesign.com", true }, { "ameza.co.uk", true }, { "ameza.com.mx", true }, { "ameza.io", true }, @@ -8745,6 +8894,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amministratorecondominio.roma.it", true }, { "ammobrand.com", true }, { "amnesty-bf.org", true }, + { "amnesty-in-bewegung.de", true }, { "amnesty.org.au", true }, { "amnesy.fr", true }, { "amobileway.co.uk", true }, @@ -8768,6 +8918,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amplead.com", true }, { "ampledesigners.com", true }, { "ampleinfographics.com", true }, + { "ampleitsolutions.com.au", true }, { "ampleroads.com", true }, { "ampproject.com", true }, { "ampproject.org", true }, @@ -8791,6 +8942,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amusa.cl", true }, { "amv.su", true }, { "amvip9.com", true }, + { "amvisualgraphics.com", true }, { "amxpj888.com", false }, { "amyfoundhermann.com", true }, { "amymabel.com", true }, @@ -8801,9 +8953,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amzn.rocks", true }, { "an-alles-gedacht.de", true }, { "an7hrax.se", true }, - { "anabolic.co", false }, { "anabolickdieta.ga", true }, { "anabolics.tk", true }, + { "anabolitics.com", true }, { "anachristinarodriguez.com", true }, { "anacreon.de", true }, { "anacruz.es", true }, @@ -8812,7 +8964,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anageorgia.com", true }, { "anagramma.tk", true }, { "anaiscoachpersonal.es", true }, - { "anaisfae.art", true }, { "anakin.ca", true }, { "analangelsteen.com", true }, { "analgesia.net", true }, @@ -8836,8 +8987,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anankecosmetics.com", true }, { "ananswer.org", true }, { "anantshri.info", true }, - { "ananyoo.com", true }, { "anarajaoui.ma", true }, + { "anarchista.top", true }, { "anarchistischegroepnijmegen.nl", false }, { "anarchistos.tk", true }, { "anarcho-copy.org", true }, @@ -8850,7 +9001,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anastasia-shamara.ru", true }, { "anatoray.com", true }, { "anayarealm.com", true }, - { "anblik.com", true }, { "ance.lv", false }, { "ancel.io", true }, { "ancestramil.fr", true }, @@ -8860,7 +9010,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anciennes-automobiles.fr", true }, { "anciens.org", true }, { "ancient-gates.de", true }, - { "ancient-times.info", true }, { "ancientnorth.com", true }, { "ancientnorth.nl", true }, { "ancolies-andre.com", false }, @@ -8972,7 +9121,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andromeda.se", true }, { "andromedacenter.com", true }, { "andronika.net", false }, - { "androticsdirect.com", true }, { "androtix.com", true }, { "andruvision.cz", true }, { "andsat.org", true }, @@ -8996,7 +9144,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anedot.xyz", true }, { "aneebahmed.com", true }, { "anekdot-pr.tk", true }, - { "anelusa.com", true }, { "anepsa.com.mx", true }, { "aneslix.com", false }, { "anetaben.nl", true }, @@ -9009,6 +9156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angelesydemonios.es", true }, { "angeletakis.net", true }, { "angelicare.co.uk", true }, + { "angelikaclothing.com", true }, { "angelikasolorzano.cloud", true }, { "angelinahair.com", true }, { "angeljmadrid.com", true }, @@ -9153,6 +9301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annuaire-jcb.com", true }, { "annuaire-photographe.fr", false }, { "annunciationbvmchurch.org", true }, + { "annynantasiri.com", true }, { "anodas.lt", true }, { "anohana.org", true }, { "anojan.com", true }, @@ -9164,6 +9313,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anoncrypto.org", true }, { "anoneko.com", true }, { "anongoth.pl", true }, + { "anonish.com", true }, { "anonrea.ch", true }, { "anons.fr", false }, { "anonser.tk", true }, @@ -9208,10 +9358,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antanavagefarbiarz.com", true }, { "antani.cloud", true }, { "antarcti.co", true }, - { "antarees.net", true }, { "antaresmedia.com.py", true }, { "antcas.com", false }, { "antecim.fr", true }, + { "antelope.ai", true }, { "antennajunkies.com", true }, { "antennista.bari.it", true }, { "antennista.catania.it", true }, @@ -9243,6 +9393,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anti-nsa.tk", true }, { "anti-radar.org", true }, { "anti-spy.net", false }, + { "antianti.nl", true }, { "antiaz.com", true }, { "anticapitalist.party", false }, { "anticopyright.com", true }, @@ -9268,7 +9419,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antispeciesist.com", true }, { "antivirusprotection.reviews", true }, { "antizon.net", true }, - { "antocom.com", true }, + { "antocom.net", true }, { "antoga.eu", true }, { "antoinedeschenes.com", true }, { "antoineelizabe.com", true }, @@ -9277,12 +9428,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antonellabb.eu", true }, { "antonimos.com.br", true }, { "antonin.one", true }, - { "antonio-gartenbau.de", true }, + { "antonio-gartenbau.de", false }, { "antoniogatti.ro", true }, { "antoniotirado.com", true }, { "antonjuulnaber.dk", true }, { "antonoff.tk", true }, { "antonok.com", true }, + { "antonyraz.de", true }, { "antota.lt", true }, { "antragsgruen.de", true }, { "antraxx.ee", true }, @@ -9388,9 +9540,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "api-connect.com", false }, { "api.biz.tr", true }, { "api.intercom.io", true }, - { "api.lookout.com", false }, + { "api.lookout.com", true }, { "api.recurly.com", true }, - { "api.simple.com", false }, { "api.xero.com", false }, { "apiary.blog", true }, { "apiary.clothing", true }, @@ -9413,6 +9564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apisyouwonthate.com", true }, { "apitodemestre.com.br", true }, { "apiu.me", true }, + { "apix.uz", true }, { "apk.li", true }, { "apk4fun.com", true }, { "apkclash.com", true }, @@ -9424,7 +9576,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aplis-online.de", false }, { "aplpackaging.co.uk", true }, { "aplu.fr", true }, - { "aplus-usa.net", true }, { "aplusdownload.com", true }, { "apluswaterservices.com", true }, { "apm.com.tw", true }, @@ -9435,7 +9586,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apobot.de", true }, { "apocalypseboard.tk", true }, { "apocalypsemud.org", true }, - { "apod-portal-daily.azurewebsites.net", true }, { "apod.com.au", true }, { "apod.ml", true }, { "apogeephoto.com", true }, @@ -9464,6 +9614,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "app-2138.com", true }, { "app-6132.com", true }, { "app-at.work", true }, + { "app-scantech.com", true }, { "app-scope.com", true }, { "app.lookout.com", true }, { "app.recurly.com", true }, @@ -9479,7 +9630,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "app5414.com", true }, { "app5424.com", true }, { "app5454.com", true }, - { "app5671.com", true }, { "app6132.com", true }, { "app666365.com", true }, { "app6810.com", true }, @@ -9528,6 +9678,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apply.eu", true }, { "apply55gx.com", true }, { "appmeas.co.uk", true }, + { "appmeucredito.com.br", true }, + { "appmobi.com", true }, { "appmobile.io", true }, { "appninjas.com", true }, { "apponic.com", true }, @@ -9540,7 +9692,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "approbo.com", true }, { "approval-workflow.com", true }, { "approvedtreecare.com", true }, - { "apps.co", true }, { "apps.facebook.com", false }, { "apps.fedoraproject.org", true }, { "apps.stg.fedoraproject.org", true }, @@ -9560,6 +9711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appuals.com", true }, { "appub.co.jp", true }, { "appui-de-fenetre.fr", true }, + { "appuntidallarete.com", true }, { "appveyor.com", true }, { "appworld.ga", true }, { "appzoojoo.be", true }, @@ -9649,7 +9801,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ararrl.com", true }, { "ararrl.net", true }, { "araseifudousan.com", true }, - { "arawaza.com", false }, { "arawaza.info", true }, { "araxis.com", true }, { "arbavere.ee", true }, @@ -9663,6 +9814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arboworks.com", true }, { "arbu.eu", false }, { "arcadeencasa.com", true }, + { "arcadegames.com", true }, { "arcadio.fr", true }, { "arcaik.net", true }, { "arcanetides.com", true }, @@ -9733,6 +9885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arekatieandchrisgettingmarried.today", true }, { "arekatieandchrismarriedyet.com", true }, { "arena-lemgo.de", true }, + { "arenda247.by", false }, { "arendburgers.nl", true }, { "arenlor.com", true }, { "arenlor.info", true }, @@ -9780,7 +9933,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arimarie.com", true }, { "arinde.ee", true }, { "arinflatablefun.co.uk", true }, - { "arionta.com", true }, { "arise19.com", true }, { "arisechurch.com", true }, { "ariseconference.org.nz", true }, @@ -9828,6 +9980,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "armadaquadrat.com", true }, { "armageddonstuff.com", true }, { "armandsdiscount.com", true }, + { "armanet-promotion.fr", true }, { "armanozak.com", true }, { "armansfinejewellery.com", true }, { "armansfinejewellery.com.au", true }, @@ -9900,6 +10053,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arquitet.com.br", true }, { "arquitetura.pt", true }, { "arrakis.se", true }, + { "arrasdelucia.com", true }, { "arraudi.be", true }, { "arraudi.eu", true }, { "arrazane.com.br", true }, @@ -9911,13 +10065,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arrow-analytics.nl", true }, { "arrow-api.nl", true }, { "arrowfastener.com", true }, - { "arrowgrove.com", true }, + { "arrowgrove.com", false }, { "arrowheadaddict.com", true }, { "arrowheadflats.com", true }, { "arrowit.net", true }, { "arrowwebprojects.nl", true }, { "ars-online.pl", true }, { "arschkrebs.org", true }, + { "arsicad.id", true }, { "arsindecor.com", true }, { "arsk1.com", true }, { "arslankaynakmetal.com", true }, @@ -9952,7 +10107,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artecat.ch", true }, { "artedellavetrina.it", true }, { "artedona.com", true }, - { "artefakt.es", true }, { "arteinstudio.it", true }, { "artelt.com", true }, { "artemis.re", true }, @@ -9981,6 +10135,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "articulatedmedia.com", true }, { "artifact.spb.ru", true }, { "artifexnet.com", true }, + { "artificethefilm.com", true }, { "artificial.army", true }, { "artificialgrassandlandscaping.com", true }, { "artificialplants.tk", true }, @@ -10055,11 +10210,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arvindhariharan.com", true }, { "arvindhariharan.me", true }, { "arvutiladu.ee", true }, + { "arvyncerezo.com", true }, { "arweth.com", true }, { "arx-libertatis.org", true }, { "arx.vg", true }, { "arx8x.net", true }, - { "arxell.com", true }, { "aryalaroca.de", true }, { "aryan-nation.com", true }, { "aryasenna.net", true }, @@ -10069,9 +10224,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "as200753.net", true }, { "as204982.net", true }, { "as395.com", true }, + { "as396.com", true }, { "as397.com", true }, { "as398.com", true }, - { "as44222.net", true }, + { "as44222.net", false }, { "as5158.com", true }, { "as8423.net", true }, { "asaabforever.com", true }, @@ -10109,6 +10265,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aselectionoffice.gov", true }, { "asenno.com", true }, { "aserver.co", true }, + { "asesoriaglobalenseguros.com.mx", true }, { "aseth.de", true }, { "asexualitat.cat", true }, { "asfaleianet.gr", true }, @@ -10139,6 +10296,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asia-gazette.com", true }, { "asia-global-risk.com", false }, { "asia.dating", true }, + { "asiabike.ir", true }, { "asiaflash.com", true }, { "asiaheavens.com", true }, { "asialeonding.at", true }, @@ -10182,6 +10340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asmood.net", true }, { "asmrbuluo.com", true }, { "asngear.biz", true }, + { "asnhgh.biz", true }, { "asoagroca.com", true }, { "asociacionbienestarinmobiliariobogota.com", true }, { "asokan.org", true }, @@ -10196,7 +10355,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asperti.com", true }, { "aspformacion.com", true }, { "asphaltfruehling.de", true }, - { "asphyxia.su", true }, { "aspiescentral.com", true }, { "aspiradorasbaratas.net", true }, { "aspirantum.com", true }, @@ -10225,7 +10383,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "assemble-together.org", true }, { "assemblytechnicianjobs.com", true }, { "assemblywithoutthewalls.org", true }, - { "assempsaibiza.com", true }, { "assertion.de", true }, { "assessoriati.com.br", true }, { "assetbacked.capital", false }, @@ -10244,7 +10401,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "assistenzamicroonde.org", true }, { "associatedwomenshealthcare.com", true }, { "associationhorizon.tk", true }, - { "associazionelbn.it", true }, + { "associazionelbn.it", false }, { "assodigitale.it", true }, { "asspinter.me", true }, { "assumptionpj.org", true }, @@ -10352,6 +10509,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atheit.com", true }, { "athekiu.com", true }, { "athemis.de", true }, + { "athena-garage.co.uk", true }, { "athenadynamics.com", true }, { "athenaneuro.com", true }, { "athens-limousines.com", true }, @@ -10362,6 +10520,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "athomedeco.fr", true }, { "atigerseye.com", true }, { "atimbertownservices.com", true }, + { "atinmarket.com", true }, { "atinylittle.space", true }, { "atis-ars.ru", true }, { "atishchenko.com", true }, @@ -10372,6 +10531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atisoft.web.tr", true }, { "atitude.com", true }, { "ativapsicologia.com.br", true }, + { "atizanvip.com", true }, { "atk.me", true }, { "atkstore.com", true }, { "atl-paas.net", true }, @@ -10416,6 +10576,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atomic.red", true }, { "atomicbounce.co.uk", true }, { "atomism.com", true }, + { "atomiumvn.com", true }, { "atomnetworks.ca", true }, { "atplonline.co", true }, { "atpnutrition.com", true }, @@ -10462,9 +10623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atypicom.it", true }, { "atypicom.pt", true }, { "atzenchefin.de", true }, - { "atzzz.com", true }, { "au-be.net", true }, - { "au.ci", true }, { "au2pb.net", true }, { "au2pb.org", true }, { "aubergegilly.ch", false }, @@ -10503,7 +10662,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "audiorecording.me", true }, { "audiorental.net", true }, { "audioschoolonline.com", true }, - { "audiotechniker.de", true }, { "audiovoodoo.pl", true }, { "audirsq3.de", true }, { "audisto.com", true }, @@ -10576,6 +10734,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aussieseobrisbane.com.au", true }, { "aussieservicedown.com", true }, { "aussiestoresonline.com", true }, + { "aussiestories.dk", true }, { "austenplumbing.com", true }, { "austin-pearce.com", true }, { "austin-security-cameras.com", true }, @@ -10686,6 +10845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autoparts.sh", true }, { "autoparts.wf", true }, { "autopaulito.pt", true }, + { "autopeople.ru", true }, { "autopower.gr", true }, { "autoprice.info", false }, { "autoprogconsortium.ga", true }, @@ -10792,6 +10952,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "averam.net", true }, { "averen.co.uk", true }, { "avernis.de", true }, + { "averste.com", true }, { "avestawebbtjanst.se", false }, { "avexon.com", true }, { "avg.club", true }, @@ -10801,6 +10962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avi9526.pp.ua", true }, { "avia-krasnoyarsk.ru", true }, { "avia-ufa.ru", true }, + { "aviannahelise.com", true }, { "aviasalon.spb.ru", true }, { "aviationmilitaire.tk", true }, { "aviationstrategies.aero", true }, @@ -10815,7 +10977,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avisofi-credit-immobilier.fr", true }, { "aviteng.cloud", true }, { "aviteng.com", true }, - { "avivamiento-radio.com", true }, { "avivaplasticsurgery.com", true }, { "avlhostel.com", true }, { "avm-multimedia.com", true }, @@ -10863,6 +11024,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "awangardaszkola.pl", true }, { "awardplatform.com", true }, { "awardsplatform.com", true }, + { "awaremi-tai.com", true }, { "awaresec.com", true }, { "awaresec.no", true }, { "awarify.io", true }, @@ -10878,6 +11040,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "awesomesit.es", true }, { "awf0.xyz", true }, { "awic.ca", true }, + { "awinninghabit.com", true }, { "awk.tw", true }, { "awksolutions.com", true }, { "awlgolf.com", true }, @@ -10899,6 +11062,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ax25.org", true }, { "axa.de", true }, { "axchap.ir", true }, + { "axearrow.nl", true }, { "axel-fischer.net", true }, { "axel-fischer.science", true }, { "axel-voss.eu", false }, @@ -10977,7 +11141,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "azimut.fr", true }, { "azino777.ru", true }, { "azithromycine.gq", true }, + { "azl-app.be", true }, { "azlk-team.ru", true }, + { "azlo.com", false }, { "azlocalbusiness.com", true }, { "azmusica.biz", true }, { "aznews.site", true }, @@ -11011,7 +11177,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b-b-law.com", true }, { "b-boom.nl", true }, { "b-cyclesshop.ch", false }, - { "b-dd.com", true }, { "b-entropy.com", true }, { "b-freerobux.ga", true }, { "b-honey.gr", true }, @@ -11019,10 +11184,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b-performance.de", true }, { "b-root-force.de", true }, { "b-services.net", false }, + { "b-techflow.com", true }, { "b-ticket.ch", true }, { "b-tree.be", true }, - { "b0000.co", false }, - { "b00228.com", false }, + { "b0000.co", true }, + { "b00228.com", true }, { "b00de.ga", true }, { "b0305.com", true }, { "b0306.com", true }, @@ -11039,8 +11205,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b0hr.ai", true }, { "b0k.org", true }, { "b0rk.com", true }, - { "b1111.co", false }, - { "b131000.com", false }, + { "b1111.co", true }, + { "b131000.com", true }, { "b1758.net", true }, { "b1768.com", true }, { "b1768.net", true }, @@ -11049,11 +11215,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b1c1l1.com", true }, { "b1nzy-pinged.me", true }, { "b1rd.tk", true }, - { "b2222.co", false }, + { "b2222.co", true }, { "b2486.com", true }, { "b2486.net", true }, { "b2b-nestle.com.br", true }, { "b2bmuzikbank.com", true }, + { "b2m.co.nz", true }, + { "b3.nu", true }, { "b303.me", true }, { "b30365.com", true }, { "b3177.com", true }, @@ -11071,6 +11239,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b36520.com", false }, { "b36594.com", true }, { "b365cc.com", false }, + { "b3pacific.com", true }, { "b422edu.com", true }, { "b4bouncycastles.co.uk", true }, { "b4ckbone.de", true }, @@ -11081,7 +11250,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b5189.net", true }, { "b5197.co", true }, { "b5289.com", true }, - { "b538.com", false }, + { "b538.com", true }, { "b5706.com", true }, { "b5707.com", true }, { "b5708.com", true }, @@ -11124,8 +11293,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b62g.com", true }, { "b62h.com", true }, { "b64.club", true }, - { "b6530.com", false }, - { "b6531.com", false }, + { "b6530.com", true }, + { "b6531.com", true }, { "b6701.com", true }, { "b6702.com", true }, { "b6703.com", true }, @@ -11148,6 +11317,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b67802.com", true }, { "b67803.com", true }, { "b67805.com", true }, + { "b67881.com", true }, + { "b67882.com", true }, + { "b67883.com", true }, + { "b67884.com", true }, + { "b67885.com", true }, { "b67901.com", true }, { "b67902.com", true }, { "b67903.com", true }, @@ -11170,7 +11344,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b70774.com", true }, { "b70775.com", true }, { "b70881.com", true }, - { "b70882.com", false }, + { "b70882.com", true }, { "b70883.com", true }, { "b70884.com", true }, { "b70885.com", true }, @@ -11187,14 +11361,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b73dd.com", true }, { "b73ee.com", true }, { "b73ff.com", true }, + { "b7501.com", true }, { "b7502.com", true }, { "b7503.com", true }, { "b7506.com", true }, { "b7507.com", true }, + { "b7508.com", true }, { "b7509.com", true }, { "b767.net", true }, - { "b77018.com", false }, - { "b789.co", false }, + { "b77018.com", true }, + { "b789.co", true }, { "b81365.com", true }, { "b82365.com", true }, { "b83.tv", true }, @@ -11213,7 +11389,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b8591.net", true }, { "b86255.com", true }, { "b8831.com", true }, - { "b886666.com", false }, + { "b886666.com", true }, { "b889b.com", true }, { "b88dd.com", false }, { "b88ee.com", false }, @@ -11225,15 +11401,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b8979.net", true }, { "b899365.com", true }, { "b89aa.com", true }, - { "b89bb.com", true }, - { "b89cc.com", true }, - { "b89dd.com", true }, - { "b89ee.com", true }, - { "b89ff.com", false }, - { "b89gg.com", false }, - { "b89hh.com", false }, - { "b89ii.com", true }, - { "b89jj.com", true }, + { "b89bb.com", false }, + { "b89cc.com", false }, + { "b89dd.com", false }, + { "b89ee.com", false }, + { "b89ff.com", true }, + { "b89gg.com", true }, + { "b89hh.com", true }, + { "b89ii.com", false }, + { "b89jj.com", false }, { "b8a.me", true }, { "b9018.com", true }, { "b9018.net", true }, @@ -11287,10 +11463,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b9728.co", true }, { "b9758.com", true }, { "b9758.net", true }, - { "b979333.com", false }, - { "b979555.com", false }, - { "b979666.com", false }, - { "b979999.com", false }, + { "b979333.com", true }, + { "b979555.com", true }, + { "b979666.com", true }, + { "b979999.com", true }, { "b9818.com", true }, { "b9818.net", true }, { "b9858.com", true }, @@ -11334,6 +11510,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b9961.com", true }, { "b99618.com", true }, { "b9962.com", true }, + { "b9970.com", true }, { "b99718.com", true }, { "b9973.com", true }, { "b9976.com", true }, @@ -11367,6 +11544,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b9king.cc", true }, { "b9king.com", true }, { "b9king.net", true }, + { "b9l8tt.com", true }, { "b9winner.cc", true }, { "b9winner.com", true }, { "ba47.net", true }, @@ -11407,6 +11585,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baches-piscines.com", true }, { "bachmannyachts.com", true }, { "bachmatt-baar.ch", true }, + { "bachomp.net", true }, { "bachweid-baar.ch", true }, { "baciu.ch", false }, { "backeby.eu", true }, @@ -11417,7 +11596,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "backgroundchecks.online", true }, { "backgroundscreenersofamerica.com", true }, { "backgroundz.net", true }, - { "backlinkbase.com", true }, { "backlogapp.io", true }, { "backmitra.com", true }, { "backmitra.mx", true }, @@ -11431,7 +11609,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "backschues.com", true }, { "backschues.de", true }, { "backschues.net", true }, + { "backseatbandits.com", true }, { "backsideverbier.ch", false }, + { "backspace.dev", true }, + { "backspace.rocks", true }, { "backterris.com", true }, { "backtest.org", true }, { "backtheeffup.com", true }, @@ -11443,6 +11624,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bacontreeconsulting.com", true }, { "bacoux.com", true }, { "bacsmegye.hu", true }, + { "bacterias.mx", false }, { "bactrim-antibiotic.ml", true }, { "bacula.jp", true }, { "bad-wurzach.de", true }, @@ -11458,6 +11640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "badcreditcarsfinance.co.uk", true }, { "badedesign.no", true }, { "badf00d.de", true }, + { "badge.rs", true }, { "badgersystems.de", true }, { "badges.fedoraproject.org", true }, { "badges.stg.fedoraproject.org", true }, @@ -11487,6 +11670,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bageluncle.com", true }, { "baggy.me.uk", true }, { "bagheera.me.uk", true }, + { "bagiobella.com", true }, { "bagira.guru", true }, { "baglu.com", false }, { "bagni-chimici.roma.it", true }, @@ -11605,10 +11789,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bamaagahi.ir", true }, { "bamahammer.com", true }, { "bamanshop.com", false }, - { "bambambaby.com.br", false }, { "bamboehof.nl", true }, { "bambooforest.nl", true }, { "bamboorelay.com", true }, + { "bambumania.com.br", true }, { "bamily.rocks", true }, { "bamtoki.com", true }, { "ban.moe", true }, @@ -11701,6 +11885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "banter.city", true }, { "bao-in.com", true }, { "bao-in.net", true }, + { "baobeiglass.com", true }, { "baodan666.com", true }, { "baofengtech.com", true }, { "baogiathicongnoithat.com", true }, @@ -11715,6 +11900,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baoxue7.com", true }, { "baoxue8.com", true }, { "baoxue9.com", true }, + { "bap-consult.at", true }, { "bapha.be", true }, { "baptiste-peugnez.fr", true }, { "baptisteplanckaert.tk", true }, @@ -11751,6 +11937,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barcelonawinewalk.com", true }, { "barclays.net", true }, { "barcoderealty.com", true }, + { "bardes.org", true }, { "bardiharborow.com", true }, { "bardiharborow.tk", true }, { "baresquare.com", true }, @@ -11768,6 +11955,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barkerjr.xyz", true }, { "barkingaboutbusiness.com", true }, { "barkstop.net", true }, + { "barlamane.com", true }, + { "barlex.pl", true }, { "barlotta.net", true }, { "barmayoon.ir", true }, { "barnabycolby.io", true }, @@ -11827,6 +12016,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "basel-gynaekologie.ch", true }, { "baselang.com", true }, { "basement961.co.nz", true }, + { "basementdoctor.com", false }, { "basementdoctornorthwest.com", true }, { "basementfinishingohio.com", true }, { "basementwaterproofingdesmoines.com", true }, @@ -11859,7 +12049,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bassys.com.co", true }, { "bastardandpoors.com", true }, { "bastelzauberwelt.de", true }, - { "bastide-viens.com", true }, { "bastiv.com", true }, { "bastivmobile.com", true }, { "bastolino.de", true }, @@ -11904,7 +12093,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bauingenieur24.de", true }, { "baumannfabrice.com", true }, { "baumkuchen-aus-dresden.de", true }, - { "baur.de", true }, { "bausep.de", true }, { "bauthier-occasions.be", false }, { "bautied.de", true }, @@ -11952,11 +12140,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bazos.pl", true }, { "bazos.sk", true }, { "bazziergraphik.com", true }, - { "bb00228.com", false }, + { "bb00228.com", true }, { "bb057.com", true }, { "bb087.com", true }, { "bb168.cc", true }, + { "bb211.com", true }, { "bb221.com", true }, + { "bb321.com", true }, { "bb37roma.it", true }, { "bb5197.co", true }, { "bb6729.co", true }, @@ -12026,6 +12216,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcvps.com", true }, { "bcyw56.live", false }, { "bd-media.tk", true }, + { "bd.foundation", true }, { "bd2positivo.com", true }, { "bda-boulevarddesairs.com", false }, { "bdbxml.net", true }, @@ -12080,6 +12271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bearcms.com", true }, { "bearded.sexy", true }, { "beardedbearthegame.com", true }, + { "bearden.io", true }, { "beardic.cn", true }, { "beardsome.me", true }, { "beargoggleson.com", true }, @@ -12109,7 +12301,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beautycarepack.com.ng", true }, { "beautycon.ir", true }, { "beautyevent.fr", true }, - { "beautykat.ru", true }, { "beautyseasons.ru", true }, { "beaver-creek.ga", true }, { "beaverdamautos.com", true }, @@ -12126,10 +12317,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beboldpr.com", true }, { "bebout.domains", true }, { "bebout.pw", true }, + { "becausecapitalism.org", true }, { "beccaanne.photography", true }, { "beccajoshwedding.com", true }, { "bech32.net", true }, - { "beckerantiques.com", true }, { "beckijayes.family", true }, { "becklove.cn", true }, { "becleverwithyourcash.com", true }, @@ -12156,6 +12347,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bedrijvencentrum-maartenslaan.nl", true }, { "bedrijvencentrum-malberg.nl", true }, { "bedrocklinux.org", true }, + { "bedset.me", true }, { "bedste10.dk", true }, { "bedtimeflirt.com", true }, { "bee-creative.nl", true }, @@ -12198,12 +12390,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beerjet.sk", true }, { "beerjetcz.cz", true }, { "beerly.eu", true }, + { "beermedlar.com", true }, { "beerradar.no", true }, { "beerradar.party", true }, { "beers.my", true }, { "beersandco.ch", true }, { "beersconf.com", true }, { "beerview.ga", true }, + { "beerxa.cz", true }, { "beestation13.com", true }, { "beeswarmrehoming.com.au", true }, { "beeswax-orgone.com", true }, @@ -12215,6 +12409,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beezkneezcastles.co.uk", true }, { "beeznest.com", true }, { "befoodsafe.gov", true }, + { "beforesunrise.de", true }, { "beforeyoueatoc.com", true }, { "beframed.ch", false }, { "befreewifi.info", true }, @@ -12227,6 +12422,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "behamepresrdce.sk", true }, { "behamzdarma.cz", true }, { "behar-selimi.tk", true }, + { "behaviorchangeimpact.org", true }, { "behead.de", true }, { "beherit.pl", true }, { "behindertenagentur.de", true }, @@ -12270,7 +12466,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belfastbounce.co.uk", true }, { "belfastlocks.com", true }, { "belfasttechservices.co.uk", true }, - { "belfastvibes.com", true }, + { "belfix.be", true }, { "belfor-probleme.de", true }, { "belfordroxo.net.br", true }, { "belge.rs", true }, @@ -12296,6 +12492,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bellamy.cloud", true }, { "bellavistaoutdoor.com", true }, { "bellebakes.blog", true }, + { "bellevuechiropracticassociates.com", true }, { "bellevueowners.tk", true }, { "bellezzasenzalimiti.it", true }, { "bellinghamdetailandglass.com", true }, @@ -12307,6 +12504,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belly-button-piercings.com", true }, { "bellyandbrain.amsterdam", true }, { "belmontgoessolar.org", true }, + { "belonggsumc.com", true }, { "belos.at", true }, { "belouga.org", true }, { "belpbleibtbelp.ch", true }, @@ -12393,7 +12591,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bennygommers.nl", true }, { "bennythink.com", true }, { "benoniplumber24-7.co.za", true }, - { "benpfitzner.com", true }, { "benriya.shiga.jp", true }, { "bensbouncycastles.co.uk", true }, { "benschnarr.com", true }, @@ -12411,6 +12608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bentonweatherstone.co.uk", true }, { "bentrask.com", true }, { "benu.cz", true }, + { "benulekaren.sk", true }, { "benvds.com", true }, { "benz-hikaku.com", true }, { "benzi.io", true }, @@ -12435,6 +12633,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bereaplumber.co.za", true }, { "bereginy.com.ua", true }, { "berend.tk", true }, + { "bergenson.nl", false }, { "berger-chiro.com", true }, { "bergevoet-fa.nl", false }, { "bergfex.at", true }, @@ -12487,7 +12686,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bernyweb.net", true }, { "berr.yt", true }, { "berra.se", true }, - { "berruezoabogados.com", true }, { "berrus.com", true }, { "berry.cat", true }, { "berrypay.com", true }, @@ -12514,7 +12712,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bescover.com", true }, { "besensi.com", true }, { "beserberg.tk", true }, - { "beserved.eu", true }, { "beslider.com", true }, { "besnik.de", false }, { "besole.ch", true }, @@ -12531,6 +12728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "best-beauty-schools.com", true }, { "best-book.gq", true }, { "best-business-colleges.com", true }, + { "best-buyessaysonline.com", true }, { "best-catholic-colleges.com", true }, { "best-community-colleges.com", true }, { "best-culinary-colleges.com", true }, @@ -12546,6 +12744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "best-nursing-colleges.com", true }, { "best-of-bounce.co.uk", true }, { "best-pharmacy-schools.com", true }, + { "best-photobooth.ro", true }, { "best-tickets.co.uk", true }, { "best-trucking-schools.com", true }, { "best-wedding-quotes.com", true }, @@ -12561,9 +12760,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestbonuses.co.uk", true }, { "bestboot.cf", true }, { "bestbrokerindia.com", true }, + { "bestbuyatvs.com", true }, { "bestbuyzone.com", true }, { "bestcarscyprus.com", true }, + { "bestcellular.com", false }, { "bestcivilattorneys.com", true }, + { "bestcouponvouchercodes.com", true }, { "bestcrossbowguide.com", true }, { "bestdating.today", true }, { "bestdownloadscenter.com", true }, @@ -12582,6 +12784,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestgiftever.ca", true }, { "bestguessonline.com", true }, { "besthemes.tk", true }, + { "besthost.cz", true }, { "besthotsales.com", true }, { "besti.it", true }, { "bestiahosting.com", true }, @@ -12611,6 +12814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestproductsaudit.com", true }, { "bestremote.io", true }, { "bestschools.io", true }, + { "bestseo4u.co.uk", true }, { "bestseries.tv", true }, { "bestsgadgets.com", true }, { "bestshoesmix.com", true }, @@ -12624,17 +12828,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet-99.com", true }, { "bet-99.net", true }, { "bet.eu", false }, - { "bet01vip.com", false }, - { "bet02vip.com", false }, - { "bet03vip.com", false }, - { "bet04vip.com", false }, - { "bet05vip.com", false }, + { "bet01vip.com", true }, + { "bet02vip.com", true }, + { "bet03vip.com", true }, + { "bet04vip.com", true }, + { "bet05vip.com", true }, { "bet064.com", true }, { "bet06vip.com", true }, { "bet074.com", true }, { "bet08vip.com", true }, { "bet09vip.com", true }, - { "bet10vip.com", false }, + { "bet10vip.com", true }, + { "bet166111.com", true }, + { "bet166222.com", true }, + { "bet166333.com", true }, + { "bet166444.com", true }, + { "bet166555.com", true }, + { "bet166777.com", true }, + { "bet166888.com", true }, + { "bet1668888.com", true }, + { "bet166999.com", true }, + { "bet166b.com", true }, + { "bet166bbb.com", true }, + { "bet166c.com", true }, + { "bet166ddd.com", true }, + { "bet166eee.com", true }, + { "bet166fff.com", true }, + { "bet166hhh.com", true }, + { "bet166tt.com", true }, + { "bet166uu.com", true }, + { "bet166ww.com", true }, + { "bet166xx.com", true }, + { "bet166yy.com", true }, { "bet168wy.com", true }, { "bet168wy.net", true }, { "bet261.com", true }, @@ -12678,7 +12903,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet365cn-game.com", true }, { "bet365cn-keno.com", true }, { "bet365cn-livecasino.com", true }, - { "bet365cn-poker.com", true }, { "bet365cn-sports.com", true }, { "bet365cn-vegas.com", true }, { "bet365cnq.com", true }, @@ -12702,6 +12926,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet365q8.com", true }, { "bet365q9.com", true }, { "bet365r8.com", true }, + { "bet365u.com", true }, { "bet365vip1.com", false }, { "bet365vip2.com", true }, { "bet365vip3.com", false }, @@ -12726,6 +12951,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet44406.com", true }, { "bet44407.com", true }, { "bet44409.com", true }, + { "bet44410.com", true }, + { "bet444400.com", true }, + { "bet444401.com", true }, + { "bet444402.com", true }, + { "bet444403.com", true }, + { "bet444404.com", true }, + { "bet444405.com", true }, + { "bet444406.com", true }, + { "bet444407.com", true }, + { "bet444408.com", true }, + { "bet444409.com", true }, + { "bet444410.com", true }, + { "bet444421.com", true }, + { "bet444422.com", true }, + { "bet444423.com", true }, { "bet444424.com", true }, { "bet444425.com", true }, { "bet444426.com", true }, @@ -12745,6 +12985,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet5678e.com", true }, { "bet5678f.com", true }, { "bet5678g.com", true }, + { "bet571.com", true }, + { "bet572.com", true }, { "bet5757.com", true }, { "bet5868.com", true }, { "bet599.com", true }, @@ -12802,11 +13044,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betaworx.eu", true }, { "betb33.com", true }, { "betb73.com", true }, - { "betcn-mart.com", true }, { "betecnet.de", true }, { "betformular.com", true }, { "betgo9.cc", true }, { "bethanyduke.com", true }, + { "bethanyhome.org", true }, { "bethanypeds.com", true }, { "betheredge.us", true }, { "bethpage.net", true }, @@ -12834,7 +13076,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bett1.pl", true }, { "bettaline.com.au", true }, { "bettashoerepairs.com.au", true }, - { "better-bounce.co.uk", true }, { "better.com", true }, { "better.fyi", true }, { "betterbabyshop.com.au", true }, @@ -12843,7 +13084,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bettercleaningcompany.co.uk", true }, { "betterconsult.com", true }, { "bettercrypto.org", true }, - { "betteressay.website", true }, { "betterjapanese.blog", true }, { "betterjapanese.org", true }, { "betterjapanese.xyz", true }, @@ -12901,7 +13141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bewerbungsfibel.de", true }, { "bewerbungsfoto-deinfoto.ch", true }, { "bewertet.de", true }, - { "bewished.co", false }, { "bewonderen.com", true }, { "bexit-hosting.nl", true }, { "bexit-security.eu", true }, @@ -12909,6 +13148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bexit.nl", true }, { "bexithosting.nl", true }, { "bexleycastles.co.uk", true }, + { "bexx-engineering.co.uk", true }, { "bey.io", true }, { "beybiz.com", true }, { "beyerautomation.com", true }, @@ -12917,6 +13157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beyond-infinity.org", false }, { "beyond-rational.com", true }, { "beyondalderaan.net", true }, + { "beyondauth.io", true }, { "beyondbounce.co.uk", true }, { "beyondboxgifts.com", true }, { "beyondordinarylife.com", true }, @@ -12937,7 +13178,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bf5.ru", true }, { "bfam.tv", true }, { "bfanis.ir", true }, - { "bfcgermania88.de", true }, { "bfdz.ink", true }, { "bfem.gov", true }, { "bfh.science", true }, @@ -12979,6 +13219,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bhrenovations.com", true }, { "bhserralheria.com.br", true }, { "bhtelecom.ba", true }, + { "bhthome.com", true }, { "bhuntr.com", true }, { "bhxch.moe", true }, { "bhyn.ca", true }, @@ -13038,7 +13279,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bie08.com", true }, { "bie35.com", true }, { "bie79.com", true }, - { "biec.moe", true }, { "biegal.ski", true }, { "biegner-technik.de", true }, { "biehlsoft.info", true }, @@ -13052,12 +13292,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biensenvue.com", true }, { "bienstar.tv", true }, { "bienvenidoamerica.com", true }, - { "bierbaumer.net", true }, { "biergaizi.info", true }, { "bierochs.org", true }, { "bierwebshop.be", true }, { "bieser.ch", true }, { "biester.pro", true }, + { "bietinidesign.be", true }, { "bifm.de", true }, { "bifrost.cz", true }, { "biftin.net", true }, @@ -13080,6 +13320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bigdinosaur.org", true }, { "bigdiscounts.tk", true }, { "bigfatbetty.com", true }, + { "bigfuckin.rocks", true }, { "biggerpicture.agency", true }, { "biggles.io", true }, { "bighouse-events.co.uk", true }, @@ -13088,6 +13329,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biglagoonrentals.com", true }, { "biglou.com", false }, { "biglu.eu.org", true }, + { "bigmoney.nu", true }, { "bigorbitgallery.org", true }, { "bigpicture-learning.com", true }, { "bigprintinglasvegas.com", true }, @@ -13131,7 +13373,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biletyplus.by", true }, { "biletyplus.com", true }, { "biletyplus.ua", true }, - { "bilgo.com", true }, { "bilibili.link", true }, { "bilibili.red", true }, { "bilibili.sh", true }, @@ -13208,6 +13449,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bin92.com", true }, { "bin95.com", true }, { "bina.az", true }, + { "binairy.com", true }, + { "binairy.nl", true }, { "binam.center", false }, { "binans.co", true }, { "binans.com", true }, @@ -13230,9 +13473,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binding-problem.com", true }, { "bing.com", true }, { "bingcheung.com", true }, + { "bingle.nu", true }, { "bingo-wear.com", true }, { "bingo9.net", true }, { "bingobank.org", true }, + { "bingoela.com", true }, { "bingofriends.com", true }, { "binhex.net", true }, { "binhp.com", true }, @@ -13325,9 +13570,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biotanquesbts.com", true }, { "biotechware.com", true }, { "biotecommunity.com", true }, + { "bioteebook.com", true }, { "biotera.cl", true }, { "biotin.ch", true }, - { "biou.me", true }, { "biovalue.eu", true }, { "biowtage.gq", true }, { "bip.gov.sa", false }, @@ -13349,6 +13594,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "birkenstab.de", true }, { "birkenwasser.de", true }, { "birminghamsunset.com", true }, + { "birosuli.hu", true }, { "birsinghdhami.com.np", true }, { "birthday-to-you.com", true }, { "birthdaytip.com", true }, @@ -13421,16 +13667,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitcoiner-or-shitcoiner.com", true }, { "bitcoinfees.net", true }, { "bitcoingambling.pro", true }, + { "bitcoinheaders.org", true }, { "bitcoinindia.com", true }, { "bitcoinjpn.com", true }, { "bitcoinrealestate.com.au", true }, { "bitcoinrush.tk", true }, + { "bitcoinseed.net", true }, { "bitcointhefts.com", true }, { "bitcoinwalletscript.tk", true }, { "bitcoinx.ro", true }, { "bitcork.io", true }, { "bitcorner.de", true }, { "bitcqr.io", true }, + { "bitcrazy.org", true }, { "bitech-ec.com", true }, { "bitenose.com", true }, { "bitenose.net", true }, @@ -13470,7 +13719,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitmexin.com", true }, { "bitmidi.com", true }, { "bitminter.com", true }, - { "bitmoe.com", true }, { "bitplay.space", true }, { "bitpod.de", true }, { "bitpoll.de", true }, @@ -13483,6 +13731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bits-hr.de", true }, { "bitsafe.com.my", true }, { "bitsalt.com", true }, + { "bitsellx.com", true }, { "bitski.com", true }, { "bitskins.co", true }, { "bitskrieg.net", true }, @@ -13498,6 +13747,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitten.pw", true }, { "bittersweetcandybowl.com", true }, { "bittervault.xyz", true }, + { "bittextures.com", true }, { "bittylicious.com", true }, { "bitvest.io", true }, { "bitvps.com", true }, @@ -13541,7 +13791,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bizzdesign.cloud", true }, { "bizzdesign.com", true }, { "bizzi.tv", true }, - { "bizzit.se", true }, { "bjarnerest.de", true }, { "bjfuli.com", true }, { "bjl5689.com", true }, @@ -13565,10 +13814,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bkentertainments.co.uk", true }, { "bkhayes.com", true }, { "bkhpilates.co.uk", true }, + { "bkkf.at", true }, { "bkkposn.com", true }, { "bklaindia.com", true }, { "bkositspartytime.co.uk", true }, { "bkt.to", true }, + { "bktrust.it", true }, { "bkulup.com", true }, { "bl00.se", true }, { "bl4ckb0x.biz", true }, @@ -13608,7 +13859,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "black-pool.net", true }, { "black-raven.fr", true }, { "black.dating", true }, - { "black.host", true }, { "black1ce.com", true }, { "blackandpony.de", true }, { "blackapron.com.br", true }, @@ -13624,7 +13874,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackcatinformatics.ca", true }, { "blackcatinformatics.com", true }, { "blackcicada.com", true }, - { "blackdiam.net", true }, { "blackdotbrewery.com", true }, { "blackdown.de", true }, { "blackdragoninc.org", true }, @@ -13657,7 +13906,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackpi.dedyn.io", true }, { "blackroadphotography.de", true }, { "blackroot.eu", true }, - { "blackscreen.me", true }, { "blackscytheconsulting.com", true }, { "blackseals.net", true }, { "blacksheepsw.com", true }, @@ -13669,9 +13917,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blacktown.eu", true }, { "blacktownbuildingsupplies.com.au", true }, { "blacktubes.cf", true }, + { "blackyau.cc", true }, { "blackys-chamber.de", false }, { "blackzebra.audio", true }, { "blaindalefarms.com", true }, + { "blairmitchelmore.com", true }, { "blaise.io", true }, { "blakecoin.org", true }, { "blakekhan.com", true }, @@ -13755,6 +14005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blinkspeed.eu", true }, { "blio.tk", true }, { "blip.website", true }, + { "bliss.id", true }, { "blissdrive.com", true }, { "blissjoe.com", true }, { "blissplan.com", true }, @@ -13793,7 +14044,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blockmetry.com", true }, { "blocknodes.live", true }, { "blockshopauto.com", true }, - { "blockstream.com", true }, { "blocktab.io", true }, { "blockwatch.cc", true }, { "blockxit.de", true }, @@ -13802,7 +14052,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blog-garage.com", true }, { "blog-grupom2.es", true }, { "blog-investimenti.it", true }, - { "blog.gov.uk", true }, { "blog.gparent.org", true }, { "blog.linode.com", false }, { "blog.lookout.com", false }, @@ -13814,7 +14063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blogarts.net", true }, { "blogauto.cz", true }, { "blogbooker.com", true }, - { "blogcast.co", true }, { "blogcast.com", true }, { "blogconcours.net", true }, { "blogcosmeticsurgeon.ga", true }, @@ -13825,7 +14073,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blogdieconomia.it", true }, { "blogdimoda.com", true }, { "blogdimotori.it", true }, - { "blogexpert.ca", true }, + { "blogdolago.com.br", true }, { "bloggermumofthreeboys.com", true }, { "blogging-life.com", true }, { "bloggingtipsfornewblogger.com", true }, @@ -13870,7 +14118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bltc.org.uk", true }, { "bltdirect.com", true }, { "blubbablasen.de", true }, - { "blubberladen.de", true }, { "blubop.fr", true }, { "bludnykoren.ml", true }, { "blue-gmbh-erfahrungen.de", true }, @@ -13971,7 +14218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bmoattachments.org", true }, { "bmone.net", true }, { "bmriv.com", true }, - { "bmros.com.ar", true }, + { "bmros.com.ar", false }, { "bmw-motorradclub-seefeld.de", true }, { "bmwcolors.com", true }, { "bn4t.me", true }, @@ -14019,7 +14266,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bobep.ru", true }, { "bobigames.com", true }, { "bobiji.com", false }, - { "bobisec.cz", true }, + { "bobisec.cz", false }, { "bobkidbob.com", true }, { "bobkoetsier.nl", true }, { "bobnbounce.ie", true }, @@ -14067,6 +14314,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bogner.sh", true }, { "bogosity.tv", true }, { "bogs-consulting.de", true }, + { "bogs.de", true }, { "bogurl.com", true }, { "bohaishibei.com", true }, { "bohan.co", true }, @@ -14096,6 +14344,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bolico.de", true }, { "bolivar80.com", true }, { "bolivarfm.com.ve", true }, + { "boliviasepusodemoda.com", true }, { "bologna-disinfestazioni.it", true }, { "bolovegna.it", true }, { "bolsashidrosolubles.com", true }, @@ -14109,7 +14358,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bombe-lacrymogene.fr", true }, { "bomberus.de", true }, { "bomboniere.roma.it", true }, - { "bombsquad.studio", true }, { "bomhard.de", true }, { "bomhard.net", true }, { "bomhard.org", true }, @@ -14171,7 +14419,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bonus.pl", true }, { "bonusov.tk", true }, { "bonussource.com", true }, - { "bonux.co", true }, { "boodmo.com", true }, { "boof.com", false }, { "book-in-hotel.com", true }, @@ -14190,7 +14437,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bookourdjs.com", true }, { "bookreport.ga", true }, { "books.co.ua", true }, - { "booksearch.jp", true }, + { "bookshopofindia.com", true }, { "booksinthefridge.at", true }, { "bookslibrarybooks.gq", true }, { "booktoan.com", true }, @@ -14248,6 +14495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boreo.si", true }, { "boresmail.ru", true }, { "borgmestervangen.xyz", true }, + { "borgoaureo.com", true }, { "borgodigatteraia.it", true }, { "boris64.net", true }, { "borisenko.by", true }, @@ -14281,7 +14529,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bosun.io", true }, { "bot-manager.pl", true }, { "botcamp.org", true }, - { "botcore.ai", true }, + { "botcore.ai", false }, { "botealis.ch", true }, { "botezdepoveste.ro", true }, { "botguard.net", true }, @@ -14291,6 +14539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "botmastery.com", true }, { "botmedia.cf", true }, { "botnam.com", false }, + { "botox.bz", true }, { "bots.cat", true }, { "botserver.de", true }, { "botsiah.fail", true }, @@ -14335,6 +14584,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bounceandwobble.co.uk", true }, { "bounceapp.com", true }, { "bouncearoundevents.co.uk", true }, + { "bouncearoundinflatable.com", true }, { "bouncearoundsheffield.co.uk", true }, { "bounceawaycastles.com", true }, { "bouncebackcastles.co.uk", true }, @@ -14348,6 +14598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bouncenortheast.co.uk", true }, { "bouncenpaint.co.uk", true }, { "bouncepartycastles.com", true }, + { "bounceroos-bouncycastles.co.uk", true }, { "bounceroosevents.co.uk", true }, { "bouncers-bouncycastlehire.co.uk", true }, { "bouncesouthwales.co.uk", true }, @@ -14420,6 +14671,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boundaryvets.co.uk", true }, { "bounouh.tk", true }, { "bountiful.gov", true }, + { "bounty.fund", true }, + { "bounty.software", true }, { "bountyfactory.io", true }, { "bourasse.fr", true }, { "bourgeoisdoorco.com", true }, @@ -14443,13 +14696,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boweryandvine.com", true }, { "bowlcake.fr", true }, { "bowling.com", true }, - { "bownty.co.uk", true }, - { "bownty.de", true }, - { "bownty.dk", true }, - { "bownty.es", true }, - { "bownty.fr", true }, - { "bownty.it", true }, - { "bownty.nl", true }, { "bowntycdn.net", true }, { "bowtie.com.hk", true }, { "boxcritters.wiki", true }, @@ -14461,6 +14707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boxpirates.to", true }, { "boxspringbett-160x200.de", true }, { "boxt.com.au", true }, + { "boxtub.com", true }, { "boxvergelijker.nl", true }, { "boxview.com", true }, { "boyerassoc.com", true }, @@ -14480,6 +14727,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bpaste.net", true }, { "bpastudies.org", true }, { "bphostels.com", true }, + { "bpisites.eu", true }, { "bpo.ovh", true }, { "bpol-forum.de", true }, { "bps.vc", true }, @@ -14523,6 +14771,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brainball.fr", false }, { "brainboxai.com", true }, { "braineet.com", true }, + { "brainhealth.gov", true }, { "brainhub.nl", true }, { "brainobeat.com", true }, { "brainserve.ch", false }, @@ -14543,7 +14792,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bralnik.com", true }, { "bramburek.net", true }, { "bramhallsamusements.com", true }, - { "brammingfys.dk", true }, + { "bramhopetails.uk", true }, + { "bramming-fysio.dk", true }, { "bramois.tk", true }, { "bramsikkens.be", true }, { "bramstaps.nl", true }, @@ -14724,6 +14974,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brickweb.co.uk", true }, { "brickwerks.io", true }, { "bricolajeux.ch", false }, + { "bricomium.com", true }, { "brid.gy", false }, { "bridalfabrics.co.uk", true }, { "bridalfabrics.com", true }, @@ -14750,12 +15001,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "briefvorlagen-papierformat.de", true }, { "brier.me", true }, { "briffoud.fr", true }, + { "brigade-electronics.com", true }, { "briggsleroux.com", true }, { "brighouse-leisure.co.uk", true }, { "brightday.bz", true }, { "brightendofleasecleaning.com.au", true }, { "brightfuturemadebyme.com", true }, - { "brightonbank.com", true }, + { "brightonbank.com", false }, { "brightonbouncycastles.net", true }, { "brightonchilli.org.uk", true }, { "brightpool-markets.com", true }, @@ -14784,6 +15036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brio-ukraine.store", true }, { "briograce.com.mx", true }, { "brioukraine.store", true }, + { "brisbaneflamenco.com.au", true }, { "brisbanelogistics.com.au", true }, { "brisignshop.com.au", true }, { "brisq.design", true }, @@ -14793,6 +15046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "britanniacateringyeovil.co.uk", true }, { "britanniapandi.com", true }, { "britelocate.com", true }, + { "britishacademy.us", true }, { "britishbeef.com", true }, { "britishbookmakers.co.uk", true }, { "britishchronicles.com", true }, @@ -14834,7 +15088,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brokenhands.io", true }, { "brokernet.ie", false }, { "brokernotes.co", true }, - { "brokolit.com", true }, { "brols.eu", true }, { "bromo.cf", true }, { "brompton-cocktail.com", true }, @@ -14847,6 +15100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brooklyncosmetics.net", true }, { "brooklynentdoc.com", true }, { "brooklynrealestateblog.com", true }, + { "brooklyntheborough.com", true }, { "brookscountyga.gov", true }, { "brosay-legko.ml", true }, { "brossman.it", true }, @@ -14869,7 +15123,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "browsedns.net", true }, { "browsemycity.com", true }, { "browserleaks.com", true }, - { "brrd.io", true }, { "brrr.fr", true }, { "bru6.de", true }, { "brubank.com", true }, @@ -14895,6 +15148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brunick.de", false }, { "brunn.email", true }, { "brunner.ninja", true }, + { "brunoamaral.eu", true }, { "brunohenc.from.hr", true }, { "brunolt.nl", true }, { "brunoproduit.ch", false }, @@ -14908,7 +15162,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brutecloud.com", true }, { "brutus2.ga", false }, { "bruun.co", true }, - { "bry.do", true }, + { "bry.do", false }, { "bryanarmijomd.com", true }, { "bryancastillo.site", true }, { "bryandesrosiers.com", true }, @@ -15022,6 +15276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt138g.com", true }, { "btt1515.com", true }, { "btt175.com", true }, + { "btt185.com", true }, { "btt187.com", true }, { "btt192.com", true }, { "btt2020.com", true }, @@ -15103,6 +15358,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt932g.com", true }, { "btt945g.com", true }, { "btt9494.com", true }, + { "btt949g.com", true }, { "btt9595.com", true }, { "btt9898.com", true }, { "btt99.net", true }, @@ -15140,7 +15396,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buch-angucken.de", true }, { "buchhaltung-muehelos.de", true }, { "buchwegweiser.com", true }, - { "buck-hydro.de", false }, + { "buck-hydro.de", true }, { "buckelewrealtygroup.com", true }, { "bucketlist.co.ke", true }, { "buckscountyobgyn.com", true }, @@ -15173,7 +15429,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "budolangnau.ch", true }, { "budolfs.de", true }, { "budowle.pl", true }, - { "bueltge.de", true }, { "buena-vista.cz", true }, { "buena.me", true }, { "bueny.com", true }, @@ -15186,6 +15441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buettgens.net", true }, { "buffaloautomation.com", true }, { "buffaloturf.com.au", true }, + { "buffalowdown.com", true }, { "buffashe.com", false }, { "buffetbouc.com", true }, { "buffup.media", true }, @@ -15198,6 +15454,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buggshop.com", true }, { "bugs.chromium.org", true }, { "bugsmashed.com", true }, + { "bugteam.cn", true }, { "bugu.org", true }, { "bugwie.com", true }, { "bugzil.la", true }, @@ -15260,14 +15517,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bumble.com", true }, { "bumilangkawi.com", true }, { "bunadarbankinn.is", true }, - { "bunbun.be", true }, + { "bunbun.be", false }, { "bund-von-theramore.de", true }, { "bundespolizei-forum.de", true }, { "bundesverband-krisenintervention.de", true }, { "bundesverbandkrisenintervention.de", true }, { "bundito.com", true }, { "bungabuket.com", true }, - { "bungaspa.com", true }, { "bungee.pw", true }, { "bunix.de", true }, { "bunkyo-life.com", true }, @@ -15284,14 +15540,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bupropion.com", true }, { "buqi.cc", true }, { "buradangonder.com", true }, - { "burakogun.com", true }, - { "burakogun.com.tr", true }, - { "burakogun.net", true }, - { "burakogun.net.tr", true }, - { "burakogun.org", true }, + { "burakogun.com", false }, + { "burakogun.com.tr", false }, + { "burakogun.net", false }, + { "burakogun.net.tr", false }, + { "burakogun.org", false }, { "burbankdental.com", true }, { "burcevo.info", true }, { "burchfabrics.com", true }, + { "burdine-andersoninc.com", true }, { "bureaugoodwork.nl", true }, { "burg-hohnstein.com", true }, { "burgawnc.gov", true }, @@ -15353,6 +15610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "businessetmarketing.com", true }, { "businessfactors.de", true }, { "businessfurs.info", true }, + { "businessgram.eu", true }, { "businesshub.cz", false }, { "businessimmigration-eu.com", true }, { "businessimmigration-eu.ru", true }, @@ -15374,7 +15632,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "busybee360.com", true }, { "busyon.cloud", true }, { "butarque.es", true }, - { "buthowdoyoubuygroceries.com", true }, { "butikvip.ru", true }, { "butlercountyhistory.org", true }, { "butlerfm.dk", true }, @@ -15408,7 +15665,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buycarpet.shop", true }, { "buycbd.store", true }, { "buycccam.tv", true }, - { "buycoins.top", true }, { "buycook.shop", true }, { "buycurious.co.uk", true }, { "buydiflucan.ml", true }, @@ -15417,6 +15673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buyerdocs.com", true }, { "buyessay.org", true }, { "buyessays.net", true }, + { "buyguideonline.com", true }, { "buyharpoon.com", true }, { "buyhealth.shop", true }, { "buyinginvestmentproperty.com", true }, @@ -15444,7 +15701,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buzzcontent.com", true }, { "buzzpop.tv", true }, { "buzzprint.it", true }, - { "buzzrow.com", true }, { "bvbmedia.nl", true }, { "bvexplained.co.uk", true }, { "bvgt.org", true }, @@ -15531,6 +15787,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bypass.sh", true }, { "bypetula.cz", true }, { "byraje.com", true }, + { "byrest.com", true }, { "byrko.cz", true }, { "byrko.sk", true }, { "byrnesagency.com", true }, @@ -15543,13 +15800,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytanchan.com", true }, { "byte-time.com", true }, { "byte.nl", true }, - { "byte128.com", true }, + { "byte128.com", false }, { "bytearts.net", false }, { "bytebucket.org", true }, { "bytecode.no", true }, { "bytecrafter.com", true }, { "bytecrafter.net", true }, - { "bytedigital.es", true }, { "byteflies.com", true }, { "bytegoing.com", true }, { "bytejail.com", true }, @@ -15558,12 +15814,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytema.re", true }, { "bytema.sk", true }, { "bytemix.cloud", true }, - { "bytenoc.nl", true }, { "bytepen.com", true }, { "bytes.co", true }, { "bytes.fyi", true }, { "bytesatwork.de", true }, - { "byteshark.org", true }, { "byteshift.ca", true }, { "bytesign.de", true }, { "bytesizedalex.com", true }, @@ -15574,7 +15828,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "byteterrace.com", true }, { "bytheglass.gr", true }, { "bytheswordinc.com", true }, - { "bythisverse.com", true }, { "bytrain.net", true }, { "byuu.net", true }, { "byuu.org", true }, @@ -15607,17 +15860,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c35.design", true }, { "c36533.com", true }, { "c36594.com", true }, + { "c3boc.com", true }, { "c3hv.cn", true }, { "c3kidspace.de", true }, + { "c3s.hu", true }, { "c3sign.de", false }, + { "c3soc.de", true }, { "c3softworks.com", true }, + { "c3speak.com", true }, + { "c3speak.de", true }, { "c3vo.de", true }, { "c3w.at", true }, { "c3wien.at", true }, { "c3woc.de", false }, { "c4539.com", true }, { "c4k3.net", true }, - { "c4wlabz.com", true }, { "c5197.co", true }, { "c5h8no4na.net", true }, { "c6729.co", true }, @@ -15628,7 +15885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c81365.com", true }, { "c82365.com", true }, { "c86255.com", true }, - { "c886666.com", false }, + { "c886666.com", true }, { "c899365.com", true }, { "c9297.co", true }, { "c9728.co", true }, @@ -15649,6 +15906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cabelgrano.tk", true }, { "cabezadelcaballo.tk", true }, { "cabforum.org", true }, + { "cabina-photobooth.ro", true }, { "cabineritten.nl", true }, { "cabinet-life.fr", false }, { "cabinetfurnituree.com", true }, @@ -15795,13 +16053,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "caletka.cz", true }, { "calgoty.com", true }, { "calibra.com", true }, - { "calibreapp.com", false }, + { "calibreapp.com", true }, { "calibso.net", true }, { "calichines.com", true }, { "caliderumba.com", true }, { "calidoinvierno.com", true }, { "californiamusicacademy.com", true }, { "californiawomensmedicalclinic.com", true }, + { "calim.com.ar", true }, { "calitateavietii-ardeal.ro", true }, { "calixte-concept.fr", true }, { "call-centervko.kz", true }, @@ -15829,7 +16088,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calminteractive.fr", true }, { "calmtech.com", true }, { "calomel.org", true }, - { "calonmahasiswa.com", true }, { "calories.org", true }, { "calotte-academy.com", true }, { "calposa.ml", true }, @@ -15840,6 +16098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calvin.my", true }, { "calvinallen.net", false }, { "calypso-tour.net", true }, + { "calypsohost.net", true }, { "calyxengineers.com", true }, { "calyxinstitute.org", true }, { "calzadonline1-latam.com", true }, @@ -15917,7 +16176,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campus-discounts.com", true }, { "campus-finance.com", true }, { "campusdrugprevention.gov", true }, - { "campusfit.co", true }, { "campuswire.com", true }, { "campvana.com", true }, { "campwabashi.org", true }, @@ -16046,6 +16304,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capitalism.party", true }, { "capitalist.cf", true }, { "capitalmediaventures.co.uk", true }, + { "capitalmedicals.co.nz", true }, { "capitalonecardservice.com", true }, { "capitalp.jp", true }, { "capitalquadatv.org.nz", true }, @@ -16059,6 +16318,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "caprichosdevicky.com", true }, { "caps.is", true }, { "capsogusto.com", true }, + { "capssouthafrica.co.za", true }, { "capstansecurity.co.uk", true }, { "capstansecurity.com", true }, { "capstoneinsights.com", true }, @@ -16109,9 +16369,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carck.co.uk", true }, { "carck.uk", true }, { "carcloud.ch", true }, + { "carcountking.com", true }, { "card-cashing.com", true }, { "cardano.eco", true }, { "cardanoinvestment.com", true }, + { "cardboard.cx", true }, { "cardcaptorsakura.jp", true }, { "carddreams.be", true }, { "carddreams.de", true }, @@ -16127,7 +16389,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cardloan-manual.net", true }, { "cardoni.net", true }, { "cardozovargas.com", true }, - { "cardozovargas.me", true }, { "cardranking.jp", true }, { "cardrecovery.fr", true }, { "cardse.net", false }, @@ -16150,7 +16411,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "careerdirectionsltd.com", true }, { "careeroptionscoach.com", true }, { "careerpower.co.in", true }, - { "careers.plus", true }, { "careertransformed.com", true }, { "carefulcolor.com", true }, { "caregiverva.org", true }, @@ -16196,6 +16456,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carinsurance.es", true }, { "carinthia.eu", true }, { "carisenda.com", true }, + { "caritascenter.org", true }, { "carium.com", true }, { "carkeysanantonio.com", true }, { "carlavitalesteticista.com", true }, @@ -16218,6 +16479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carlocksmithmesquite.com", true }, { "carlocksmithtucson.com", true }, { "carlosabarbamd.com", true }, + { "carlosbronze.com.br", true }, { "carlosfelic.io", true }, { "carloshmm.com", true }, { "carloshmm.stream", true }, @@ -16263,9 +16525,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carontetourist.hr", true }, { "carontetouristisoleminori.it", true }, { "carousel.ga", true }, - { "carparo.net", true }, { "carpet---cleaning.com", true }, { "carpetandhardwoodflooringpros.com", true }, + { "carpetcleanerswilmington.com", true }, { "carpetcleaning-cypress.com", true }, { "carpetcleaningtomball.com", true }, { "carplus.es", true }, @@ -16273,6 +16535,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carpuya.ga", true }, { "carrabiners.tk", true }, { "carrando.com", true }, + { "carre-jardin.com", true }, { "carre-lutz.com", true }, { "carriedin.com", true }, { "carrierplatform.com", true }, @@ -16285,7 +16548,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cars4salecy.com", true }, { "carseatchecks.ca", true }, { "carshippingcarriers.com", true }, - { "carson-aviation-adventures.com", true }, + { "carsinsuranceis.com", true }, { "carson-matthews.co.uk", true }, { "carsoug.com", true }, { "carspneu.cz", true }, @@ -16333,6 +16596,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casalunchbreak.de", true }, { "casamariposaspi.com", true }, { "casamentos.com.br", true }, + { "casamiento.com.uy", true }, + { "casamientos.com.ar", true }, { "casasparaperross.com", true }, { "casasuara.com", true }, { "casasuleletrodomesticos.com.br", true }, @@ -16347,6 +16612,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casecoverkeygi.com", true }, { "casecurity.org", true }, { "caseificio.roma.it", true }, + { "caselemnbarat.ro", true }, { "caseof.fr", true }, { "caseplus-daem.de", true }, { "cases.lu", true }, @@ -16366,6 +16632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cashforcarremovalsipswich.com.au", true }, { "cashfortulsahouses.com", true }, { "cashlogic.ch", false }, + { "cashmanagerbg.com", true }, { "cashmaxtexas.com", true }, { "cashontime.com", true }, { "cashplk.com", true }, @@ -16465,6 +16732,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catharisme.eu", false }, { "catharisme.net", true }, { "catharisme.org", true }, + { "catharsist.com", true }, { "cathcartandwinn.com", true }, { "catherinejf.com", true }, { "catherinejflee.com", true }, @@ -16501,12 +16769,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catuniverse.org", true }, { "catus.moe", true }, { "catveteran.com", true }, + { "catvsmice.com", true }, { "caudo.net", true }, { "caudohay.com", true }, { "caughtredhanded.co.nz", true }, { "caulfieldeastapartments.com.au", true }, { "caulfieldracecourseapartments.com.au", true }, { "caulong-ao.net", true }, + { "causebox.com", true }, { "cav.ac", true }, { "cavac.at", true }, { "cavaleirocity.com.br", true }, @@ -16519,6 +16789,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cavzodiaco.com.br", true }, { "caxalt.com", true }, { "caycehouse.com", true }, + { "caylee.de", true }, { "caylercapital.com", true }, { "cazaviajes.es", true }, { "cazes.info", true }, @@ -16549,8 +16820,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cbsdeheidevlinder.nl", true }, { "cbt.tj", true }, { "cbw.sh", true }, + { "cbxp.in", true }, { "cc-customer.de", true }, - { "cc00228.com", false }, + { "cc00228.com", true }, { "cc5197.co", true }, { "cc6729.co", true }, { "cc6729.com", true }, @@ -16587,7 +16859,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cctv-supraveghere.ro", true }, { "cctvcanada.net", true }, { "cctvsecurityjohannesburg.co.za", true }, - { "cctvview.info", true }, + { "cctvview.info", false }, { "ccu.io", true }, { "ccu.plus", true }, { "ccuuu.com", true }, @@ -16672,6 +16944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "celebritypics.co", true }, { "celebrityscope.net", true }, { "celebritytopnews.tk", true }, + { "celebxx.com", true }, { "celec.gob.ec", false }, { "celectro-pro.com", true }, { "celestebonito.pt", true }, @@ -16698,6 +16971,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cenatorium.pl", true }, { "cencalvia.org", true }, { "cendata.co.uk", true }, + { "cendi.gov", true }, + { "cenfo.dk", true }, { "cennelley.com", true }, { "cennelly.com", true }, { "censurfridns.dk", true }, @@ -16783,6 +17058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cerberis.com", true }, { "cerberusinformatica.it", true }, { "cerebelo.info", true }, + { "cerebrosano.gov", true }, { "ceredowv.gov", true }, { "cerena-silver.ru", true }, { "ceres-corp.org", true }, @@ -16810,9 +17086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "certificazioni-energetiche.it", true }, { "certifiedfieldassociate.com", true }, { "certifiednurses.org", true }, - { "certisoncologysolutions.com", true }, - { "certmonitor.com.au", true }, - { "certmonitor.net", true }, + { "certifix.eu", true }, { "certnazionale.it", true }, { "certspotter.com", true }, { "certspotter.org", true }, @@ -16909,6 +17183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chaleur.com", true }, { "chalkfestival.org", false }, { "challengerinvestors.tk", true }, + { "challenges.gov", true }, { "challengeskins.com", true }, { "challstrom.com", true }, { "chalupalokovka.cz", true }, @@ -16932,10 +17207,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "championweb.sg", false }, { "champonthis.de", true }, { "chamsochoa.com", true }, + { "chanakyanewz.com", true }, { "chancekorte.com", true }, { "chancekorte.net", true }, { "chancekorte.org", true }, { "chanddriving.co.uk", true }, + { "chanderson.com.au", true }, { "chandr1000.ga", true }, { "change-coaching-gmbh.ch", true }, { "changeanalytics.io", true }, @@ -16957,6 +17234,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chaos.run", true }, { "chaoscastles.co.uk", true }, { "chaoschemnitz.de", true }, + { "chaoscommunication.camp", true }, { "chaosdorf.de", true }, { "chaosfield.at", true }, { "chaosorchestra.com", true }, @@ -17009,6 +17287,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charlylou.de", true }, { "charmander.me", true }, { "charmanterelefant.at", true }, + { "charmcitytech.com", true }, { "charmingsaul.com", true }, { "charmyadesara.com", true }, { "charonsecurity.com", true }, @@ -17038,7 +17317,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chatbotclick.com", true }, { "chatbots.email", true }, { "chatbots.systems", true }, - { "chatear.social", true }, { "chateau-belvoir.com", true }, { "chateau-de-lisle.fr", true }, { "chateaudestrainchamps.com", false }, @@ -17060,6 +17338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chatucomputers.com", true }, { "chaturbate.com", true }, { "chaturbate.com.tw", true }, + { "chaturbate.global", true }, { "chaturbates.org", true }, { "chatxp.com", true }, { "chatzimanolis.com", true }, @@ -17103,7 +17382,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheapsharedhost.com", true }, { "cheapsharedhost.org", true }, { "cheapsmall.tk", true }, - { "cheapsslrenewal.com", true }, { "cheapsslsecurity.com.au", true }, { "cheapsslsecurity.com.ph", true }, { "cheapticket.in", true }, @@ -17121,6 +17399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "checkblau.de", true }, { "checkecert.nl", true }, { "checkmatewebsolutions.com", true }, + { "checkmedia.org", true }, { "checkmin.cf", true }, { "checkmyessay.com", true }, { "checkmyhttps.net", true }, @@ -17155,7 +17434,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chefcuisto.com", true }, { "chefkoch.de", true }, { "chefpablito.tk", true }, - { "chefz.co", true }, { "chehalemgroup.com", true }, { "cheladmin.ru", true }, { "chelema.xyz", true }, @@ -17177,7 +17455,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chenapartment.com", true }, { "cheneypartners.com", true }, { "chengarda.com", true }, - { "chengbet.net", true }, { "chengfayun.com", true }, { "chenghao360.top", true }, { "chengl.com", true }, @@ -17280,6 +17557,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chilihosting.eu", true }, { "chilikin.pro", true }, { "chilimath.com", false }, + { "chilimathwords.com", true }, { "chilio.net", true }, { "chilipepperhomes.com", true }, { "chillebever.nl", true }, @@ -17288,7 +17566,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chima.us", true }, { "chimeratool.com", true }, { "chimerity.com", true }, - { "chimho.de", true }, { "chimm.cc", true }, { "chimpanzee.net", true }, { "chimpmatic.com", true }, @@ -17317,7 +17594,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chips-scheduler.de", true }, { "chipset.no", true }, { "chiralsoftware.com", true }, - { "chireiden.net", true }, { "chiro-neuchatel.ch", false }, { "chiropractic.gr", true }, { "chiropracticwpb.com", true }, @@ -17331,7 +17607,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chirurgoplastico.roma.it", true }, { "chisago-isantidfl.com", true }, { "chit.search.yahoo.com", false }, - { "chita.com.br", true }, { "chizipoms.com", true }, { "chk-ccs.com", true }, { "chksite.com", true }, @@ -17350,7 +17625,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chmsoft.ru", true }, { "chmurakotori.ml", true }, { "choc-o-lush.co.uk", true }, - { "chocamekong.com", true }, { "chocgu.com", true }, { "chocolah.com.au", false }, { "chocolat-suisse.ch", false }, @@ -17413,7 +17687,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrisplankhomes.com", true }, { "chrispstreet.com", true }, { "chrisseoguy.com", true }, - { "chrisshort.net", true }, + { "chrisshort.net", false }, { "chrissmiley.co.uk", true }, { "chrisspencercreative.com", true }, { "chrisspencermusic.com", true }, @@ -17422,8 +17696,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christchurchbouncycastles.co.uk", true }, { "christec.net", true }, { "christensenplace.us", true }, + { "christerwaren.fi", true }, { "christiaanconover.com", true }, - { "christian-fischer.pictures", true }, { "christian-folini.ch", true }, { "christian-gredig.de", true }, { "christian-host.com", true }, @@ -17461,6 +17735,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christmascard.be", true }, { "christmaspartyhire.co.uk", true }, { "christoph-conrads.name", true }, + { "christoph-gadow.de", true }, { "christophbartschat.com", true }, { "christophebarbezat.ch", true }, { "christopher-simon.de", true }, @@ -17493,8 +17768,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrome.google.com", true }, { "chromebookchart.com", true }, { "chromebooksforwork.com", true }, - { "chromereporting-pa.googleapis.com", true }, - { "chromeworld.ru", true }, { "chromiumbugs.appspot.com", true }, { "chromiumcodereview.appspot.com", true }, { "chromopho.be", true }, @@ -17581,6 +17854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ciliberto.org", true }, { "cilloc.be", true }, { "cima-idf.fr", true }, + { "cimaflash.co", true }, { "cimbalino.org", true }, { "cimballa.com", true }, { "cimfax.com", true }, @@ -17590,7 +17864,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cindey.io", true }, { "cindydudley.com", true }, { "cine-music.de", true }, - { "cinefilia.tk", true }, { "cinefilzonen.se", true }, { "cinefun.net", true }, { "cinema.paris", true }, @@ -17620,6 +17893,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cipartyhire.co.uk", true }, { "cipher.team", true }, { "cipherboy.com", true }, + { "cipherli.st", false }, { "ciphersuite.info", true }, { "ciphrex.com", true }, { "cipri.com", true }, @@ -17644,12 +17918,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "circus-maximus.de", true }, { "cirfi.com", true }, { "ciri.com.co", true }, - { "cirrus0.de", true }, { "cirruslab.ch", true }, { "cirujanooral.com", true }, { "cirvapp.com", true }, { "cisa.gov", true }, - { "ciscodude.net", true }, + { "ciscodude.net", false }, { "cisoaid.com", true }, { "cisofy.com", true }, { "cispeo.org", true }, @@ -17675,6 +17948,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "citizensgbr.org", true }, { "citizenslasvegas.com", true }, { "citizensleague.org", true }, + { "citizenspact.eu", true }, { "citizing.org", true }, { "citrusui.me", true }, { "citsc.de", true }, @@ -17840,15 +18114,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clean-mailbox.com", true }, { "cleanapproachnw.com", true }, { "cleanbrowsing.org", true }, - { "cleancode.club", true }, { "cleandetroit.org", true }, { "cleandogsnederland.nl", true }, { "cleanfiles.us", true }, { "cleango.pl", true }, { "cleanhouse2000.us", true }, { "cleaningservicejulai.com", true }, - { "cleaningsolutionn.com", true }, { "cleaningsquad.ca", false }, + { "cleankey.jp", true }, { "cleanplanet.co.jp", true }, { "cleansewellness.com", true }, { "clearance365.co.uk", true }, @@ -17856,7 +18129,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clearbooks.co.uk", true }, { "clearbookscdn.uk", true }, { "clearbreezesecuritydoors.com.au", true }, - { "clearchaos.net", true }, { "clearchatsandbox.com", true }, { "clearer.cloud", true }, { "clearip.com", true }, @@ -17908,15 +18180,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "client.coach", false }, { "clientboss.com", true }, { "clientcms.co.uk", true }, + { "clientesal100.com", true }, { "clientesendemanda.com", true }, { "clientportal.com", true }, { "clientsecure.me", true }, { "cliffbreak.de", true }, { "cliffburton.tk", true }, { "clifflu.net", true }, - { "cliffyb.com", true }, { "climaencusco.com", true }, - { "climaprecio.es", true }, { "climateinteractive.org", true }, { "climatestew.com", true }, { "climatgate.tk", true }, @@ -17926,7 +18197,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clingout.com", true }, { "clinicaarques.es", true }, { "clinicadentalados.com", true }, - { "clinicadentalvinateros.es", true }, + { "clinicadentalvinateros.es", false }, { "clinicainfinitydental.com", true }, { "clinicalrehabilitation.info", true }, { "clinicaltrialpodcast.com", true }, @@ -17946,7 +18217,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clip.ovh", true }, { "clipchamp.com", true }, { "clipclip.com", true }, - { "clippingpathsupport.com", true }, { "clippings.com", true }, { "cliqz.com", true }, { "clive.io", true }, @@ -17980,7 +18250,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloud.bugatti", true }, { "cloud.fail", true }, { "cloud.google.com", true }, - { "cloud.gov", true }, + { "cloud.gov", false }, { "cloud10.io", true }, { "cloud255.com", true }, { "cloud42.ch", false }, @@ -18002,6 +18272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudcloudcloud.cloud", true }, { "cloudclouds.com", true }, { "cloudcrux.net", true }, + { "clouddark.xyz", true }, { "clouddesk.co.uk", true }, { "clouddog.com.br", true }, { "cloudeezy.com", true }, @@ -18048,7 +18319,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudspace-analytics.com", true }, { "cloudspeedy.net", true }, { "cloudspire.net", true }, - { "cloudsters.nl", true }, + { "cloudsters.nl", false }, { "cloudteam.de", true }, { "cloudtocloud.tk", true }, { "cloudtropia.de", true }, @@ -18081,6 +18352,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "club-jose.com", true }, { "club-leondehuanuco.tk", true }, { "club-premiere.com", true }, + { "club-reduc.com", true }, { "club-slow.jp", true }, { "club-yy.com", true }, { "club.zj.cn", true }, @@ -18118,7 +18390,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clutch.ua", true }, { "clwrota.com", true }, { "clycat.ru", true }, + { "cm-agueda.pt", true }, { "cm-loures.pt", true }, + { "cm-pombal.pt", true }, + { "cm-portimao.pt", true }, + { "cm-vpaguiar.pt", true }, { "cmacacias.ch", true }, { "cmadeangelis.it", true }, { "cmavs.com", true }, @@ -18144,6 +18420,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cmplainpalais.ch", true }, { "cmpsc.uk", true }, { "cmrss.com", true }, + { "cms-service24.de", true }, { "cms-weble.jp", true }, { "cmshangu.com", true }, { "cmskakuyasu.info", true }, @@ -18186,7 +18463,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "co50.com", true }, { "coa.one", true }, { "coachapp-ipass.herokuapp.com", true }, - { "coachbakery.com", true }, { "coachezmoi.ch", false }, { "coachfederation.ro", true }, { "coaching-harmonique.fr", true }, @@ -18195,6 +18471,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coachsystem.ru", true }, { "coalitionministries.org", true }, { "coalpointcottage.com", true }, + { "coastalpowder.com.au", true }, { "coastalurgentcarebatonrouge.com", true }, { "coastalurgentcarebossier.com", true }, { "coastalurgentcaregonzales.com", true }, @@ -18213,6 +18490,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cobaltgp.com", true }, { "cobaltis.co.uk", true }, { "cobracastles.co.uk", true }, + { "cobraprotectionfl.com", true }, + { "coc.de", false }, { "cocaine-import.agency", true }, { "cocaine.ninja", true }, { "cocalc.com", true }, @@ -18222,6 +18501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coccinellaskitchen.de", true }, { "coccinellaskitchen.it", true }, { "coccolebenessere.it", true }, + { "cochem-zell-online.de", false }, { "cocinoyo.com", true }, { "cock.li", false }, { "cockedey.in", true }, @@ -18301,6 +18581,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codereview.appspot.com", true }, { "codereview.chromium.org", true }, { "coderhangout.com", true }, + { "coderjesus.com", true }, { "codersatlas.co", true }, { "codersatlas.com", true }, { "codersatlas.xyz", true }, @@ -18359,7 +18640,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cogeneration-energy.com", true }, { "cogent.cc", true }, { "cogilog.com", true }, - { "cogitoltd.com", true }, { "cognicom-gaming.com", true }, { "cognitip.com", true }, { "cognitiveapplications.net", true }, @@ -18400,7 +18680,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coins2001.ru", true }, { "coinsmat.com", true }, { "coinsuggest.com", true }, - { "coinsz.co", true }, { "cointosh.jp", true }, { "coinvex.org", true }, { "coinx.pro", true }, @@ -18422,6 +18701,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colchonesmoon.com", true }, { "colchonminicuna.com", false }, { "colcomm.com", true }, + { "colcompany.com", true }, { "coldaddy.com", true }, { "coldawn.com", false }, { "coldcardwallet.com", true }, @@ -18484,10 +18764,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "collins.kg", true }, { "colloquy.mobi", true }, { "colo-tech.com", true }, + { "colocation-rennes.com", true }, { "cololi.moe", true }, { "colombiajeans.co", true }, { "colombian.dating", true }, { "colombianas.webcam", true }, + { "colonialfurniturestripping.com", true }, { "colonize.africa", true }, { "coloppe.com", true }, { "color01.net", true }, @@ -18511,12 +18793,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colotimes.com", true }, { "colourfulcastles.co.uk", true }, { "colourmanagementpro.com", true }, - { "colpacpackaging.com", true }, { "colpatriaws.azurewebsites.net", true }, { "colson-occasions.be", false }, { "coltellisurvival.com", true }, { "coltonrb.com", true }, { "columbiacountyor.gov", true }, + { "columbiascaffolding.com", true }, { "columbushydroxide.com", true }, { "columbushydroxide.net", true }, { "columbushydroxide.org", true }, @@ -18551,6 +18833,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comercialroxana.com", true }, { "comercialtpv.com", true }, { "comercialtrading.eu", true }, + { "comerciositio.com", true }, { "comerford.net", true }, { "comestoarra.com", true }, { "cometbot.cf", true }, @@ -18587,6 +18870,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "commercezen.com", true }, { "commercia.srl", true }, { "commercial-academy.fr", true }, + { "commercial.lviv.ua", true }, { "commercialcleaningbrisbane.com.au", true }, { "commeunamour.com", true }, { "commissaris-vraagbaak.nl", true }, @@ -18599,10 +18883,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "commoncore4kids.com", true }, { "commons-mayflower.tk", true }, { "commonsenseamericanpolitics.com", true }, + { "commonsensedivorce.ca", true }, { "communalconsulting.org", true }, { "communiques.info", true }, { "communiquons.org", true }, { "communist-party.tk", true }, + { "community-pro.de", true }, + { "community-pro.net", true }, { "communitychurchafrica.co.za", true }, { "communitycodeofconduct.com", true }, { "communityhealthservices.co.uk", true }, @@ -18632,11 +18919,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comp2go.com.au", true }, { "compactchess.cc", true }, { "compagnia-buffo.de", false }, + { "compagniedesateliers.com", true }, { "compagniemartin.com", false }, { "compalliance.com", true }, { "companion-web.net", true }, { "comparatif-moto.fr", true }, - { "compareinsurance.com.au", true }, { "comparelegalforms.com", true }, { "comparemymobile.com", true }, { "comparesoft.com", true }, @@ -18660,7 +18947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compibus.fr", true }, { "compilenix.org", true }, { "compitak.com", true }, - { "completefloorcoverings.com", true }, { "completesecurityessex.co.uk", true }, { "completesecurityessex.com", true }, { "completionist.me", true }, @@ -18677,6 +18963,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compliantbusinessprocessing.com", true }, { "complt.xyz", true }, { "componentshop.co.uk", true }, + { "composersforum.org", true }, { "compositedevtec.tk", true }, { "compostatebien.com.ar", true }, { "compostelle-bouddha.fr", true }, @@ -18711,7 +18998,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "computer-menschen.de", true }, { "computer-science-schools.com", true }, { "computerassistance.co.uk", true }, - { "computerbas.nl", false }, + { "computerbas.nl", true }, { "computerbase.de", true }, { "computercamaccgi.com", true }, { "computercraft.net", true }, @@ -18727,6 +19014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comumlab.org", true }, { "comunal.co", true }, { "comunic.io", true }, + { "comunicat.global", true }, { "comunidadmontepinar.es", true }, { "comuniondelucia.com", true }, { "comvos.de", true }, @@ -18739,6 +19027,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conceptatelier.de", true }, { "concertengine.com", true }, { "concerto.amsterdam", true }, + { "concerts-metal.ch", false }, { "concertsenboite.fr", true }, { "concertsto.com", true }, { "concetrabajos.cl", true }, @@ -18773,6 +19062,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conejovalleylandscapelighting.com", true }, { "conejovalleylighting.com", true }, { "conejovalleyoutdoorlighting.com", true }, + { "conexiontransporte.com", true }, { "conference-expert.eu", true }, { "conference.dnsfor.me", true }, { "confiancefoundation.org", true }, @@ -18820,6 +19110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "connectnet247.com", true }, { "connecto-data.com", true }, { "connectum.eu", true }, + { "connelink.fr", true }, { "conner.work", true }, { "connexas.eu", true }, { "connexfilter.com", true }, @@ -18846,6 +19137,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conradcartagena.com", true }, { "conradkostecki.de", true }, { "conradsautotransmissionrepair.com", true }, + { "conrazon.me", true }, { "consagracionamariasantisima.org", true }, { "consciente.ch", true }, { "consciente.ngo", true }, @@ -18867,7 +19159,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "console.rest", true }, { "consoleuniverse.tk", true }, { "consommateuraverti.com", true }, - { "consommation-locale.fr", true }, { "consonare.de", true }, { "constant-rough.de", true }, { "consteval.org", true }, @@ -18899,19 +19190,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "consultoriosodontologicos.com.br", true }, { "consultpetkov.com", true }, { "consulvation.com", true }, + { "consumeraction.gov", true }, { "consumeractionlawgroup.com", true }, { "consumerfiles.com", true }, { "consumersentinel.gov", true }, { "consuwijzer.nl", true }, + { "contabilidadebhpampulha.com.br", true }, { "contabilidadebrooklin.com.br", true }, { "contact.inc", true }, { "contact.xyz", true }, { "contactaffix.com", true }, + { "contaminatie.nl", true }, { "contaquanto.com.br", true }, { "contemplativeeducation.org", true }, { "content-api-dev.azurewebsites.net", false }, { "contentcoms.co.uk", true }, - { "contenthosting.com.br", true }, { "contentmarathon.com", true }, { "contentpass.net", true }, { "contentq.nl", true }, @@ -18953,7 +19246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "convertimg.com", true }, { "convexset.org", true }, { "convocatoriafundacionpepsicomexico.org", false }, - { "conxcon.de", false }, + { "conxcon.de", true }, { "coochiehacks.io", true }, { "cookcountyclerkil.gov", true }, { "cooker.fr", true }, @@ -18961,8 +19254,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cookicons.co", true }, { "cookie4.com", true }, { "cookieandkate.com", true }, + { "cookiecorner.com", true }, { "cookiecrook.com", true }, - { "cookiee.net", false }, { "cookiesoft.de", true }, { "cookiestudies.cf", true }, { "cooking-sun.com", true }, @@ -18997,7 +19290,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coomonte.tk", true }, { "coon.fr", true }, { "coonawarrawines.com.au", true }, - { "coondesign.ch", true }, { "coonelnel.net", true }, { "coore.jp", true }, { "coorpacademy.com", true }, @@ -19010,6 +19302,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coppermein.co.za", true }, { "coppidesentupidora.com.br", true }, { "copplaw.com", true }, + { "coprotag.com", true }, + { "coprotag.fr", true }, { "coptel.cz", true }, { "coptkm.cz", true }, { "copycaught.co", true }, @@ -19033,6 +19327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corbi.net.au", true }, { "cordejong.nl", true }, { "cordemar.info", true }, + { "cordemar.org", true }, { "corder.tech", true }, { "cordeydesign.ch", false }, { "cordis.io", true }, @@ -19048,7 +19343,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coreapm.org", true }, { "corecdn.org", true }, { "corecodec.com", true }, - { "corehealthberks.com", true }, + { "coredns.rocks", true }, { "coreless-stretchfilm.com", true }, { "corelia.net", true }, { "corepartners.com.ua", true }, @@ -19058,6 +19353,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coreup.de", true }, { "corevetconnect.co.uk", true }, { "coreyjmahler.com", true }, + { "corgei.com", true }, { "corgi.party", true }, { "coribi.com", true }, { "corinastefan.ro", true }, @@ -19105,6 +19401,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corpuschristisouthriver.org", true }, { "corpusslayer.com", true }, { "corrbee.com", true }, + { "correct.cf", true }, { "correctconstructions.com.au", true }, { "correctemails.com", true }, { "correcthorse.cf", true }, @@ -19117,7 +19414,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corrupted.io", true }, { "corruptos.tk", true }, { "corsa-b.uk", true }, - { "corscanplus.com", true }, { "corsectra.com", true }, { "corsicalaw.com", true }, { "corsihaccpsicurezzalavoro.it", true }, @@ -19225,9 +19521,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "courses.nl", true }, { "courseworkbank.info", true }, { "couscous.recipes", true }, - { "coussinsky.net", true }, { "couvreur-hinault.fr", true }, { "covbounce.co.uk", true }, + { "coveragecareservices.co.uk", true }, { "coveredinspiders.com", true }, { "covermytrip.com.au", true }, { "covershousing.nl", true }, @@ -19278,6 +19574,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cpls.me", true }, { "cplus.me", true }, { "cplusplus.se", true }, + { "cpoinnovation.com", true }, { "cppan.org", true }, { "cppaste.org", true }, { "cppressinc.com", true }, @@ -19386,7 +19683,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crbug.com", true }, { "crc-bank.com", true }, { "crc-search.com", true }, - { "crcd.com.ua", true }, { "crdmendoza.net", true }, { "crea-etc.net", false }, { "crea-shops.ch", true }, @@ -19421,7 +19717,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creativeangles.in", true }, { "creativebites.de", true }, { "creativecaptiv.es", true }, - { "creativecenter.pro", true }, { "creativecommons.gr", true }, { "creativecommons.org", true }, { "creativecommonscatpictures.com", true }, @@ -19457,7 +19752,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "credit-default-swaps.tk", true }, { "creditdigital.uk", true }, { "creditif.tk", true }, - { "creditmonkey.pro", true }, + { "creditkarma.com", true }, { "credito360.pt", true }, { "creditor.tk", true }, { "creditorapido.pt", true }, @@ -19528,6 +19823,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cristianonascimento.ml", true }, { "cristianuibar.com", true }, { "critcola.com", true }, + { "critical.software", true }, { "critical.today", false }, { "criticalgenesis.tk", true }, { "criticalsurveys.co.uk", true }, @@ -19625,30 +19921,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cry-sys.de", true }, { "cry.nu", false }, { "cryoblaster.com", true }, + { "cryoflesh.com", true }, { "cryogenix.net", true }, { "cryothanasia.com", true }, { "cryp.no", true }, { "crypkit.com", true }, { "crypt.is-by.us", true }, { "cryptearth.de", true }, + { "cryptecks.cf", true }, { "crypted.chat", true }, { "crypteianetworks.com", true }, { "cryptex.net", true }, { "cryptex.pw", true }, { "cryptizy.com", true }, { "crypto-clix.xyz", true }, - { "crypto.cat", false }, + { "crypto.cat", true }, { "crypto.graphics", true }, { "crypto.is", false }, { "cryptobin.co", true }, { "cryptocaseproject.com", true }, { "cryptoclix.website", true }, { "cryptocon.org", true }, - { "cryptodigitalgroup.com", true }, { "cryptofan.org", true }, + { "cryptofomo.capital", true }, + { "cryptofomocapital.com", true }, { "cryptofox.nl", true }, { "cryptography.ch", true }, - { "cryptography.io", true }, { "cryptoguidemap.com", true }, { "cryptoholic.co", true }, { "cryptoisnotacrime.org", true }, @@ -19686,6 +19984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crys.tv", true }, { "crystal-zone.com", true }, { "crystalapp.ca", true }, + { "crystalblockchain.com", true }, { "crystalchandelierservices.com", true }, { "crystalgrid.net", true }, { "crystaloscillat.com", true }, @@ -19723,7 +20022,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csfm.com", true }, { "csgf.fun", true }, { "csgf.ru", true }, - { "csgo.design", true }, { "csgo.help", true }, { "csgo.su", true }, { "csgo77.com", true }, @@ -19751,6 +20049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cspvalidator.org", true }, { "csrichter.com", true }, { "csru.net", true }, + { "css-tricks.com", true }, { "css-tricks.tk", true }, { "css.direct", false }, { "css.net", true }, @@ -19774,6 +20073,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ctc-transportation.com", true }, { "ctcom-peru.com", true }, { "ctcue.com", true }, + { "ctemplar.com", true }, { "ctes.cz", true }, { "ctf-albstadt.de", true }, { "ctf.link", true }, @@ -19837,6 +20137,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cuckoo.ee", true }, { "cuckoopalace.cn", true }, { "cuddlecat.io", true }, + { "cuddlecomfort.com", true }, { "cuddlingyaks.com", true }, { "cudoo.de", true }, { "cuegee.com", true }, @@ -19853,6 +20154,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cultivo.bio", true }, { "cultofd50.org", true }, { "cultofperf.org.uk", true }, + { "cultrix.co.uk", true }, { "cultura10.com", true }, { "culturabrasilia.tk", true }, { "culturalparadiso.tk", true }, @@ -19924,7 +20226,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "curtislinville.net", true }, { "curtissmith.me.uk", true }, { "curtissmith.uk", true }, - { "curva.co", true }, + { "curva.co", false }, { "curvemedia.co", true }, { "curveprotect.com", true }, { "curveprotect.cz", true }, @@ -19953,9 +20255,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "customwebsitesplus.com", true }, { "customwritings.com", true }, { "customwritten.com", true }, + { "custosd.com", true }, + { "custosd.io", true }, + { "custosd.net", true }, + { "custosd.org", true }, { "cutephil.com", true }, { "cuteselfie.com", true }, { "cutieland.to", true }, + { "cutienautica.com", true }, { "cutimbo.ovh", true }, { "cutlinks.ml", true }, { "cutmylink.gq", true }, @@ -20002,6 +20309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cwc.gov", true }, { "cwgaming.co.uk", true }, { "cwilson.ga", true }, + { "cwinfo.net", true }, { "cwmart.in", true }, { "cwningen.cymru", false }, { "cwr.gov", true }, @@ -20025,8 +20333,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyber-core.co.uk", true }, { "cyber-shield.de", false }, { "cyber-travel.com", true }, - { "cyber-wolfs.com", true }, { "cyber-yaroslavl.tk", true }, + { "cyber.gov", true }, { "cyber.je", true }, { "cyberatlantis.com", true }, { "cybercareers.gov", true }, @@ -20057,7 +20365,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyberianhusky.com", false }, { "cyberium-planet.cf", true }, { "cyberlab.kiev.ua", false }, - { "cyberlab.team", true }, { "cyberlegal.co", true }, { "cybermaniac.tk", true }, { "cyberme.sh", true }, @@ -20079,6 +20386,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybersantri.com", true }, { "cyberscan.io", true }, { "cybersecurite-info.fr", true }, + { "cybersecurity.gov", true }, { "cybersecurity.gr", true }, { "cybersecurity.run", true }, { "cybersecuritychallenge.be", false }, @@ -20142,6 +20450,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cypherpunk.ws", true }, { "cypressinheritancesaga.com", true }, { "cypresslegacy.com", true }, + { "cyprus-company-for.gr", true }, { "cyprus-company-service.com", true }, { "cyrano-books.com", true }, { "cyraus.com", false }, @@ -20149,7 +20458,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cysmo.de", true }, { "cyson.tech", true }, { "cytat.tk", true }, - { "cytech.com.tr", true }, { "cytegic-update-packages.com", true }, { "cythereaxxx.com", true }, { "cyumus.com", true }, @@ -20181,9 +20489,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d-parts24.de", true }, { "d-toys.com.ua", true }, { "d-training.de", true }, + { "d-vision-create.com", true }, { "d-vision-web.com", true }, { "d.nr", true }, - { "d00228.com", false }, + { "d00228.com", true }, { "d00d.de", true }, { "d0g.cc", true }, { "d0m41n.name", true }, @@ -20234,7 +20543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d8787.net", true }, { "d88-livechat.com", true }, { "d88.ag", true }, - { "d88.cc", false }, + { "d88.cc", true }, { "d88.cn.com", true }, { "d88.com", true }, { "d88.xyz", true }, @@ -20260,7 +20569,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d88333.com", true }, { "d8834.com", true }, { "d883vip.com", true }, - { "d8841.com", true }, { "d8842.com", true }, { "d8843.com", true }, { "d8845.com", true }, @@ -20289,6 +20597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d8861.net", true }, { "d886119.com", true }, { "d8862.com", true }, + { "d8862.net", true }, { "d8863.com", true }, { "d8863.net", true }, { "d8864.com", true }, @@ -20437,7 +20746,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dachdeckermeister-egon-weiss.de", true }, { "dachtechnik-windschuettl.de", true }, { "daciaforum.nl", true }, - { "daciamodellen.nl", true }, { "dadadani.xyz", true }, { "dadafterforty.be", true }, { "daddybio.com", true }, @@ -20481,6 +20789,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daikoz.com", true }, { "daily-exps.herokuapp.com", true }, { "dailybits.be", true }, + { "dailyblocks.com", true }, { "dailyblogged.com", true }, { "dailychristianpodcast.com", true }, { "dailydote.com", true }, @@ -20489,6 +20798,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dailyhealthguard.com", true }, { "dailykos.com", true }, { "dailynewsclubs.ga", true }, + { "dailyngn.com", true }, { "dailypop.ru", true }, { "dailyrenewblog.com", true }, { "dailyrover.com", true }, @@ -20496,7 +20806,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dailysuperheroes.com", true }, { "dailyxenang.com", true }, { "daimafengzi.com", true }, - { "dairikab.go.id", true }, { "dairyshrine.org", true }, { "daisakuikeda.org", true }, { "daisidaniels.co.uk", true }, @@ -20517,7 +20826,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dakotasjoint.com", true }, { "dakshm.in", true }, { "daktarisys.com", true }, - { "dal.net.sa", true }, { "daladubbeln.se", true }, { "dalaran.city", true }, { "dalb.in", true }, @@ -20536,6 +20844,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dallinbryce.com", true }, { "dallmeier.net", true }, { "dalmatiersheusden.be", true }, + { "daltcore.com", true }, { "daltonedwards.me", true }, { "dam74.com.ar", true }, { "damaged.org", true }, @@ -20617,6 +20926,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danielheal.net", false }, { "danielhinterlechner.eu", true }, { "danielhochleitner.de", true }, + { "danielhurley.com", true }, + { "danielhurley.eu", true }, + { "danielhurley.ie", true }, + { "danielhurley.info", true }, + { "danielhurley.org", true }, { "danieliancu.com", true }, { "danieljamesscott.org", true }, { "danieljball.co.uk", true }, @@ -20709,11 +21023,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daoro.net", false }, { "daphne.informatik.uni-freiburg.de", true }, { "daphnes-restaurant.co.uk", true }, - { "dapianw.com", true }, + { "dapim.co.il", true }, { "daplie.com", true }, { "dapoxetinagenerico.cf", true }, { "dapperdom.net", true }, { "dapps.earth", true }, + { "dappui.com", true }, { "dappworld.com", true }, { "daracokorilo.com", true }, { "darani.ch", true }, @@ -20736,12 +21051,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dark-archive.com", true }, { "dark-crystal.tk", true }, { "dark-infection.de", true }, + { "dark-lake.com", true }, { "dark-nova.me", true }, { "dark-nova.tk", true }, { "dark-vision.cz", true }, { "dark.fail", true }, { "dark.ninja", true }, - { "darkag.ovh", true }, { "darkcards.xyz", true }, { "darkcores.net", true }, { "darkdestiny.ch", true }, @@ -20782,6 +21097,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dart-tanke.com", true }, { "dart-tanke.de", true }, { "dartcode.org", true }, + { "dartdriving.com", true }, { "dartetdemetiers.fr", true }, { "darth-sonic.de", true }, { "dartydiscount.fr", true }, @@ -20804,6 +21120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dashwebconsulting.com", true }, { "dasignsource.com", true }, { "dasinternetluegt.at", true }, + { "dasperspektivenwerk.de", true }, { "dassolutions.eu", true }, { "dasteichwerk.at", true }, { "dasug.de", true }, @@ -20852,6 +21169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datalysis.ch", false }, { "dataman.ml", true }, { "datamatic.ru", true }, + { "dataprivacyandsecurityinsider.com", true }, { "dataprivacysolution.com", true }, { "datapun.ch", true }, { "datapure.net", true }, @@ -20966,7 +21284,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidfetveit.com", true }, { "davidfindlay.org", true }, { "davidforward.net", true }, - { "davidfrancoeur.com", true }, + { "davidfrancoeur.com", false }, { "davidgouveia.net", true }, { "davidgow.net", true }, { "davidgreig.uk", true }, @@ -20976,7 +21294,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidje13.com", true }, { "davidkeane.com", true }, { "davidkennardphotography.com", true }, - { "davidking.xyz", false }, + { "davidking.xyz", true }, { "davidlamprea.com", true }, { "davidlamprea.eu", true }, { "davidlane.io", false }, @@ -20985,6 +21303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidlyness.com", true }, { "davidmcevoy.org.uk", true }, { "davidmessenger.co.uk", true }, + { "davidmlujan.com", true }, { "davidmn.org", true }, { "davidnadaski.com", true }, { "davidpearce.com", true }, @@ -21000,6 +21319,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidstuff.net", true }, { "davidtiffany.com", true }, { "davidundetiwan.com", true }, + { "davidyounker.com", true }, { "davidzeegers.nl", true }, { "davidzimmerman3.com", true }, { "davie3.com", true }, @@ -21026,7 +21346,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daydream.team", true }, { "daygametraining.com", true }, { "daylightpirates.org", true }, - { "dayman.net", true }, + { "dayman.net", false }, { "daymprove.life", true }, { "dayofdays.be", true }, { "dayofthegirl.gc.ca", true }, @@ -21035,6 +21355,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daysinnaustin.com", true }, { "daysoftheyear.com", true }, { "dayswithnostabbings.ca", true }, + { "daytonahealthsolutions.com", true }, { "dayuse-hotels.it", true }, { "dayuse.co.uk", true }, { "dayuse.com", true }, @@ -21054,6 +21375,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "db-sanity.com", true }, { "db-works.nl", true }, { "db.ci", true }, + { "db.fyi", true }, { "dbapress.org", true }, { "dbaron.org", true }, { "dbas.cz", true }, @@ -21088,10 +21410,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dcain.me", true }, { "dcards.in.th", true }, { "dcareer.tk", true }, + { "dcarou.com", true }, { "dcave.net", true }, { "dcbouncycastles.co.uk", true }, { "dcc.cat", true }, - { "dcc.moe", true }, { "dccwiki.com", true }, { "dcdestetica.it", true }, { "dcdn.lt", true }, @@ -21111,7 +21433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dcyph.de", true }, { "dd.art.pl", true }, { "dd.center", true }, - { "dd00228.com", false }, + { "dd00228.com", true }, { "dd112d.net", true }, { "dd118d.com", true }, { "dd11d.net", true }, @@ -21169,6 +21491,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dds.pe", true }, { "ddsmatchsouthwest.com", true }, { "ddy.tw", true }, + { "de-groot.it", true }, { "de-gucci.com", true }, { "de-kramers.nl", true }, { "de-mail.info", true }, @@ -21212,7 +21535,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dealerwriter.com", true }, { "dealinflatables.co.uk", true }, { "dealosa.com", true }, - { "dealsale.com", true }, + { "dealproject.org.au", true }, { "dealspotr.com", true }, { "dealszone.net", true }, { "deamuseum.org", true }, @@ -21257,6 +21580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "debraydesign.com.au", true }, { "debron-ot.nl", true }, { "debrusoft.ch", true }, + { "debt.com", true }, { "debtrecycling.com.au", true }, { "debuemon.com", true }, { "debuis.nl", true }, @@ -21300,7 +21624,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decorativeflooring.com", true }, { "decoratore.roma.it", true }, { "decoratrix.com", true }, - { "decorauvent.ca", true }, { "decorincasa.com.br", true }, { "decormiernissanparts.com", true }, { "decorotti.com.tr", true }, @@ -21396,6 +21719,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deflumeriker.com", true }, { "defme.eu", true }, { "defont.nl", true }, + { "defreecefinancial.com", true }, { "defreitas.no", true }, { "deftek.com", true }, { "defterikebir.tk", true }, @@ -21404,7 +21728,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "defunct-engineers.ml", true }, { "defuse.ca", true }, { "defxing.net", true }, - { "degata.com", true }, { "degeberg.com", true }, { "degeberg.dk", true }, { "degeeks.xyz", true }, @@ -21432,11 +21755,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deinelakaien.tk", true }, { "deinfoto.ch", true }, { "deinsparen24.de", true }, + { "deitec-global.com", true }, { "deitti.net", true }, { "dejandayoff.com", true }, { "dejongonline.eu", true }, { "dejting-sidor.com", true }, { "dejure.org", false }, + { "dejvsoft.pl", true }, { "dejw.cz", true }, { "dekasegi-kansai.com", true }, { "dekasegi-supportcenter.com", true }, @@ -21471,8 +21796,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "delid.cz", true }, { "delijan24.ir", true }, { "delio.tk", true }, + { "delirecetas.com", true }, { "delitto.top", true }, - { "delivery.co.at", true }, + { "deliverability.guru", true }, { "delkniga42.ru", true }, { "dellacasapizzasemassas.com.br", true }, { "dellipaoli.com", true }, @@ -21501,7 +21827,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deltaservers.blog.br", true }, { "deltaservers.com.br", true }, { "deltasigmachi.org", true }, - { "deltatutoriais.com.br", true }, { "deltav.ml", false }, { "deltava.org", true }, { "deltawolf.tk", true }, @@ -21546,8 +21871,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "demuzere.eu", true }, { "demuzere.net", true }, { "demuzere.org", true }, + { "den-ka.jp", true }, { "denabot.pw", true }, { "denaehula.com", true }, + { "denahrumah.co", true }, { "denali.net", false }, { "denardbrewing.com", true }, { "denariu.net", true }, @@ -21590,7 +21917,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dental-cloud.eu", true }, { "dental-colleges.com", true }, { "dentallaborgeraeteservice.de", true }, + { "dentaloptimizer.com", true }, + { "dentaltalent.nl", true }, + { "dentalturism.com", true }, { "dentechnica.co.uk", true }, + { "dentistalagoasanta.com.br", true }, { "dentistesdarveauetrioux.com", true }, { "dentistglasgow.com", true }, { "dentistryateastpiedmont.com", true }, @@ -21646,7 +21977,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "depthe.gr", true }, { "depuratori.milano.it", true }, { "der-bank-blog.de", true }, - { "der-fliesenzauberer.de", false }, + { "der-fliesenzauberer.de", true }, { "der-gardinenmann.de", true }, { "der-lan.de", true }, { "der-rohrstock.club", true }, @@ -21734,6 +22065,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "designgears.com", true }, { "designgraphic.fr", true }, { "designhuddle.com", true }, + { "designovus.com", true }, { "designrhome.com", true }, { "designs.codes", true }, { "designsbyjanith.com", true }, @@ -21792,6 +22124,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dethemium.com", true }, { "deti-online.com", true }, { "deti-vse.ml", true }, + { "detiklife.com", true }, { "detiks.cf", true }, { "detki.cf", true }, { "detki24.ru", true }, @@ -21801,6 +22134,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "detrapdoor.com", true }, { "detreannamaria.tk", true }, { "detroit-english.de", true }, + { "detroitjockcity.com", true }, { "detroitzoo.org", true }, { "detski.center", true }, { "detskysad.com", true }, @@ -21859,6 +22193,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "developerdan.com", true }, { "developermail.io", false }, { "developers.facebook.com", false }, + { "developingtheworkforce.co.uk", true }, { "developmentaid.org", true }, { "developmentsites.melbourne", true }, { "develops.co.il", true }, @@ -21869,6 +22204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deviajesturismo.com", true }, { "deviant.email", true }, { "devicom.mx", true }, + { "devignstudios.co.uk", true }, { "devildog.tk", true }, { "devillers-occasions.be", false }, { "devils-co.tk", true }, @@ -21890,10 +22226,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devolution.ws", true }, { "devonsawatzky.ca", true }, { "devopers.com.br", true }, - { "devops-survey.com", true }, { "devops.moe", true }, { "devops.pf", true }, - { "devopsish.com", true }, + { "devopsish.com", false }, { "devpp.com.br", true }, { "devpsy.info", true }, { "devragu.com", true }, @@ -21923,7 +22258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dexigner.com", true }, { "dexonrest.azurewebsites.net", true }, { "dexonservicedeskws.azurewebsites.net", true }, - { "dexonsoftware.com", false }, + { "dexonsoftware.com", true }, { "deyanadeco.com", true }, { "deyute.com", true }, { "dez-online.de", true }, @@ -21968,6 +22303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dgbouncycastlehire.com", true }, { "dgeex.eu", true }, { "dgitup.com", true }, + { "dgl-24.de", true }, { "dgportals.co.uk", true }, { "dgpot.com", true }, { "dgt-portal.de", true }, @@ -21998,7 +22334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dhome.at", true }, { "dhtr.pw", true }, { "dhub.xyz", true }, - { "dhuy.net", false }, + { "dhuy.net", true }, { "dhxxls.com", true }, { "dia-de.com", true }, { "dia.com.br", true }, @@ -22027,8 +22363,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diamantovaburza.cz", true }, { "diamgroup.pl", true }, { "diamond-hairstyle.dk", true }, - { "diamondgrid.ga", true }, { "diamondpkg.org", true }, + { "diamondrose.co.za", false }, { "diamondsleepsolutions.com", true }, { "diamondyacca.co.uk", true }, { "diamondyze.nl", true }, @@ -22048,14 +22384,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diaroma.it", true }, { "diarynote.jp", true }, { "diasdasemana.com", true }, - { "diasp.org", true }, { "diasporadialogues.com", true }, { "diatrofi-ygeia.gr", true }, { "diavo.de", true }, { "diba.org.cn", true }, + { "dibai.tv", true }, { "dibal.ua", true }, { "dibiphp.com", true }, - { "dibrunolab.com", true }, { "diccionarioabierto.com", true }, { "diccionariodedudas.com", true }, { "diccionarqui.com", true }, @@ -22121,6 +22456,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diegogelin.com", false }, { "diegogonzalez.com.co", true }, { "diegorbaquero.com", true }, + { "diehildebrands.de", true }, { "diehl.io", true }, { "diekperaiwseis.gr", true }, { "diem-project.org", true }, @@ -22139,7 +22475,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dieser.me", true }, { "diesicheremail.de", true }, { "diesteppenreiter.de", true }, - { "dietacelulitis.com", true }, { "dietbrand.eu", true }, { "dieterglas.de", true }, { "dietergreven.de", false }, @@ -22158,7 +22493,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diffnow.com", true }, { "diffuzehr.com.au", true }, { "difoosion.com", true }, + { "digchip.com", true }, { "digchip.info", true }, + { "digchip.net", true }, + { "digchip.org", true }, { "digchips.com", true }, { "digcit.org", true }, { "digdata.de", true }, @@ -22208,6 +22546,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalbitbox.com", true }, { "digitalblood.eu", true }, { "digitalbox.jp", false }, + { "digitalcanvas.com.br", true }, { "digitalcash.cf", true }, { "digitalch.ng", true }, { "digitalchurch.ng", true }, @@ -22245,11 +22584,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalid.com", true }, { "digitalid.com.au", true }, { "digitalliteracy.gov", true }, + { "digitallive24.ir", true }, { "digitalmaniac.co.uk", true }, { "digitalmarketingindallas.com", true }, { "digitalpiloten.org", true }, { "digitalposition.com", true }, { "digitalprimate.my", true }, + { "digitalproj.com", true }, { "digitalpuppy.co.uk", true }, { "digitalradio.ie", true }, { "digitalredshirts.com", true }, @@ -22263,6 +22604,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitaltrust.ae", true }, { "digitec.ch", true }, { "digitecgalaxus.ch", true }, + { "digitium.fr", true }, { "digitkon.com", true }, { "digitreads.com", true }, { "digixcellence.com", true }, @@ -22276,7 +22618,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dikiaap.id", true }, { "dilberkebab.co.uk", true }, { "dildoexperten.se", true }, - { "dildosconsoladores.cl", true }, { "diletec.com.br", true }, { "dilibel.be", true }, { "dilichen.fr", true }, @@ -22450,6 +22791,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "disinfestatore.roma.it", true }, { "disinfestatori.com", true }, { "disinfestazione.brescia.it", true }, + { "disinfestazione.napoli.it", true }, { "disinfestazione.torino.it", true }, { "disinfestazione.venezia.it", true }, { "disinfestazione.verona.it", true }, @@ -22488,6 +22830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diskbit.com", true }, { "diskbit.nl", true }, { "disking.co.uk", true }, + { "diskussionsbereich.de", true }, { "dismail.de", true }, { "displayenergycertificate.co.uk", true }, { "displaysfas.com", true }, @@ -22519,7 +22862,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "distributednya.com", true }, { "distributore.it", true }, { "distributori.roma.it", true }, - { "district.sg", true }, { "districtcapital.com", true }, { "distrilogservices.com", true }, { "distro.fr", true }, @@ -22539,7 +22881,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "divelement.ro", true }, { "diveplan.org", true }, { "diver-equipment.eu", true }, - { "divergenz.org", true }, { "diversifiedproduct.com", true }, { "diversityflags.com", true }, { "diversityflags.com.au", true }, @@ -22570,7 +22911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diygeek.com", true }, { "diyibo.com", true }, { "diymediahome.org", true }, - { "diyosun.com", true }, + { "diyosun.com", false }, { "diysec.tk", true }, { "diytechguides.com", true }, { "diyvideoeditor.com", true }, @@ -22650,6 +22991,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlld.com", true }, { "dlld.org", true }, { "dlld.us", true }, + { "dlmit.be", true }, { "dlouwrink.nl", true }, { "dlrsp.org", true }, { "dlscomputers.com.au", true }, @@ -22760,6 +23102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "docemeldoces.com", true }, { "doceo.com", true }, { "dochimera.com", true }, + { "dochub.com", true }, { "dockerbook.com", false }, { "dockerm.com", true }, { "dockerup.net", true }, @@ -22800,12 +23143,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doda.space", true }, { "dodds.cc", true }, { "dodikod.tk", true }, - { "dodomu.ddns.net", true }, { "dodopri.com", true }, { "doenjoylife.com", false }, { "doeren.com", true }, { "doerz.com", true }, - { "does.one", true }, { "doesburg-comp.nl", true }, { "doesinfotech.com", true }, { "doesmycodehavebugs.today", true }, @@ -22827,7 +23168,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doggo.cloud", true }, { "doggo.dance", true }, { "doggo.email", true }, - { "doggroomingcourse.com", true }, + { "doggroomingcourse.com", false }, { "dogma.it", true }, { "dogmap.jp", true }, { "dogodki.today", true }, @@ -22846,19 +23187,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doitexperience.com", true }, { "dojifish.space", true }, { "dojin.nagoya", true }, - { "dojozendebourges.fr", true }, { "dokee.cn", true }, { "dokelio-idf.fr", true }, { "dokhuyenmaigiatot.com", true }, { "doki.space", false }, { "dokipy.no", true }, + { "doko.pl", true }, { "dokspot.cf", true }, { "dokspot.ga", true }, { "doku-gilde.de", true }, { "dokuboard.com", true }, { "dokuraum.de", true }, { "dolarcanadense.com.br", true }, + { "dolarenmexico.com", true }, { "dolcesalatoweb.it", true }, + { "dolcett.pw", true }, { "dolci-delizie.de", true }, { "dolciariasimonini.com", true }, { "dolciterapie.com", true }, @@ -22876,6 +23219,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dolphin-cloud.com", true }, { "dolphin-hosting.com", true }, { "dolphin-it.de", true }, + { "dolphinaris.com.br", true }, + { "dom.blog", true }, { "doma.in", true }, { "domacikavarna.cz", true }, { "domadillo.com", true }, @@ -22883,6 +23228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "domain-skachat.cf", true }, { "domain-speicher.com", true }, { "domain-speicher.de", true }, + { "domain-swiss.ch", true }, { "domain001.info", true }, { "domainedemiolan.ch", false }, { "domainevanina.fr", true }, @@ -23001,6 +23347,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donotcallgov.com", true }, { "donotlink.it", true }, { "donotspellitgav.in", false }, + { "donovankraag.nl", true }, { "donpanda.cz", true }, { "donpomodoro.com.co", true }, { "donsremovals.com.au", true }, @@ -23016,7 +23363,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donutcompany.co.jp", true }, { "dooby.fr", true }, { "dooleylabs.com", true }, - { "dooleytackaberry.com", true }, + { "doolz.co.nz", true }, { "doomoo.com", true }, { "doomsworld.com", true }, { "doomtech.net", true }, @@ -23151,6 +23498,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dovenzorgmalawi.nl", true }, { "dovermotion.com", true }, { "dovizborsa.com", true }, + { "dowell.media", true }, + { "dowellconsulting.com", true }, { "dowhatmakegood.de", true }, { "dowling.nz", true }, { "download-knigi.gq", true }, @@ -23175,6 +23524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doxepin1.gq", true }, { "doxycyclineprices.cf", true }, { "doyleshamrock.com", true }, + { "doyo.tech", true }, { "doyoucheck.com", false }, { "doyouedc.com", true }, { "doyoulyft.com", true }, @@ -23208,8 +23558,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dpucarriersma.gov", true }, { "dpwsweeps.co.uk", true }, { "dr-becarelli-philippe.chirurgiens-dentistes.fr", true }, - { "dr-bodendorf.de", true }, - { "dr-klotz.info", true }, { "dr-knirr.de", true }, { "dr-marlen-nystroem.de", true }, { "dr-moldovan.de", true }, @@ -23252,6 +23600,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragon-aspect.com", true }, { "dragon-chem.eu", true }, { "dragon-hearts.co.uk", true }, + { "dragon-hearts.com", true }, + { "dragon-hearts.net", true }, { "dragon.nu", true }, { "dragon00.com", true }, { "dragon05.com", true }, @@ -23290,7 +23640,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragoncave.me", true }, { "dragoncityhack.tips", true }, { "dragonclean.gr", true }, - { "dragonfly.co.uk", true }, { "dragonheartsrpg.com", true }, { "dragonkin.net", true }, { "dragonprogrammer.com", true }, @@ -23352,6 +23701,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreadd.org", true }, { "dream-pools.cf", true }, { "dreamaholic.club", true }, + { "dreambolivia.com", true }, { "dreamboxpro.com", true }, { "dreamcrack.tk", true }, { "dreamcraft.su", true }, @@ -23374,6 +23724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreamof.net", false }, { "dreamrae.net", true }, { "dreamsforabetterworld.com.au", true }, + { "dreamsinbits.com", true }, { "dreamstream.nl", true }, { "dreamstream.tv", true }, { "dreamstream.video", true }, @@ -23452,19 +23803,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drinkplanet.eu", true }, { "drinkrebellious.com", true }, { "drino.org", false }, + { "driteksolutions.com", true }, { "driv.io", true }, { "drive.google.com", true }, { "drive.xyz", true }, + { "drivecrestwood.com", true }, + { "drivedannyherman.com", true }, { "drivedavis.com", true }, + { "drivedmbowman.com", true }, { "driveexport.com", true }, - { "driven2shine.eu", true }, - { "drivenbyperspective.com", true }, + { "driveforadtransport.com", true }, + { "drivemorganvanlines.com", true }, { "drivenes.net", true }, + { "driveoakleytransport.com", true }, + { "drivepaultransportation.com", true }, { "driver.ru", true }, { "drivercopilot.com", true }, { "driverless.id", true }, { "driverprofiler.co.uk", true }, { "driverscollection.com", true }, + { "drivestarfreight.com", true }, { "drivetonortheast.com", true }, { "driving-lessons.co.uk", true }, { "drivinghorror.com", true }, @@ -23477,7 +23835,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drjacquesmalan.com", true }, { "drjoe.ca", true }, { "drjosebarrera.com", true }, - { "drjuanitacollier.com", false }, { "drjulianneil.com", true }, { "drkhsh.at", false }, { "drkmtrx.xyz", true }, @@ -23506,7 +23863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "droneland.nl", true }, { "dronepilotgeorgia.com", true }, { "dronepit.dk", true }, - { "dronesz.co", true }, { "droni.cz", true }, { "dronografia.es", true }, { "dronova-art.ru", true }, @@ -23545,6 +23901,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drsheri.com", true }, { "drsturgeonfreitas.com", true }, { "drsubbio.com", true }, + { "drszucs.hu", true }, { "drthalhammer.at", true }, { "drtimmarch.com", true }, { "drtimothybradley.com", true }, @@ -23608,7 +23965,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsgarms.com", true }, { "dsgholsters.com", true }, { "dsgnet.hu", true }, - { "dsgvo-addon.eu", true }, { "dsgvo-analyse.de", true }, { "dsgvo.name", true }, { "dsh.io", true }, @@ -23617,6 +23973,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsimons.tk", true }, { "dsm5.com", true }, { "dsmjs.com", true }, + { "dsmnet.org", true }, { "dso-izlake.si", true }, { "dsol.hu", true }, { "dsouzamusic.com", true }, @@ -23670,7 +24027,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duama.top", true }, { "duan.li", false }, { "duarteeleiteconsultoria.com.br", true }, - { "dub.cz", true }, { "dubai-company.ae", true }, { "dubaire.com", true }, { "dubaizone.cf", true }, @@ -23682,6 +24038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duboisinternational.com", true }, { "duboisinvestissements.com", true }, { "dubrava.tk", true }, + { "dubridgeweb.be", true }, { "dubrovskiy.net", true }, { "dubrovskiy.pro", true }, { "dubstep.fr", true }, @@ -23737,6 +24094,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dulei.si", true }, { "dullapp.com", true }, { "dum.moe", true }, + { "dumaurier.be", true }, { "dumax.xyz", true }, { "dumb-laws.net.ru", true }, { "dumbeartech.com", true }, @@ -23750,6 +24108,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duncanwinfrey.com", true }, { "duncm.com", true }, { "dundalkdonnie.com", true }, + { "dundeerecycling.ca", true }, { "dunesadventure.net", true }, { "dungbui.net", true }, { "dungdev.net", true }, @@ -23762,6 +24121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duo.com", true }, { "duobus.nl", true }, { "duoluodeyu.com", true }, + { "duonganhtuan.com", true }, { "duoquadragintien.fr", true }, { "duoyin.com", true }, { "dupisces.com.tw", true }, @@ -23790,6 +24150,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dushu.cat", true }, { "dusmomente.com", true }, { "dusnan.com", true }, + { "dust.bio", true }, { "dustandsand.com", false }, { "dustpla.net", true }, { "dustplanet.de", true }, @@ -23800,11 +24161,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dustyro.se", true }, { "dustyspokesbnb.ca", true }, { "dustywilson.com", true }, + { "dutabisnis.com", true }, { "dutabisniz.com", false }, { "dutch.desi", true }, { "dutch1.nl", true }, { "dutchassistancedogs.nl", true }, - { "dutchessuganda.com", true }, { "dutchfoodie.nl", true }, { "dutchforkrunners.com", true }, { "dutchrank.nl", true }, @@ -23839,13 +24200,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dwarf.com.tw", true }, { "dwgf.xyz", true }, { "dwhd.org", true }, + { "dwhightmolina.com", true }, { "dwi-sued.de", true }, { "dwnld.me", true }, { "dwood.store", true }, { "dworzak.ch", true }, { "dwscdv3.com", true }, { "dwtm.ch", true }, - { "dwword.com", true }, { "dwworld.co.uk", true }, { "dwz-solutions.com", true }, { "dx-revision.com", true }, @@ -23975,7 +24336,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-bookshelf.de", true }, { "e-borneoshop.com", true }, { "e-briancon.com", true }, - { "e-businessexpert.com", true }, { "e-coexist.com", true }, { "e-cogni.com.br", false }, { "e-colle.info", true }, @@ -23993,6 +24353,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-mandataires.fr", true }, { "e-michiganinsurance.com", true }, { "e-migration.ch", true }, + { "e-motionagency.com", true }, { "e-nanum.kr", true }, { "e-node.net", true }, { "e-privat.info", true }, @@ -24002,6 +24363,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-standardstore.org", true }, { "e-surety.net", true }, { "e-sushi.net", true }, + { "e-sw.co.jp", true }, { "e-teachers.me", true }, { "e-tech-solution.com", true }, { "e-tech-solution.net", true }, @@ -24015,15 +24377,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-typ.eu", true }, { "e-vau.de", false }, { "e-verify.gov", true }, - { "e-webos.com", true }, + { "e-webos.com", false }, { "e-wishlist.net", true }, { "e-worksmedia.com", false }, { "e.mail.ru", true }, - { "e00228.com", false }, + { "e00228.com", true }, { "e007.com", true }, { "e1488.com", true }, { "e15r.co", true }, - { "e2a.cn", true }, { "e2feed.com", true }, { "e30.ee", true }, { "e30365.com", true }, @@ -24045,7 +24406,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e6e.io", true }, { "e7035.com", true }, { "e7180.com", true }, - { "e7d.io", true }, + { "e7d.io", false }, { "e7fun.net", true }, { "e81365.com", true }, { "e82365.com", true }, @@ -24062,7 +24423,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ead-italia.it", true }, { "eagar.com.au", true }, { "eagle-yard.de", true }, - { "eagle.net", true }, { "eagleindustriesltd.com", true }, { "eaglemessaging.com", true }, { "eaglemoe.com", true }, @@ -24091,12 +24451,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "earningthatis.tk", true }, { "earth-people.org", true }, { "earthava.com", true }, + { "earthcharter.nl", true }, { "earthcorporation.cf", true }, + { "earthdevelopers.co.in", true }, { "earthsolidarity.org", true }, { "earthspundesigns.com", true }, { "earthsystemprediction.gov", true }, { "earticleblog.com", true }, - { "easelforart.com", true }, { "easew.com", true }, { "easez.net", true }, { "eashwar.com", true }, @@ -24106,9 +24467,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eastbaycontractor.com", true }, { "eastblue.org", true }, { "eastcoastbubbleandbounce.co.uk", true }, - { "easterncapebirding.co.za", true }, { "eastlothianbouncycastles.co.uk", true }, - { "eastmaintech.com", true }, { "eastmanbusinessinstitute.com", true }, { "eastmidlandsstargazers.org.uk", true }, { "eastnorschool.co.uk", true }, @@ -24133,7 +24492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easycredit.se", true }, { "easydumpsterrental.com", true }, { "easyeditcms.com", true }, - { "easyeigo.com", true }, { "easyenrollment.net", true }, { "easyfiles.ch", true }, { "easyfiles.gq", true }, @@ -24142,6 +24500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easymotionskin-japan.jp", true }, { "easymun.com", true }, { "easynm.cn", true }, + { "easyocm.hu", true }, { "easypay.bg", true }, { "easypaymentnow.com", true }, { "easypayments.pro", true }, @@ -24262,6 +24621,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echosixmonkey.com", true }, { "echosnature.fr", true }, { "echosystem.fr", true }, + { "echotango.fr", true }, { "echoworld.ch", false }, { "echternach-immobilien.de", true }, { "echtes-hutzelbrot.de", true }, @@ -24357,6 +24717,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecsupplyinc.com", true }, { "ectora.com", true }, { "ecuadorbienesraices.com", true }, + { "ecuadorextremo.com", true }, { "ecuatask.com", true }, { "ecuteam.com", true }, { "ecxforum.com", true }, @@ -24369,6 +24730,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edcaptain.com", true }, { "edd-miles.com", true }, { "eddesign.ch", true }, + { "eddie.website", true }, { "eddmil.es", true }, { "eddokloosterman.com", true }, { "eddy-vh.com", true }, @@ -24500,7 +24862,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edyou.org", true }, { "edzilla.info", true }, { "ee-terminals.com", true }, - { "ee00228.com", false }, + { "ee00228.com", true }, { "ee362.com", true }, { "ee367.com", true }, { "ee371.com", true }, @@ -24549,6 +24911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "efaas.nl", true }, { "efag.com", true }, { "efcross.com", true }, + { "eff-bee-eye.de", true }, { "eff.org", true }, { "effdocs.com", true }, { "effe.ch", false }, @@ -24577,6 +24940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eflorashop.us", true }, { "efmcredentialing.org", true }, { "efoood.org", true }, + { "efp.nl", true }, { "efreet.xyz", true }, { "eft.boutique", true }, { "eftcorp.biz", false }, @@ -24657,6 +25021,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ei-bo.org", true }, { "eiao.me", true }, { "eichel.eu", true }, + { "eichinger-stelzl.com", true }, { "eichinger-stelzl.de", true }, { "eichler.work", true }, { "eichornenterprises.com", true }, @@ -24697,7 +25062,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "einsteincapital.ca", true }, { "einsurancetraining.com", true }, { "eintageinzug.de", true }, - { "eintragsservice24.de", true }, { "eion.io", true }, { "eioperator.com", false }, { "eipione.com", true }, @@ -24714,6 +25078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eiti.online", true }, { "eiyoushi-shigoto.com", true }, { "ej.uz", true }, + { "ejderrapgott.de", true }, { "ejdv-anmeldung.de", true }, { "ejelectrical-qld.com.au", true }, { "ejkhosting.nl", true }, @@ -24770,6 +25135,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elaon.de", true }, { "elarmariodelucia.com", true }, { "elars.de", true }, + { "elartedelapaz.org", true }, { "elarvee.xyz", true }, { "elasticshift.com", true }, { "elaxy-online.de", true }, @@ -24789,6 +25155,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elderjustice.gov", true }, { "eldertons.co.uk", true }, { "eldevo.com", true }, + { "eldietista.es", true }, { "eldisagjapi.de", true }, { "eldoradocylinders.com", true }, { "eldrid.ge", true }, @@ -24853,6 +25220,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electrician-umhlangaridge.co.za", true }, { "electricianagoura.com", true }, { "electricianagourahills.com", true }, + { "electricianbedfordview.co.za", true }, { "electriciancalabasas.com", true }, { "electriciancamarillo.com", true }, { "electricianconejovalley.com", true }, @@ -24866,7 +25234,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electriciannewburypark.com", true }, { "electricianoakpark.com", true }, { "electricianpacificpalisades.com", true }, - { "electricianrandburg24-7.co.za", true }, { "electriciansimivalley.com", true }, { "electricianthousandoaks.com", true }, { "electricianwestlakevillage.com", true }, @@ -24880,7 +25247,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electricsimivalley.com", true }, { "electricthousandoaks.com", true }, { "electricwestlakevillage.com", true }, - { "electro-pak.com.pk", true }, { "electrocardiographe.net", true }, { "electrocomplect.com.ua", true }, { "electroforum.tk", true }, @@ -24892,6 +25258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electronicfasteners.com", false }, { "electronicssrit.tk", true }, { "electroniko.cf", true }, + { "electrosoftcloud.com", true }, { "electrostatics.com", true }, { "electrotainment.com", true }, { "electroworld.cz", true }, @@ -24904,6 +25271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eleicoes2016.com.br", true }, { "eleicoes2018.com", true }, { "elejordemarketingconsultancy.com", true }, + { "eleken.jp", true }, { "elekharris.com", true }, { "elektrische-zahnbuerste24.de", true }, { "elektro-adam.de", true }, @@ -24963,6 +25331,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elettricista.roma.it", true }, { "elettricisti.roma.it", true }, { "elettrodomestici.roma.it", true }, + { "elettrolinkimpianti.it", true }, { "eleusis-zur-verschwiegenheit.de", true }, { "elevateandprosper.com", true }, { "elevationcreative.net", true }, @@ -24990,8 +25359,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elherraderoloscabos.com", true }, { "elhorizontal.com", true }, { "elhossari.com", true }, - { "elia.cloud", true }, - { "elian-art.de", true }, { "eliaskordelakos.com", true }, { "eliasong.com", true }, { "eliav.tk", true }, @@ -25005,7 +25372,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eligibleapi.com", true }, { "eligrey.com", true }, { "elijahgrey.com", true }, - { "elijahzawesome.casa", true }, { "elikers.ml", true }, { "elimer.com.ve", true }, { "eliminercellulite.com", true }, @@ -25050,6 +25416,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ella-kwikmed.com", false }, { "ellak.gr", true }, { "ellatotal.com", true }, + { "ellbusiness.com", true }, { "elldus.de", true }, { "elle-weine.de", true }, { "ellegaard.dk", true }, @@ -25062,6 +25429,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ellisamusements.co.uk", true }, { "ellisleisure.co.uk", true }, { "ellsinger.me", true }, + { "elmahost.net", true }, { "elmarchive.ir", true }, { "elmermx.ch", true }, { "elmot24.pl", true }, @@ -25094,7 +25462,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elriacdn.com", true }, { "elrinconderovica.com", true }, { "elsagradocoran.org", true }, - { "elsanoguera.com", true }, + { "elsentech.com", true }, { "elshou.com", true }, { "elsignificadodesonar.com", true }, { "elskling.no", true }, @@ -25120,8 +25488,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elvispresley.net", true }, { "elvn.tokyo", false }, { "elwave.org", true }, - { "elwebkala.com", true }, { "elwix.com", true }, + { "ely.moe", true }, { "elyasweb.com", true }, { "elycoin.io", true }, { "elysiandigital.co", true }, @@ -25143,6 +25511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emailtemporal.org", true }, { "emailtools.io", true }, { "emaily.eu", true }, + { "emalm.com", true }, { "emalm.ml", true }, { "emanol.co.uk", true }, { "emanuel.photography", true }, @@ -25197,7 +25566,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emilecourriel.com", true }, { "emiliendevos.be", true }, { "emilio.media", true }, - { "emiliobonelli.de", true }, { "emiliops.com", true }, { "emilong.com", true }, { "emilreimann.de", true }, @@ -25239,7 +25607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emotebot.com", true }, { "emotionalmente.com", true }, { "emotive.productions", true }, - { "emoxie.com", false }, + { "emoxie.com", true }, { "empathogen.com", true }, { "empathogens.com", true }, { "empathy.ca", true }, @@ -25251,7 +25619,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emperor.blog", true }, { "empese.com", true }, { "empherino.net", true }, - { "empicargo.com", true }, { "empire-univ.com", true }, { "empire24.co", true }, { "empireauto-2000.com", true }, @@ -25261,13 +25628,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "employer.gov", true }, { "employer.guru", true }, { "employer411.com", true }, + { "employerlawresource.com", true }, { "employment-applicant.com", true }, { "emporikonathenshotel.com", true }, { "emporioviverbem.com.br", false }, { "empower.net", true }, { "empoweraces.com", true }, { "empowerdb.com", true }, - { "empoweren.com", true }, + { "empoweren.com", false }, { "empowersimcoe.ca", true }, { "emprechtinger.com", true }, { "emprego.pt", true }, @@ -25312,7 +25680,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encd.life", true }, { "encfs.win", true }, { "encircleapp.com", true }, - { "encnet.de", true }, { "encode.host", true }, { "encodecloud.net", true }, { "encoderx.uk", true }, @@ -25326,7 +25693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encredible.org", false }, { "encretplomb.ch", false }, { "encrypt.org.uk", true }, - { "encryptallthethings.net", true }, { "encrypted.google.com", true }, { "encryptedaudience.com", true }, { "encryptmy.site", true }, @@ -25370,7 +25736,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "energy-drink-magazin.de", true }, { "energy-healings.com", true }, { "energy-in-balance.eu", true }, - { "energy-infra.nl", true }, { "energy-initiative.com", true }, { "energy-robotics.com", true }, { "energy.gov", true }, @@ -25408,6 +25773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engelundlicht.ch", true }, { "engelwerbung.com", true }, { "engg.ca", true }, + { "engi.fyi", true }, { "engie-laadpalen.nl", true }, { "engiedev.net", true }, { "engima.nl", true }, @@ -25419,11 +25785,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engione.com", true }, { "engl-server.de", true }, { "engl-systems.de", true }, + { "englandbeach.com", true }, { "englandschool.tk", true }, { "englishbulgaria.net", true }, { "englishcast.com.br", true }, { "englishdirectory.de", true }, - { "englishforums.com", true }, + { "englishliterature.net", true }, { "englishlol.com", true }, { "englishphonopass.com", true }, { "englishstudio.com", true }, @@ -25434,6 +25801,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engweld.co.uk", true }, { "engym.com.tw", true }, { "enigma.swiss", false }, + { "enigmadark.com", true }, { "enigmadjradio.com", true }, { "enijew.com", true }, { "enitso.de", true }, @@ -25654,6 +26022,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eprezto.com", true }, { "eprojectfreetv.com", true }, { "epsi.io", true }, + { "epsilon.photography", true }, { "epsmil.it", true }, { "epspolymer.com", true }, { "epublibre.org", true }, @@ -25662,7 +26031,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eq-serve.com", true }, { "eqassociates.com", true }, { "eqibank.com", true }, - { "eqiware.com", true }, { "eqorg.com", true }, { "equabanking.cz", true }, { "equalcloud.com", true }, @@ -25770,7 +26138,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eromon.net", true }, { "eron.info", true }, { "eropics.org", true }, - { "eroticdinners.com", true }, { "eroticlist.com", true }, { "erp-band.ru", true }, { "erp.band", true }, @@ -25807,7 +26174,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erudicia.se", true }, { "erudicia.uk", true }, { "erudikum.cz", true }, - { "eruga.es", true }, + { "eruga.es", false }, { "ervaarjapan.nl", true }, { "ervinthagod.xyz", true }, { "erwanlepape.com", true }, @@ -25937,9 +26304,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "escael.org", true }, { "escalesensorielle.com", true }, { "escandille.com", false }, - { "escapeforyou.com", true }, { "escapeplaza.de", true }, - { "escaperoomdoctor.com", true }, { "escaperoompsl.com", true }, { "escaperoomsolutions.com", true }, { "escapetalk.nl", true }, @@ -25994,10 +26359,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esite.ch", true }, { "eskapi.fr", true }, { "eskdale.net", true }, + { "eskiegaming.com", true }, { "eskriett.com", false }, { "eslint.org", false }, { "esmart.ru", true }, { "esmejor.tk", true }, + { "esmibot.com", true }, { "esmincg2t1.com", true }, { "esmoney.cc", true }, { "esmoney.me", true }, @@ -26059,7 +26426,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "essayscam.org", false }, { "essayshark.com", true }, { "essaytalk.com", true }, - { "essaywriting.biz", true }, { "essenalablog.de", true }, { "essencespresso.es", true }, { "essenerbaeder.de", true }, @@ -26078,6 +26444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "essteebee.ch", false }, { "est-it.de", true }, { "est-keyman.de", true }, + { "est8.ai", true }, { "establo.pro", true }, { "estada.ch", true }, { "estadoreclamos.com", true }, @@ -26086,6 +26453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estahl.dk", true }, { "estaleiro.org", true }, { "estalinas.com", true }, + { "estallidodigital.cl", true }, { "estan.cn", true }, { "estate360.co.tz", true }, { "estateczech-eu.ru", true }, @@ -26102,6 +26470,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estetista.net", true }, { "esthe-zukan.com", true }, { "estherlew.is", true }, + { "esthernariyoshi.com", true }, { "estimulantesbrasil.com", true }, { "estintori.roma.it", true }, { "estoic.net", true }, @@ -26118,6 +26487,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estudio21pattern.com", false }, { "estudioaguiar.com.br", true }, { "estudiogarcia-rada.com", true }, + { "estudosnacionais.com", true }, { "estufitas.com", true }, { "esu.moe", true }, { "esu.wiki", true }, @@ -26163,11 +26533,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eternalparking.org", true }, { "eternalsymbols.com", true }, { "eternit.roma.it", true }, + { "etf.nu", true }, { "etfacta.com", true }, - { "eth0.nl", true }, + { "eth-services.de", true }, + { "eth0.nl", false }, { "eth1.fi", true }, { "etha.nz", true }, - { "ethack.org", true }, { "ethaligan.fr", true }, { "ethan.pm", true }, { "ethanchin.com", false }, @@ -26223,8 +26594,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etudesbibliques.net", false }, { "etudesbibliques.org", false }, { "eturist.si", true }, - { "etutsplus.com", true }, { "etv.cx", true }, + { "etwalldentalpractice.co.uk", true }, { "etyd.org", true }, { "eu-darlehen-finanzierung.de", true }, { "eu-datenbank.de", true }, @@ -26235,8 +26606,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "euc.world", true }, { "euchre.us", true }, { "eucollegetours.com", true }, + { "eudore.org", true }, { "euexia.fr", true }, - { "eugenekay.com", true }, { "eugenetech.org", true }, { "eugeniocorso.com", true }, { "eujuicers.bg", true }, @@ -26336,6 +26707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "euvo.tk", false }, { "euwid-energie.de", true }, { "euwid.de", true }, + { "ev-menden-meindorf.de", true }, { "ev-menden.de", true }, { "ev-zertifikate.de", true }, { "eva-briegel-fanpage.tk", true }, @@ -26353,6 +26725,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evamathil.de", true }, { "evamira.com", true }, { "evanfiddes.com", true }, + { "evange.co.jp", true }, { "evangelicalmagazine.com", true }, { "evangelosm.com", true }, { "evanreev.es", true }, @@ -26434,6 +26807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "everyfad.com", true }, { "everykidoutdoors.gov", true }, { "everymove.org", true }, + { "everysync.co.jp", true }, { "everything-everywhere.com", true }, { "everythingaccess.com", true }, { "everythingstech.com", true }, @@ -26471,15 +26845,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evoco.vc", true }, { "evodation.com", true }, { "evodation.org", true }, - { "evodia-spirits.de", true }, { "evohomecare.com", true }, { "evok.com.co", false }, { "evokepk.com", true }, { "evokewonder.com", true }, + { "evoludis.net", true }, { "evolutionbiote.com", true }, { "evolutioninflatables.co.uk", true }, { "evolutionlending.co.uk", true }, { "evolutionpets.com", true }, + { "evolvedevlabs.de", true }, { "evolvetechnologies.co.uk", true }, { "evolvicity.org", true }, { "evolvingsouls.com", true }, @@ -26491,7 +26866,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evote-ch.ch", true }, { "evotec.pl", true }, { "evotec.xyz", true }, - { "evoting-test.ch", false }, + { "evoting-test.ch", true }, { "evoting.ch", true }, { "evowrap.co.uk", true }, { "evpro.lt", true }, @@ -26506,6 +26881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evthing.se", true }, { "evtripping.com", true }, { "evtscan.io", true }, + { "evxp.it", true }, { "evyn.eu", true }, { "ewa-hayward.co.uk", true }, { "ewaf.club", true }, @@ -26513,6 +26889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ewanm89.co.uk", true }, { "ewanm89.com", true }, { "ewanm89.uk", true }, + { "ewanto.de", true }, { "ewar.lt", false }, { "ewc.co.jp", true }, { "ewcd.co.jp", true }, @@ -26538,7 +26915,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exagoni.com.my", true }, { "exaktus.pt", true }, { "examedge.com", true }, - { "examenpilotos.com", false }, { "examika.ru", true }, { "example.eu.org", true }, { "exampleessays.com", true }, @@ -26593,9 +26969,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exerforge.net", true }, { "exeria.de", true }, { "exexcarriers.com", true }, + { "exeypanteleev.com", true }, { "exgaywatch.com", true }, { "exgen.io", true }, { "exiahost.com", true }, + { "exiled.land", true }, + { "exiled.world", true }, { "existest.com", true }, { "exit9wineandliquor.com", true }, { "exitooutdoor.com", true }, @@ -26617,7 +26996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exozwiki.com", false }, { "exp.de", true }, { "expancio.com", false }, - { "expanda.org", true }, + { "expanda.org", false }, { "expanddigital.media", true }, { "expandeco.com", true }, { "expansion-lidl.es", true }, @@ -26638,9 +27017,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "expert.cz", true }, { "experteasy.com.au", true }, { "expertisematrix.com", true }, + { "expertnews.info", true }, { "expertofficefitouts.com.au", true }, { "expertpaintersvt.com", true }, - { "expertpakistani.com", true }, { "expertpanel.gc.ca", true }, { "expertplumbingandsolarservicesbathurst.com.au", true }, { "expertsluzby.cz", true }, @@ -26662,6 +27041,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exploitit.com.au", true }, { "exploodo.rocks", true }, { "exploravacations.in", true }, + { "explorea1a.com", true }, { "explorebigideas.com", true }, { "exploredouglascountyga.com", true }, { "exploremonero.com", true }, @@ -26769,9 +27149,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eyenote.gov", true }, { "eyeonid.com", true }, { "eyep.me", true }, - { "eyes-berg.ch", false }, { "eyes-berg.com", false }, { "eyesandearsrescue.org", true }, + { "eyespecialistsofla.com", true }, { "eyetooth.ga", true }, { "eynio.com", true }, { "eyona.com", true }, @@ -26894,23 +27274,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f8s.co", true }, { "f9297.co", true }, { "f9728.co", true }, - { "f9850.com", false }, - { "f9851.com", false }, - { "f9852.com", false }, - { "f9854.com", false }, - { "f9855.com", false }, - { "f9880.com", false }, - { "f9881.com", false }, - { "f9882.com", false }, - { "f9883.com", false }, - { "f9884.com", false }, - { "f9885.com", false }, + { "f9850.com", true }, + { "f9851.com", true }, + { "f9852.com", true }, + { "f9854.com", true }, + { "f9855.com", true }, + { "f9880.com", true }, + { "f9881.com", true }, + { "f9882.com", true }, + { "f9883.com", true }, + { "f9884.com", true }, + { "f9885.com", true }, { "f9digital.com", true }, { "f9marketing.com", true }, { "fa-works.com", true }, { "fa158k.com", true }, { "fabbro-roma.org", true }, { "fabbro.roma.it", true }, + { "fabdiz.com", true }, { "faber.org.ru", true }, { "fabian-fingerle.de", true }, { "fabian-klose.com", true }, @@ -26922,7 +27303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabianbeiner.com", true }, { "fabianbeiner.de", false }, { "fabianegli.ch", true }, - { "fabiankaindl.de", true }, + { "fabiankaindl.de", false }, { "fabiankoeppen.com", true }, { "fabien-hebuterne.fr", true }, { "fabienbaker.com", true }, @@ -26957,6 +27338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facciadastile.it", true }, { "face-fashion.de", true }, { "face-mania.com", true }, + { "face2faith-vechta.de", true }, { "facealacrise.fr", true }, { "facebook-atom.appspot.com", true }, { "facebook.ax", true }, @@ -27015,7 +27397,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facucosta.com.ar", true }, { "fadednet.com", false }, { "faderweb.de", true }, - { "fadilus.com", true }, { "fads-center.online", true }, { "fady.vn", true }, { "faehler.de", true }, @@ -27029,6 +27410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fafarishoptrading.com", true }, { "fafatiger.com", true }, { "fafro.eu", true }, + { "fafscloud.com", false }, { "fag.wtf", true }, { "faggut.gg", true }, { "fahnamporn.com", true }, @@ -27090,6 +27472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "falce.in", true }, { "falcema.com", true }, { "falcibiosystems.org", true }, + { "falcom.co.jp", true }, { "falcona.io", true }, { "falconfrag.com", true }, { "falconvintners.com", true }, @@ -27145,7 +27528,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "familiekiekjes.nl", true }, { "familienportal.de", true }, { "familiereimann.com", true }, - { "familjenfrodlund.se", true }, { "familjenm.se", true }, { "familledessaint.fr", true }, { "familleseux.net", true }, @@ -27231,6 +27613,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faradome.ws", true }, { "faradrive.ir", true }, { "farallonesrentacar.com", true }, + { "faramashin.com", true }, { "faraonplay5.com", true }, { "faraonplay7.com", true }, { "faraonplay8.com", true }, @@ -27253,7 +27636,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "farm-vacations.com", true }, { "farm24.co.uk", true }, { "farmacia-lloret.com", true }, - { "farmaciacomunalelacchiarella.it", true }, { "farmaciacorvi.it", true }, { "farmaciadejaime.es", true }, { "farmaspeed.it", true }, @@ -27383,6 +27765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fb-lab.de", true }, { "fb.gg", true }, { "fb.me", true }, + { "fbaun.dk", true }, { "fbcdn.net", true }, { "fbcfairburn.com", true }, { "fbcopy.com", true }, @@ -27482,6 +27865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feedough.com", true }, { "feedstringer.com", true }, { "feedthefuture.gov", false }, + { "feedtube.com", true }, { "feeeei.com", true }, { "feeg-wage.gc.ca", true }, { "feegg.com.br", true }, @@ -27489,6 +27873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feel.aero", true }, { "feelgood-workouts.de", true }, { "feelgood.com.tw", true }, + { "feelgoodwatches.com", true }, { "feelingmassage.nl", true }, { "feelmom.com", true }, { "feelnet.top", true }, @@ -27597,6 +27982,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ferlc.org", true }, { "ferm-rotterdam.nl", true }, { "fermanacuratampaparts.com", true }, + { "fermanaghomagh.com", true }, { "fern.health", true }, { "fernandes.org", true }, { "fernandob.com", true }, @@ -27623,7 +28009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "festerculiacan.com", true }, { "festesuniversitaries.tk", true }, { "festival-tipps.com", true }, - { "festival-transform.com", true }, { "festival-transform.fr", true }, { "festivaldimouamaroussiou.gr", true }, { "festivaljapon.com", true }, @@ -27635,8 +28020,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fetclips.se", true }, { "fetishbazar.cz", true }, { "fetishblend.com", true }, + { "fetishzone.org", true }, { "fetlife.com", true }, - { "fettlaus.de", true }, { "feudalisten.de", true }, { "feudaltactics.com", true }, { "feuerfestival.org", true }, @@ -27693,7 +28078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fffinfo.de", true }, { "ffg.berlin", true }, { "ffiec.gov", true }, - { "ffis.me", true }, + { "ffis.me", false }, { "ffkoenigsberg.de", true }, { "fflone.com", true }, { "ffmradio.de", true }, @@ -27737,6 +28122,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiasgo.com", true }, { "fiasgo.dk", true }, { "fiasgo.i.ng", true }, + { "fiasonline.ru", true }, { "fibercoverage.com", true }, { "fibo-forex.org", true }, { "fibra.click", true }, @@ -27773,11 +28159,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiery.me", true }, { "fierykitchen.pl", true }, { "fiestagenial.com", true }, + { "fietsenbijauke.nl", true }, { "fietsvierdaagsen.nl", true }, { "fifacup.ga", true }, { "fifautstore.com", true }, { "fifei.de", true }, { "fifichachnil.paris", true }, + { "fifieldtech.com", true }, { "fifr.nl", true }, { "fiftynorth.eu", true }, { "fiftyonetielt.be", true }, @@ -27785,9 +28173,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "figan.cz", true }, { "fight215.com", true }, { "fight215.org", true }, + { "fightinggobbler.com", true }, { "figinstitute.org", true }, { "figliasons.com", true }, { "figshare.com", true }, + { "figura.cz", true }, { "figurasdelinguagem.com.br", true }, { "figure.nz", true }, { "figuurzagers.nl", false }, @@ -27803,7 +28193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filaretihairlove.gr", true }, { "file-cloud.eu", true }, { "file-pdf.it", true }, - { "filebox.one", true }, { "filebox.space", true }, { "filecloud.fun", true }, { "filecopa.com", true }, @@ -27813,6 +28202,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filehippo.com", true }, { "fileio.io", true }, { "filejet.io", true }, + { "filely.io", true }, { "files.com", true }, { "files.from-me.org", true }, { "filesense.com", true }, @@ -27843,6 +28233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filmarchiv-sachsen.de", true }, { "filmatiporno.xxx", true }, { "filmcrewdb.com", true }, + { "filmdirectingtips.com", true }, { "filme-onlines.com", true }, { "filmers.net", true }, { "filmitis.com", true }, @@ -27950,6 +28341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fintechnics.com", false }, { "fintexaddis.com", true }, { "fintry.ca", true }, + { "finturelife.com", true }, { "finvantage.com", true }, { "finwe.info", true }, { "finzy.com", true }, @@ -27968,6 +28360,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fireboxfood.com", true }, { "firebrandchurch.com", true }, { "firecareandsecurity.co.uk", true }, + { "firecask.com", true }, { "firechip.cc", true }, { "firecore.com", true }, { "firecry.org", true }, @@ -28005,7 +28398,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firmapi.com", true }, { "firmen-assekuranz.de", true }, { "firmenwerbung-vermarktung.de", true }, - { "firmware.science", true }, { "first-aid-kit.net", false }, { "first-house.no", true }, { "first-time-offender.com", true }, @@ -28023,7 +28415,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firstdorsal.eu", true }, { "firstdry.com.br", true }, { "firstfinca.de", true }, - { "firstinnovationltd.com", true }, { "firstmall.de", true }, { "firstnet.gov", true }, { "firstnetworksouth.com", true }, @@ -28042,7 +28433,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fish-hook.ru", true }, { "fish-n-chips.uk", true }, { "fish2.me", true }, - { "fish4dogs.com", true }, { "fishbattle.io", true }, { "fishbattle.net", true }, { "fishermailbox.net", true }, @@ -28051,6 +28441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fishermansbendtownhouses.com.au", true }, { "fishexport.eu", true }, { "fishgen.no", true }, + { "fishingplaces.net", true }, { "fishlanestudios.com", true }, { "fishme.in", true }, { "fishoilsafety.com", true }, @@ -28067,6 +28458,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fit-4u.ch", false }, { "fit-mit-nina.com", true }, { "fit365.jp", false }, + { "fitbase.fitness", true }, { "fitchconnect.com", true }, { "fite.family", true }, { "fitequilibrio.com.br", true }, @@ -28083,6 +28475,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiuxy.me", true }, { "fiuxy.org", true }, { "fiveboosts.xyz", true }, + { "fivebyfive.com.au", true }, { "fiveslice.pizza", true }, { "fivestartrader.com", true }, { "fivethirtyeight.com", true }, @@ -28091,10 +28484,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fix-the-timeline.org", true }, { "fix.mk", true }, { "fixatom.com", true }, + { "fixdiabetesnaturally.com", true }, { "fixed.supply", true }, { "fixed.tech", true }, + { "fixedtoday.com.au", true }, { "fixedtodayplumbing.com.au", true }, - { "fixel.express", true }, { "fixfm.tk", true }, { "fixforce.nl", true }, { "fixingscrews.co.uk", true }, @@ -28112,18 +28506,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fizzgi.gs", true }, { "fj.je", true }, { "fj.search.yahoo.com", false }, - { "fj.simple.com", false }, + { "fjchamber.org", true }, { "fjco.alsace", true }, { "fjdekermadec.com", true }, { "fjharcu.com", true }, { "fjordboge.dk", true }, + { "fjsb.com", true }, { "fjugstad.com", true }, { "fjzone.org", true }, { "fkcdn.de", true }, { "fkfev.de", true }, { "fkosquad.moe", true }, { "fkraiem.org", true }, - { "fktpm.ru", false }, + { "fktpm.ru", true }, { "flacandmp3.ml", true }, { "flaemig42.de", false }, { "flagburningworld.com", true }, @@ -28211,7 +28606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fleurette.me", true }, { "fleursdujour.ph", true }, { "fleuryfleury.com", true }, - { "flexbuildingsystems.com", true }, + { "flexapplications.se", true }, { "flexdrukker.nl", true }, { "flexfunding.com", true }, { "fleximaal.com", true }, @@ -28269,6 +28664,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "floj.tech", true }, { "flokinet.is", true }, { "flokkr.com", true }, + { "flomedia.pl", true }, { "flomeyer.de", true }, { "flonharmonymassage.space", true }, { "floobits.com", true }, @@ -28332,7 +28728,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flowcount.xyz", true }, { "flowersbylegacy.com", true }, { "flowersquito.com", true }, - { "flowfit.nyc", true }, { "flowinvoice.com", true }, { "flowreader.com", true }, { "flox.io", true }, @@ -28393,11 +28788,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flywus.com", true }, { "fm.ie", true }, { "fmapplication.com", true }, + { "fmarchal.fr", true }, { "fmbilder.se", true }, { "fmc.gov", true }, { "fmcs.gov", true }, { "fmdance.cl", true }, { "fmeventcentre.com", true }, + { "fmi.gov", true }, { "fminsight.net", true }, { "fmm-creative.com", true }, { "fmodoux.biz", false }, @@ -28421,6 +28818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "focusmark.jp", false }, { "focusministries1.org", true }, { "focuspointtechnologies.com", true }, + { "fodemp.herokuapp.com", true }, { "foej-aktiv.de", true }, { "foej.net", true }, { "foerster.gmbh", true }, @@ -28453,7 +28851,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "followthedog.co.uk", true }, { "foluomeng.net", true }, { "folv.es", true }, - { "folwark.krakow.pl", true }, + { "fomo.af", true }, + { "fomo.exposed", true }, + { "fomo.trading", true }, { "fomopop.com", true }, { "fonamperu.org.pe", true }, { "fondationwiggli.ch", true }, @@ -28464,7 +28864,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fonline.tk", true }, { "fono.jp", true }, { "fonolo.com", true }, - { "fonseguin.ca", true }, { "font-converter.net", true }, { "fonte-trading.com", true }, { "fontein.de", true }, @@ -28488,6 +28887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foodsafety.gov", true }, { "foodsafetyjobs.gov", true }, { "foodsoul.pro", true }, + { "foodtable.at", false }, { "foodwise.marketing", true }, { "fooishbar.org", false }, { "foolip.org", true }, @@ -28535,6 +28935,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forensic-system.com", false }, { "forensicsoftware.biz", true }, { "forento.be", true }, + { "foresdon.jp", true }, { "foresightbusinessservices.co.uk", true }, { "forestraven.net", true }, { "forevergreens.us", true }, @@ -28564,6 +28965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forman.store", true }, { "formapi.io", true }, { "format-paysage.ch", false }, + { "formatex.com.mx", true }, { "formation-assureur.com", true }, { "formation-mac.ch", false }, { "formationseeker.com", true }, @@ -28573,6 +28975,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "formini.dz", true }, { "formio.nl", true }, { "formkiq.com", true }, + { "forms.gov", true }, { "formsbyair.com", true }, { "formsmarts.com", true }, { "formula-ot.ru", true }, @@ -28608,9 +29011,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fortnine.ca", true }, { "fortnitemagic.ga", true }, { "fortoglethorpega.gov", true }, - { "fortran.io", true }, { "fortress.no", true }, { "fortress.sk", true }, + { "fortresslinux.com", true }, + { "fortresslinux.nl", true }, + { "fortresslinux.org", true }, { "fortuna-apotheke-lahnstein.de", true }, { "fortuna-loessnitz.de", true }, { "fortuna-s.com", true }, @@ -28763,7 +29168,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "framer.com", true }, { "framezdakkapellen.nl", true }, { "fran.cr", true }, - { "fran.id", true }, { "france-hotellerie-restauration.com", true }, { "france-news.cf", true }, { "francepandi.fr", true }, @@ -28810,7 +29214,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frankopol-sklep.pl", true }, { "frankslaughterinsurance.com", true }, { "frankyan.com", true }, - { "franqois.id", true }, + { "franqois.id", false }, { "frantic1048.com", true }, { "frantorregrosa.me", true }, { "franz-vatter.de", true }, @@ -28851,7 +29255,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frccsgo.tk", true }, { "frdl.ch", false }, { "freaksites.dk", true }, - { "freaksports.com.au", true }, { "freakyawesome.agency", true }, { "freakyawesome.art", true }, { "freakyawesome.band", true }, @@ -28936,7 +29339,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freedomrahoitus.fi", true }, { "freedomtoolkit.com", true }, { "freedomvote.nl", true }, - { "freedygist.org.ng", true }, { "freeenglishhelp.com", true }, { "freeexampapers.com", true }, { "freefilesync.org", true }, @@ -28953,6 +29355,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freekdevries.nl", true }, { "freeks.com.br", true }, { "freela.ch", false }, + { "freelance-webdesign.co.uk", true }, { "freelance-webdesigner.jp", true }, { "freelance.boutique", true }, { "freelance.guide", true }, @@ -28997,7 +29400,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freesolitaire.win", true }, { "freesourcestl.org", true }, { "freespace.info", true }, - { "freespot.mobi", true }, { "freesquare.net", true }, { "freessl.tech", true }, { "freesslcertificate.me", true }, @@ -29021,10 +29423,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frei.social", true }, { "freiboth.ddns.net", true }, { "freie-software.net", true }, + { "freiengrunder-hof.de", true }, { "freiewaehler-verden.de", true }, { "freifahrt.de", true }, { "freifall.tk", true }, - { "freifamily.ch", true }, { "freifunk-burgaltendorf.de", true }, { "freifunk-essen.de", true }, { "freifunk-in-solingen.de", true }, @@ -29047,7 +29449,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frenzel.dk", true }, { "frequencebanane.ch", false }, { "frequentflyerapp.com", true }, - { "fresh-components.com", true }, { "fresh-hotel.org", true }, { "fresh-networks.net", true }, { "fresh.co.il", true }, @@ -29098,6 +29499,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "friends24.cz", true }, { "friendship-quotes.co.uk", true }, { "friendshipismagicsquad.com", true }, + { "friendsinfilm.com", true }, { "friendsofgfwpc.org", true }, { "friendsofparks.org", true }, { "friet.org", true }, @@ -29113,13 +29515,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frinkiac.com", true }, { "frino.de", true }, { "friplay.host", true }, - { "frippz.se", true }, { "friseur-foerder.de", true }, { "friss.com", true }, { "fritz-koehne-schule.de", true }, { "fritzrepair.com", true }, { "frizo.com", true }, - { "frizzless.com", true }, { "fro.se", true }, { "frob.nl", true }, { "frode.win", true }, @@ -29151,7 +29551,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frontiers.nl", true }, { "frontline.cloud", true }, { "frontlinemessenger.com", true }, - { "frontmin.com", true }, { "froogo.co.uk", true }, { "fropky.com", true }, { "frosoku.com", true }, @@ -29193,6 +29592,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frusky.de", true }, { "frusky.net", true }, { "frutasyvejetales.com", true }, + { "fruxnux.net", true }, { "fruxprivatebank.net", true }, { "frydrychit.cz", true }, { "fryergroup.com", true }, @@ -29245,7 +29645,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ftnpower.com", true }, { "ftptest.net", true }, { "ftrac.com.br", true }, - { "ftrsecure.com", true }, { "ftrucks.com.au", true }, { "ftv.re", true }, { "ftworthhousekeeper.com", true }, @@ -29289,7 +29688,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fujieb.com", true }, { "fujiwaraqol.com", true }, { "fujiwarashinzo.com", true }, - { "fukakukeiba.com", true }, + { "fujiyakimono.com", true }, { "fukata.org", true }, { "fukikaeru.com", true }, { "fukt.ca", true }, @@ -29301,12 +29700,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fulfilmentcrowd.com", true }, { "fulgenzis.com", true }, { "fulibyg.com", true }, - { "fulige.top", true }, { "fulijiejie.com", true }, { "fuliwang.info", true }, { "fuliwang.us", true }, { "full-race.com", true }, { "full-stack.ninja", true }, + { "fullbajamode.com", true }, { "fullbundle.com", true }, { "fullcirclestudio.nl", true }, { "fullerlife.org.uk", true }, @@ -29319,6 +29718,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fumblers.ca", true }, { "fumerolles.ch", false }, { "fun-bounce.co.uk", true }, + { "fun-club-35.com", true }, { "fun-fan.biz", true }, { "fun-tasia.co.uk", true }, { "fun4kidzbouncycastles.co.uk", true }, @@ -29431,6 +29831,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funprode.org", true }, { "funsochi.ru", true }, { "funspins.com", true }, + { "funtastic-basketball.de", true }, { "funtastic.ie", true }, { "funtime-inflatables.co.uk", true }, { "funtime.com.ua", true }, @@ -29446,6 +29847,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "furgo.love", true }, { "furi.ga", true }, { "furigana.info", true }, + { "furisode-yamaguchiya.com", true }, { "furkancaliskan.com", true }, { "furkot.com", true }, { "furkot.de", true }, @@ -29478,12 +29880,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fusionetics.plus", true }, { "fusiongaming.de", true }, { "fussball-xxl.de", true }, + { "fussballpiraten.com", true }, { "fussell.io", true }, { "fuszara.eu", true }, { "fuszara.pl", true }, { "futa.agency", true }, - { "futa.moe", false }, { "futaba-works.com", true }, + { "futb0l.com", true }, { "futbol-tv.tk", true }, { "futbolvivo.tv", true }, { "futbomb.com", true }, @@ -29554,6 +29957,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fydjbsd.cn", true }, { "fyfywka.com", true }, { "fyksen.me", true }, + { "fyllehack.se", true }, { "fyn.nl", true }, { "fyner.lt", true }, { "fyol.pw", true }, @@ -29607,6 +30011,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "g3dev.ch", false }, { "g3homefoods.com", true }, { "g47.web.id", true }, + { "g4v.in", true }, { "g4w.co", true }, { "g51365.com", true }, { "g5197.co", true }, @@ -29652,6 +30057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gadabit.pl", true }, { "gaddini.it", true }, { "gadgetadvisor.com", true }, + { "gadgetanda.com", true }, { "gadgetflip.com", true }, { "gadgethacks.com", true }, { "gadgets-cars.com.es", true }, @@ -29698,7 +30104,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gakki.photos", true }, { "gaku-architect.com", true }, { "gala.kiev.ua", false }, - { "galabau-maurmann.de", true }, { "galacg.me", true }, { "galak.ch", false }, { "galaktika-znakomstv.tk", true }, @@ -29820,6 +30225,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gameres.com", true }, { "gamerezo.com", true }, { "gamerspost.ga", true }, + { "gamerwelfare.com", true }, { "gamerzdot.com", true }, { "games2kids.net", true }, { "games4theworld.org", true }, @@ -29833,7 +30239,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gamesme.cn", true }, { "gamesplanet.com", true }, { "gamesputnik.ru", true }, - { "gamestats.gg", true }, { "gameswitchers.uk", true }, { "gametilt.com", true }, { "gametium.com", true }, @@ -29854,9 +30259,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gamingzoneservers.com", true }, { "gamishijabsyari.com", true }, { "gamishou.fr", true }, - { "gamismu.com", true }, { "gamivo.com", true }, { "gammaphibeta.tk", true }, + { "gampa.be", true }, { "gamster.tv", true }, { "gan.wtf", true }, { "ganado.org", true }, @@ -29873,10 +30278,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gangnam-club.com", true }, { "gangnamcool.com", true }, { "ganodermatiendaonline.com", true }, - { "ganpris.online", true }, { "gansleit.com", false }, { "gantt-chart.com", true }, - { "ganyouxuan.com", true }, { "ganzgraph.de", true }, { "ganztagplus.de", true }, { "gao.ci", true }, @@ -29976,6 +30379,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaussianwaves.com", true }, { "gauthier.dk", true }, { "gavin.sh", true }, + { "gavingreer.com", true }, { "gavins.stream", true }, { "gavlix.se", true }, { "gavr.me", true }, @@ -29984,10 +30388,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaw.sh", true }, { "gay-jays.com", true }, { "gay-personal-ads.com", true }, - { "gay-sissies.com", true }, { "gay.systems", true }, { "gaya-sa.org", true }, { "gayauthors.org", true }, + { "gaycafe.lt", true }, { "gaycc.cc", true }, { "gayforgenji.com", true }, { "gaygeeks.de", true }, @@ -30031,6 +30435,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gcodetools.com", true }, { "gcs-ventures.com", true }, { "gcsepod.com", true }, + { "gcsgr.eu", true }, { "gd88.cc", true }, { "gda.fr", true }, { "gdax.com", true }, @@ -30064,6 +30469,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geass.xyz", true }, { "geba-online.de", true }, { "gebaeudebilanzierung.de", true }, + { "geblitzt.de", true }, { "gebn.co.uk", true }, { "gebn.uk", true }, { "geboortestoeltje.com", true }, @@ -30085,11 +30491,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geekariom.com", true }, { "geekbundle.org", true }, { "geekclubbooks.com", true }, - { "geekeffect.co.uk", true }, + { "geekdama.com.br", true }, { "geekeries.org", true }, { "geeklair.net", true }, { "geeklan.co.uk", true }, { "geekles.net", true }, + { "geekmagazine.com.br", true }, { "geeknik.com", true }, { "geekobyte.com", true }, { "geekpad.com", true }, @@ -30117,7 +30524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gefolge.org", true }, { "gegeco.ch", false }, { "geh.li", true }, - { "gehaowu.com", true }, { "gehas-wein-shop.de", false }, { "gehatrans.de", true }, { "gehirn.co.jp", true }, @@ -30142,6 +30548,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geldimblick.de", true }, { "geldteveel.eu", true }, { "geleenbeekdal.nl", true }, + { "geli-graphics.com", true }, { "gelis.ch", true }, { "gellis12.com", true }, { "gelog-software.de", false }, @@ -30153,7 +30560,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geluk.io", true }, { "gelukkigehonden.nl", true }, { "geluleminceur.fr", true }, - { "gem-info.fr", true }, { "gemails.eu", true }, { "gemeentestein.nl", true }, { "gemeinderatswahl2020.de", true }, @@ -30213,6 +30619,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genevoise-entretien.ch", true }, { "genfaerd.dk", true }, { "genia-life.de", true }, + { "geniedesjouets.fr", true }, { "geniofinanciero.org", true }, { "genioideal.com", true }, { "geniush.ovh", true }, @@ -30222,6 +30629,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gennerator.com", true }, { "genocidediary.org", true }, { "genodeftest.de", true }, + { "genome.gov", false }, { "genomedia.jp", true }, { "genomequestlive.com", true }, { "genometrik.de", true }, @@ -30230,7 +30638,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genossen.ru", true }, { "genossenwiese.ch", true }, { "genoveve.de", true }, - { "gensend.com", true }, { "gensenwedding.jp", true }, { "genshiken-itb.org", true }, { "gensicke.de", true }, @@ -30259,7 +30666,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genunlimited.ga", true }, { "genunlimited.tk", true }, { "genusbag.com", true }, - { "genusshotel-riegersburg.at", true }, + { "genwarp.com", true }, { "genxnotes.com", true }, { "geocar.com", true }, { "geocommunicator.gov", true }, @@ -30349,7 +30756,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geschichtscheck.de", true }, { "geschmacksache.online", true }, { "geschwinder.net", true }, - { "gesditel.es", true }, + { "gesditel.es", false }, { "geseduc.cl", true }, { "gesevi.com", true }, { "gesica.cloud", true }, @@ -30383,6 +30790,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getalitools.ru", true }, { "getbookked.com", true }, { "getbooks.co.il", true }, + { "getbootstrap.com", true }, { "getboubou.com", true }, { "getbox.me", true }, { "getbreadcrumbs.com", true }, @@ -30402,7 +30810,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geterp.ru", true }, { "geteventbox.com", true }, { "getfedora.org", true }, - { "getfilterlive.org", true }, { "getfirstalert.com", true }, { "getflorence.co.uk", true }, { "getgeek.dk", true }, @@ -30533,6 +30940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ggx.us", true }, { "gh-sandanski.com", true }, { "gh16.com.ar", true }, + { "gha.st", true }, { "ghaglund.se", true }, { "ghcpl.in", true }, { "gheestore.in", true }, @@ -30540,10 +30948,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ghfip.com.au", true }, { "ghini.com", true }, { "ghislainphu.fr", true }, - { "ghkim.net", true }, { "ghostblog.info", false }, { "ghostcir.com", true }, { "ghostpin.ga", true }, + { "ghostwritershigh.com", true }, { "ghou.me", true }, { "ghowell.io", true }, { "ghull.email", true }, @@ -30569,6 +30977,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giardiniere.bologna.it", true }, { "giardiniere.milano.it", true }, { "giardiniere.roma.it", true }, + { "giardinoperfetto.com", true }, { "gibraltar.at", true }, { "gibraltarwi.gov", true }, { "gibreel.tk", true }, @@ -30581,6 +30990,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gierds.de", true }, { "gieschke.de", true }, { "giethoorn.com", true }, + { "gietvloer-wand.nl", true }, { "gietvloergarant.nl", false }, { "gifino.fr", true }, { "giftcard.net", true }, @@ -30604,6 +31014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giga.nl", true }, { "gigabitz.pw", true }, { "gigacog.com", true }, + { "gigantar.com", true }, { "gigantism.com", true }, { "gigasoft.tk", true }, { "gigawa.lt", true }, @@ -30620,7 +31031,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gigtroll.eu", true }, { "gijsbertus.com", true }, { "gijswesterman.nl", true }, - { "gilangcp.com", true }, { "gileadpac.com", true }, { "gilescountytn.gov", true }, { "giliamor.com", true }, @@ -30664,12 +31074,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giraffenland.de", true }, { "giraffes.org", true }, { "giri.co", true }, + { "girl.click", true }, { "girl.science", true }, { "girlan.net", true }, { "girlinthetiara.com", true }, { "girlsforum.com", true }, { "girlsgenerationgoods.com", true }, - { "girlsgonesporty.com", true }, { "girlsnet.work", true }, { "girlz.jp", true }, { "girsa.org", true }, @@ -30697,11 +31107,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "githubber.com", true }, { "githubber.tv", true }, { "gitla.in", true }, + { "gitns.com", true }, + { "gitns.dev", true }, + { "gitns.io", true }, + { "gitns.net", true }, + { "gitns.nl", true }, + { "gitns.org", true }, { "gitstuff.tk", true }, { "gittigidiyor.com", true }, { "gittr.ch", true }, { "gitube.cn", true }, { "giuem.com", true }, + { "giulianomanzoni.com", true }, { "giunchi.net", true }, { "giuseppemacario.men", true }, { "givastar.com", true }, @@ -30795,6 +31212,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glenshere.com", true }, { "glevolution.com", true }, { "glexia.com", true }, + { "gliagrumi.it", true }, { "glidestep.com", true }, { "glidingshop.cz", true }, { "glidingshop.de", true }, @@ -30870,7 +31288,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gloning.name", true }, { "glont.net", true }, { "gloomyspark.com", true }, - { "gloomyvancouver.com", true }, { "gloryholefucking.com", true }, { "glosiko.cn", true }, { "glosiko.com", true }, @@ -30918,6 +31335,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gmeet.at", true }, { "gmeet.io", true }, { "gmenhq.com", true }, + { "gmgard.com", true }, { "gmind.ovh", true }, { "gmod.de", true }, { "gmpark.dk", true }, @@ -30984,6 +31402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goatcloud.com", true }, { "goaudits.com", true }, { "gobarrelroll.com", true }, + { "gobiernousa.gov", true }, { "goblackcat.com", true }, { "goblinsatwork.com", true }, { "goblintears.com", true }, @@ -30992,6 +31411,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gobytedesign.co.uk", true }, { "goc4wraps.com", true }, { "gocardless.com", true }, + { "gocdn.com.br", true }, { "gocher.me", true }, { "gochu.se", true }, { "gocleanerslondon.co.uk", true }, @@ -31009,13 +31429,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goddg.com", true }, { "godesb.com", true }, { "godesigner.ru", true }, + { "godofredo.ninja", true }, { "godrealms.com", true }, { "godrive.ga", true }, { "godruoyi.com", true }, { "godsofhell.com", true }, { "godsofhell.de", true }, { "goeb.eu", true }, - { "goeb.org", true }, + { "goeb.org", false }, { "goededoelkerstkaarten.nl", true }, { "goedkoopstecartridges.nl", true }, { "goedkopecartridgeskopen.nl", true }, @@ -31062,6 +31483,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goldcoastphotographycourses.com", true }, { "goldcoaststumpbusters.com", true }, { "golden-kamuy.com", true }, + { "golden-squad.com", true }, { "goldenage.tk", true }, { "goldenbadger.de", true }, { "goldendawnapersonalaffair.com", true }, @@ -31077,6 +31499,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goldlevelmarketing.com", true }, { "goldlevelprint.com", true }, { "goldmark.com.au", false }, + { "goldpetergood.top", true }, { "goldpreisfinder.at", true }, { "goldsecurity.com", true }, { "goldships.com", true }, @@ -31108,9 +31531,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gomega.vn", true }, { "gomel.chat", true }, { "gomel.city", true }, + { "gomelagromashplus.by", true }, { "gomelchat.com", true }, { "gomelphoto.com", true }, + { "gometa.link", true }, + { "gomiblog.com", true }, { "gommista.roma.it", true }, + { "gomods.link", true }, { "gomu.ca", true }, { "gon45.com", true }, { "gondawa.com", true }, @@ -31125,7 +31552,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goo.gl", true }, { "gooch.io", true }, { "gooday.life", true }, - { "goodcreds.com", true }, { "gooddomainna.me", true }, { "goodfeels.net", true }, { "goodfor.us", true }, @@ -31148,6 +31574,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "google-analytics.com", true }, { "google.ax", true }, { "googleandroid.cz", true }, + { "googleapis.com", true }, { "googlehits.com", true }, { "googlemail.com", false }, { "googlepinyin.com", true }, @@ -31160,6 +31587,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goonersworld.co.uk", true }, { "goonfleet.com", true }, { "goontopia.com", false }, + { "goontu.be", true }, { "goooo.info", true }, { "gooseberries.ch", true }, { "gootax.pro", false }, @@ -31169,6 +31597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goparity.com", true }, { "gopher.tk", false }, { "gophoto.it", true }, + { "gopkg.link", true }, { "gopnikman.cf", true }, { "gopostore.com", true }, { "goproallaccess.com", true }, @@ -31201,7 +31630,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gorschenin.com", true }, { "gosaavd.tk", true }, { "gosccs.com", true }, - { "gosforthdentalsurgery.co.uk", true }, { "goshawkdb.io", true }, { "goshin-group.co.jp", true }, { "goshow.tv", true }, @@ -31210,7 +31638,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gospelites.com", true }, { "gospelvestcination.de", true }, { "gospicers.ca", true }, - { "gospomedley.com.ng", true }, { "gosportweather.co.uk", true }, { "gosq.co", true }, { "gosq.com", true }, @@ -31242,6 +31669,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gottcar.com", true }, { "gottfridsberg.org", true }, { "goudenharynck.be", true }, + { "goudenlaantje.nl", true }, { "goudt.nl", true }, { "gouforit.com", true }, { "goug0.com", true }, @@ -31293,7 +31721,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gowin9.com", true }, { "gowin9.net", true }, { "gowithflo.de", true }, - { "gozaars.com", true }, { "gozadera.es", true }, { "gpalabs.com", true }, { "gpccp.cc", true }, @@ -31383,6 +31810,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grancellconsulting.com", true }, { "grand-city38.ru", true }, { "grand-sity.ru", true }, + { "grandcafeatpark.nl", true }, { "grandcafecineac.nl", true }, { "grandcafetwist.nl", true }, { "grandcapital.cn", true }, @@ -31408,6 +31836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grannys-stats.com", true }, { "grannyshouse.de", true }, { "grantcooper.com", true }, + { "grantdb.ca", true }, { "granth.io", true }, { "grantmorrison.net", true }, { "grantpark.org", true }, @@ -31457,6 +31886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gravilink.com", true }, { "graviola.es", true }, { "gravitascreative.net", true }, + { "gravito.nl", false }, { "gravity-dev.de", false }, { "gravity-inc.net", true }, { "gravityformspdfextended.com", true }, @@ -31465,7 +31895,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grayclub.co.il", true }, { "grayhatter.com", true }, { "grayiron.io", true }, - { "graymalk.in", true }, { "grayowlworks.com", true }, { "grayrectangle.com", true }, { "grayscale.co", false }, @@ -31495,7 +31924,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greeklish.gr", true }, { "greekmusic.academy", true }, { "greeknewspapers.tk", true }, - { "greekplots.com", true }, { "greeks.tk", true }, { "green-anarchy.tk", true }, { "green-attitude.be", true }, @@ -31556,6 +31984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greggsfoundation.org.uk", true }, { "gregmartyn.com", true }, { "gregmarziomedia-dev.com", true }, + { "gregmarziomedia.co.za", true }, { "gregmarziomedia.com", true }, { "gregmc.ru", true }, { "gregmilton.com", true }, @@ -31640,7 +32069,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grizz.gdn", true }, { "grizzlys.com", true }, { "groben-itsolutions.de", true }, - { "grocock.me.uk", true }, { "groenaquasolutions.nl", true }, { "groentebesteld.nl", true }, { "groenteclub.nl", false }, @@ -31648,7 +32076,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groentefruitzeep.nl", true }, { "groepjam-usedcars.be", false }, { "grog.pw", true }, - { "grokandtonic.com", true }, { "grokker.com", true }, { "groklearning.com", true }, { "grolimur.ch", true }, @@ -31665,6 +32092,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gross.business", true }, { "grossberger-ge.org", false }, { "grossell.ru", true }, + { "grosser.io", true }, { "grossiste-en-ligne.com", true }, { "grossmisconduct.news", true }, { "groszek.pl", true }, @@ -31674,6 +32102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grottenthaler.eu", true }, { "grouchysysadmin.com", true }, { "grouindev.net", true }, + { "groundengenharia.com", true }, { "groundmc.net", true }, { "groundsdirect.com", true }, { "groundspan.com", true }, @@ -31682,6 +32111,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groundthumpinmotors.com", true }, { "groundthumpinmotors.net", true }, { "group4layers.net", true }, + { "groupe-erige.com", true }, { "groupe-neurologique-nord.lu", true }, { "groupeatrium.net", true }, { "groupem6.fr", true }, @@ -31808,10 +32238,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guelphhydropool.com", true }, { "guendra.dedyn.io", true }, { "guenthereder.at", true }, - { "guepardoinvest.com.br", true }, { "guerard.info", true }, { "guercioarchitecture.com", true }, { "guernseycounty.gov", true }, + { "guerra24.net", true }, { "guerrilla.technology", true }, { "guesthouse-namaste.com", true }, { "guevener.de", true }, @@ -31847,7 +32277,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guidesorbetiere.com", true }, { "guidethailande.tk", true }, { "guidetoiceland.is", false }, - { "guilde-dissection.com", true }, { "guildgearscore.cf", false }, { "guildofmusicsupervisors.co.uk", true }, { "guillaume-briand.fr", true }, @@ -31859,13 +32288,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guim.co.uk", true }, { "guineapigmustach.es", true }, { "guitarangel.tk", true }, - { "guitarvolume.com", true }, { "gujun-sky.com", true }, { "gulchuk.com", true }, { "gulcinulutuna.com", true }, { "gulenbase.no", true }, { "gulfstream.ru", true }, { "gulleyperformancecenter.com", true }, + { "gullones.es", true }, { "gulshankumar.net", true }, { "gumeyamall.jp", true }, { "gumi.ca", true }, @@ -31906,6 +32335,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gururi.com", true }, { "gus.host", true }, { "gus.moe", true }, + { "gusli.net", true }, { "gusmiller.org", true }, { "gustaff.de", true }, { "gustiaux.com", false }, @@ -31961,6 +32391,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gwrtech.com", true }, { "gwsec.co.uk", true }, { "gwthub.com", true }, + { "gwy15.com", true }, { "gwynfryncottages.com", true }, { "gxgx.org", true }, { "gxlrx.net", true }, @@ -31968,6 +32399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gxpconsultora.com", true }, { "gyaou-ek1njb79xkfsyxemzmauhkvxszyua7v2t.com", true }, { "gyas.nl", true }, + { "gycis.me", true }, { "gymagine.ch", true }, { "gymbunny.de", true }, { "gymhero.me", true }, @@ -31983,7 +32415,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gympass.com", true }, { "gynaecology.co", true }, { "gynem.de", true }, - { "gynoguide.com", true }, { "gyoza.beer", true }, { "gypsyreel.com", true }, { "gyre.ch", false }, @@ -31999,7 +32430,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gzitech.net", true }, { "gzitech.org", true }, { "gzom.ru", true }, - { "gzriedstadt.de", true }, { "h-ealthy.net", true }, { "h-jo.net", true }, { "h-server.myfirewall.org", true }, @@ -32014,6 +32444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h24.org", true }, { "h2b.me", true }, { "h2cdn.cloud", true }, + { "h2office.jp", true }, { "h2rul.eu", true }, { "h2s-design.de", true }, { "h2ssafety.com", true }, @@ -32036,21 +32467,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h678.top", true }, { "h6852.com", true }, { "h6853.com", true }, - { "h6895.com", false }, + { "h6895.com", true }, { "h6913.com", true }, { "h6957.co", true }, { "h81365.com", true }, { "h82365.com", true }, { "h9297.co", true }, - { "h9386.com", false }, + { "h9386.com", true }, { "h9728.co", true }, { "ha-kunamatata.de", true }, { "ha.com", true }, { "ha3.eu", true }, { "ha6.ru", true }, + { "haakonbecker.de", true }, { "haaldesignpro.com", true }, { "haancommunity.cf", true }, - { "haarentfernung-elektroepilation.de", true }, { "haarigerrattenarsch.com", true }, { "haarlemsesaxofoonschool.nl", true }, { "haarstudiok99.nl", true }, @@ -32112,6 +32543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackerone.net", true }, { "hackerone.org", true }, { "hackerschat.net", true }, + { "hackerspace.rocks", true }, { "hackerstxt.org", true }, { "hackettrecipes.com", true }, { "hackgins.com", true }, @@ -32158,6 +32590,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haggeluring.su", true }, { "hagiati.gr", true }, { "hagier.pl", true }, + { "hagoyvivo.com", true }, { "hagskold.se", true }, { "hagueaustralia.com.au", true }, { "haha-raku.com", true }, @@ -32182,6 +32615,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hairraisingphotobooths.co.uk", true }, { "haitaka.cc", true }, { "haitou.tk", true }, + { "haiwaiyingyuan.net", true }, { "haixihui.cn", true }, { "haizum.pro", true }, { "hajekdavid.cz", true }, @@ -32198,6 +32632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hakkariradyo.tk", true }, { "hakkasan.com", true }, { "hakkasannightclub.com", true }, + { "haklappar.nu", true }, { "hakugin.me", true }, { "hal-9th.space", true }, { "halacs.hu", true }, @@ -32222,6 +32657,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "halligladen.de", true }, { "hallmarkestates.ca", true }, { "hallme.com", true }, + { "hallocsi.ga", true }, { "hallopstyling.com", true }, { "halls.hu", true }, { "hallspumpandwellservice.net", true }, @@ -32262,7 +32698,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hana-groupsac.com", true }, { "hana.ondemand.com", true }, { "hanakaraku.com", true }, - { "hanami-web.tokyo.jp", true }, { "hanazono.tokyo", true }, { "hanbing.it", true }, { "hancockcountyohioelections.gov", true }, @@ -32277,6 +32712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "handmadehechoamano.com", true }, { "handmadetutorials.ro", true }, { "handwerk-digital-steinfurt.de", true }, + { "handwerkwebseiten.de", true }, { "handy-reparatur-berlin.com", true }, { "handyglas.com", true }, { "handymanbypolli.com", true }, @@ -32371,6 +32807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "happydoq.ch", false }, { "happygadget.me", true }, { "happyglacons.com", true }, + { "happyheartsabode.com", true }, { "happykidscastles.co.uk", true }, { "happylearning.com", true }, { "happylifestyle.com", true }, @@ -32406,6 +32843,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hardrock.tk", true }, { "hardtfrieden.de", true }, { "hardtime.ru", true }, + { "hardwarelog.in", true }, + { "hardwarelogin.com", true }, + { "hardwarelogin.rocks", true }, { "hardwareschotte.de", true }, { "harelmallac.com", true }, { "harelmallacglobal.com", true }, @@ -32489,7 +32929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hashidays.com", false }, { "hashimah.ca", true }, { "hashimoto-jimusho.com", true }, - { "hashinteractive.com", true }, + { "hashinteractive.com", false }, { "hashish.net", true }, { "hashiura.jp", true }, { "hashplex.com", true }, @@ -32526,9 +32966,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haushaltsaufloesunghannover.de", true }, { "haushenne.de", true }, { "hausjugo.de", true }, + { "hauspie.fr", true }, { "haustechnik-breu.de", true }, { "hausundhof.com", true }, { "hausverbrauch.de", true }, + { "hausverwaltung-motsch.de", true }, { "hautaka.com", true }, { "hautarztzentrum.ch", true }, { "hauteslatitudes.com", false }, @@ -32580,7 +33022,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hayl.me.uk", true }, { "hayobethlehem.nl", true }, { "hayonik.com", true }, - { "haystack-staging.com", true }, { "haystackrenovation.com.au", true }, { "hayvid.com", true }, { "haz.cat", true }, @@ -32611,7 +33052,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hbweb.io", true }, { "hcbj.io", true }, { "hcie.pl", false }, - { "hcs-company.com", true }, { "hcscrusaders.com", true }, { "hd-6132.com", true }, { "hd-gaming.com", true }, @@ -32648,6 +33088,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hds-lan.de", true }, { "hdtwinks.com", true }, { "hdv.paris", true }, + { "hdview.co.uk", true }, { "hdwalldownloads.com", false }, { "hdwallpapers.net", true }, { "hdy.nz", true }, @@ -32657,6 +33098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "head.ru", true }, { "headforcloud.com", true }, { "headjapan.com", true }, + { "headlinenews.co", true }, { "headlinepublishing.be", true }, { "healike.hk", true }, { "healingourskin.com", true }, @@ -32679,8 +33121,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "healthfinder.gov", true }, { "healthfitapp.com", true }, { "healthfoam.com", true }, - { "healthgames.co.uk", true }, - { "healthiercompany.com", true }, { "healthiergenerations.co.uk", true }, { "healthit.gov", true }, { "healthmatchapp.com", true }, @@ -32718,6 +33158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hearttruth.gov", true }, { "heartwoodart.com", true }, { "hearty.blog", true }, + { "hearty.edu.pl", true }, { "hearty.eu.org", true }, { "hearty.ga", true }, { "hearty.gq", true }, @@ -32753,8 +33194,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hebingying.cn", true }, { "hec-espace-entreprise.ch", false }, { "hec.global", true }, + { "hechizosymagianegra.es", true }, { "heckelektro.de", true }, { "heckerundknopp.de", true }, + { "heddoun.com", true }, { "hedge.fi", true }, { "hedgeschool.ie", true }, { "hedonism.org", true }, @@ -32831,6 +33274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heldtech.services", true }, { "heldundsexgott.de", true }, { "heleendebruyne.be", true }, + { "helenabienesraices.com.mx", true }, { "helenaknowledge.com", true }, { "helenekurtz.com", true }, { "helenelefauconnier.com", true }, @@ -32838,7 +33282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "helensmithpr.co.uk", true }, { "helfordriversc.co.uk", true }, { "helgaschultz.de", true }, - { "helicaldash.com", true }, { "helichat.de", true }, { "helifreak.club", true }, { "helijobs.net", true }, @@ -32859,10 +33302,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hellersgas.com", true }, { "helloacm.com", true }, { "helloafrica.ga", true }, + { "hellobee.com", true }, { "hellobrian.me", true }, { "hellocyber.co.uk", true }, { "hellofilters.com", true }, { "hellolocalmedia.com.au", true }, + { "hellolove.sg", true }, { "hellomedian.com", true }, { "hellomookie.com", true }, { "hellomouse.cf", true }, @@ -32903,11 +33348,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hemdal.se", true }, { "hemkoll.nu", true }, { "hemnet.se", true }, - { "hemp.je", true }, + { "hemp.je", false }, { "hems.si", true }, { "hemtest.com", true }, { "hen.ne.ke", true }, { "hendersonvalleyautomotive.co.nz", true }, + { "hendersonvilletutor.com", true }, { "hendric.us", false }, { "hendrickx.be", true }, { "hendrik.li", true }, @@ -32996,6 +33442,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hermes-servizi.it", true }, { "hermes.cat", true }, { "herminghaus24.de", true }, + { "hermitant.fr", true }, { "hermiu.com", true }, { "herni-kupony.cz", true }, { "hernn.com", true }, @@ -33054,6 +33501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heutger.net", true }, { "hevertonfreitas.com.br", true }, { "hex.nl", true }, + { "hexa.network", true }, { "hexacon.io", true }, { "hexadecimal.tech", true }, { "hexagon-e.com", true }, @@ -33062,7 +33510,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexcode.in", true }, { "hexed.it", true }, { "hexhu.com", true }, - { "hexhu.net", true }, { "hexiaohu.cn", true }, { "hexid.me", false }, { "hexieshe.com", true }, @@ -33075,7 +33522,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexstream.xyz", true }, { "hexstreamsoft.com", true }, { "hexxagon.com", true }, - { "heyapakabar.com", true }, { "heyboldface.com", true }, { "heycms.com", false }, { "heyfringe.com", true }, @@ -33089,21 +33535,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hg.python.org", true }, { "hg0086.la", true }, { "hg170.cc", true }, - { "hg2018hg.com", false }, - { "hg61388.com", false }, - { "hg62388.com", false }, + { "hg2018hg.com", true }, + { "hg61388.com", true }, + { "hg62388.com", true }, { "hg661.cc", true }, - { "hg67388.com", false }, - { "hg67855.com", false }, - { "hg67877.com", false }, + { "hg67388.com", true }, + { "hg67855.com", true }, + { "hg67877.com", true }, { "hg71839.com", true }, - { "hg72988.com", false }, + { "hg72988.com", true }, { "hg881.com", true }, - { "hg97188.com", false }, - { "hg97288.com", false }, - { "hg97388.com", false }, - { "hg97588.com", false }, - { "hg97688.com", false }, + { "hg97188.com", true }, + { "hg97288.com", true }, + { "hg97388.com", true }, + { "hg97588.com", true }, + { "hg97688.com", true }, { "hgbet.com", true }, { "hgc369.com", true }, { "hgfa.fi", true }, @@ -33151,6 +33597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiddenimage.ml", true }, { "hiddenmalta.net", true }, { "hiddenpalms.tk", true }, + { "hiddenrefuge.eu.org", true }, { "hiddout.com", true }, { "hide.me", true }, { "hideallip.com", true }, @@ -33192,6 +33639,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hightechreviews.ga", true }, { "hightimes.com", true }, { "highwaytohoell.de", true }, + { "highwayzen.org", true }, { "higilopocht.li", true }, { "hiimodel.com", true }, { "hik-cloud.com", true }, @@ -33218,6 +33666,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hillcrestswimclub.com", true }, { "hillebrand.io", true }, { "hillier-swift.co.uk", true }, + { "hillingshaeuser.com", true }, { "hillsandsaunders.co.uk", true }, { "hillsandsaunders.com", true }, { "hillsboroccpa.org", true }, @@ -33231,6 +33680,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiltonsydney.com.au", true }, { "himalaya-cross.com", true }, { "himalaya-masala.at", true }, + { "himalayanyogashram.com", true }, { "himcy.ga", true }, { "himecorazon.com", true }, { "himekomi.com", true }, @@ -33239,13 +33689,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hin10.com", true }, { "hinaryazan.com", true }, { "hinata-hidetoshi.com", true }, + { "hinderlider.de", true }, { "hindibaba.tk", true }, { "hindimoviedownload.net", true }, { "hindimovieonline.net", true }, { "hindu-temple.tk", true }, { "hinepaving.com", false }, { "hingle.me", true }, - { "hingston.org", true }, + { "hinota.com", true }, { "hintergrundbewegung.de", true }, { "hinterhofbu.de", true }, { "hinterposemuckel.de", true }, @@ -33255,6 +33706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hipercultura.com", true }, { "hiperusera.es", true }, { "hiphop.ren", true }, + { "hiphop2gif.com", true }, { "hipnos.net", true }, { "hippiekiller.net", true }, { "hippies.com.br", true }, @@ -33279,6 +33731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hirezzportal.com", true }, { "hiromuogawa.com", true }, { "hirotaka.org", true }, + { "hirte-digital.de", false }, { "hisbrucker.net", true }, { "hisgifts.com.au", true }, { "hisingensck.se", true }, @@ -33300,6 +33753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "history.google.com", true }, { "history.gov", true }, { "history.pe", true }, + { "historymuseumsb.org", true }, { "hitandhealth.nl", true }, { "hitchpin.com", true }, { "hitchunion.org", true }, @@ -33359,14 +33813,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hj99199.com", false }, { "hj99333.com", false }, { "hj99vip.com", false }, + { "hjallboscoutkar.se", true }, { "hjartasmarta.se", true }, + { "hjdiaz.com", true }, { "hjelpemiddeldatabasen.no", true }, { "hjertingfysioterapi.dk", true }, { "hjes.com.ve", true }, { "hjkbm.cn", true }, { "hjort.land", true }, { "hjortland.org", true }, + { "hjosh.com", true }, { "hjphoto.co.uk", true }, + { "hjstudio.co", true }, { "hjtky.cn", true }, { "hjyl.xn--fiqs8s", false }, { "hjyl1888.com", false }, @@ -33402,10 +33860,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hlavi.hu", true }, { "hledejlevne.cz", true }, { "hledejpravnika.cz", true }, - { "hlegrandbeautysupply.com", true }, { "hlfh.space", true }, { "hlg66.cc", true }, { "hlg88.cc", true }, + { "hlidani-tornado.cz", true }, { "hlinformatics.nl", true }, { "hloe0xff.ru", true }, { "hlpublicidad.com", true }, @@ -33430,6 +33888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hnfertilizermachine.com", true }, { "hnn.net.br", true }, { "hnonline.sk", true }, + { "hnsseed.com", true }, { "hnyp.hu", true }, { "ho18.net", true }, { "ho188.net", true }, @@ -33444,7 +33903,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoathienthao.vn", true }, { "hobby-drechselei.de", true }, { "hobby-freizeit.de", true }, - { "hobbyspeed.com", true }, { "hoberg.ch", true }, { "hochhaus.us", true }, { "hochoukikikiraku.com", true }, @@ -33452,6 +33910,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hochzeit-dana-laurens.de", true }, { "hochzeitsfotograf-deinfoto.ch", true }, { "hochzeitsplanerin-hamburg.de", true }, + { "hochzeitstypen.de", true }, { "hockey.academy", true }, { "hockeyapp.ch", true }, { "hockeymotion.ch", true }, @@ -33475,6 +33934,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoffmann-fliesen-design.de", true }, { "hoffnungberlin.de", true }, { "hoffnungdeutschland.de", true }, + { "hofiprojekt.cz", true }, { "hoflerlawfirm.com", true }, { "hofstaetter.io", true }, { "hogarthdavieslloyd.com", true }, @@ -33511,7 +33971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holistichealer.in", true }, { "holisticon.de", true }, { "holland-sailing.de", true }, - { "hollandsdiep.nl", true }, { "hollermann.eu", true }, { "hollowpoint.xyz", true }, { "hollowrap.com", true }, @@ -33587,13 +34046,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeimagician.com.au", true }, { "homelab.farm", true }, { "homelabalert.com", true }, - { "homeland.ie", true }, + { "homelandsecurity.gov", true }, { "homem-viril.com", true }, + { "homemakerschallenge.com", true }, { "homemdeferro.net", true }, { "homeodynamics.com", true }, { "homeoesp.org", true }, { "homeofjones.net", true }, { "homeogenium.com", false }, + { "homeopata.tv", true }, { "homeownersinsurancenevada.com", true }, { "homeownersinsurancenv.com", true }, { "homepage.shiga.jp", true }, @@ -33604,10 +34065,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeseller.com", true }, { "homeserver-kp.de", true }, { "homeshowoff.com", true }, + { "homestead-honey.com", true }, { "homesteadandprepper.com", true }, { "homesteadfarm.org", true }, { "homewatt.co.uk", true }, { "homeworkacers.com", true }, + { "homey-app.online", true }, { "homeyou.com", true }, { "hommeatoutfaire.be", false }, { "homoglyph.net", true }, @@ -33627,6 +34090,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "honeybadger.io", false }, { "honeybrooklibrary.org", true }, { "honeycomb.com.vn", true }, + { "honeycome-recruit.com", true }, { "honeycome.net", true }, { "honeycreeper.com", true }, { "honeyhaw.com", true }, @@ -33653,6 +34117,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoodoo.tech", true }, { "hoodtrader.com", true }, { "hoofdredacteuren.nl", true }, + { "hoogelandzorg.nl", true }, { "hoogeveen.nl", false }, { "hooghiemstrazelf.nl", true }, { "hookbin.com", true }, @@ -33691,6 +34156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hopzone.net", true }, { "hor.website", true }, { "horaceli.com", true }, + { "horaciolopez.pro", true }, { "horackova.info", true }, { "horairetrain.be", true }, { "horairetrain.ch", true }, @@ -33753,6 +34219,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostedghost.eu", true }, { "hostedghost.net", true }, { "hostedghost.nl", true }, + { "hostedghost.org", true }, { "hostedtalkgadget.google.com", true }, { "hosteleriauno.es", true }, { "hosteons.com", true }, @@ -33769,7 +34236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostinginnederland.nl", true }, { "hostinglogin.net", true }, { "hostingphp.ch", true }, - { "hostingpunt.be", true }, { "hostingsolutions.cz", true }, { "hostix.de", true }, { "hostma.ma", true }, @@ -33785,6 +34251,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotchillibox.com", true }, { "hotcoin.io", true }, { "hotdates18.com.au", true }, + { "hotdates18.dk", true }, { "hotdates18.fi", true }, { "hotdoc.com.au", true }, { "hotel-alan.hr", true }, @@ -33836,7 +34303,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotesb.com", true }, { "hotesb.net", true }, { "hothbricks.com", false }, + { "hothub.net", true }, { "hotjuice.com", true }, + { "hotlistproducts.com", true }, { "hotlog.tk", true }, { "hotmann.de", true }, { "hotnewhiphop.com", true }, @@ -33875,7 +34344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "houstonendodontics.com", true }, { "houstongaragedoorsrepair.com", true }, { "houstonlockout.com", true }, - { "houstontxlocksmiths.com", true }, { "houtinee.com", true }, { "hoverboardbarato.com", true }, { "how-old.info", true }, @@ -33917,6 +34385,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howtutu.link", true }, { "howtutu.net", true }, { "howtutu.org", true }, + { "howunadeydoam.ng", true }, { "hoxo.fr", true }, { "hozana.si", false }, { "hozinga.de", true }, @@ -33962,6 +34431,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "href.one", true }, { "hreflang.info", true }, { "hrjfeedstock.org", true }, + { "hrkenterprise.com", true }, { "hrltech.com.br", true }, { "hrmg.agency", true }, { "hrna.moe", true }, @@ -33971,7 +34441,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hroling.nl", true }, { "hroschyk.cz", true }, { "hrpregnancy.com", true }, - { "hrsa.gov", true }, { "hrstapps-dev.com", true }, { "hrtech.shop", true }, { "hrumka.net", true }, @@ -34000,11 +34469,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hsts.me", true }, { "hsts.ovh", true }, { "hstsfail.appspot.com", true }, - { "hstspreload.appspot.com", true }, { "hstspreload.com", true }, { "hstspreload.de", true }, { "hstspreload.me", true }, - { "hstspreload.org", true }, { "hstudio.tk", true }, { "hsturan.com", true }, { "hsulei.com", true }, @@ -34115,6 +34582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hubspot.fr", true }, { "hubspot.jp", true }, { "huchet.me", true }, + { "hucklebucks.com", true }, { "hudebnibazarmixer.cz", true }, { "hudhaifahgoga.co.za", true }, { "hudobniny.net", true }, @@ -34129,6 +34597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huffduffer.com", true }, { "huffsinsurance.com", true }, { "hugh-dancy.com", true }, + { "hughfitzgerald.com", true }, { "hughtodd.ink", true }, { "hugi.is", true }, { "huglen.info", true }, @@ -34150,7 +34619,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hui-in.com", true }, { "hui-in.net", true }, { "huihui.moe", true }, - { "huimiquan.com", true }, { "huininga.com", true }, { "huininga.nl", true }, { "huininga.org", true }, @@ -34184,6 +34652,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humanity.com", true }, { "humaniza.com.mx", true }, { "humanlocation.net", true }, + { "humannaturelandscapes.com.au", true }, { "humans.io", false }, { "humansense.nl", true }, { "humanzee.com", true }, @@ -34262,6 +34731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hurbascooter.com", true }, { "hurd.is", true }, { "hurleyhomestead.com", true }, + { "huroji.com", false }, { "hurricanelabs.com", true }, { "hurtigtinternet.dk", true }, { "husakbau.at", true }, @@ -34368,7 +34838,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyper-text.org", true }, { "hyper.ai", true }, { "hyper.lol", true }, - { "hyperactive.am", true }, { "hyperalgesia.com", true }, { "hyperautomotive.com.au", true }, { "hyperbolic-mayonnaise-interceptor.ovh", true }, @@ -34380,6 +34849,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyperstack.org", true }, { "hyperthymia.com", true }, { "hyperv.fr", true }, + { "hypevents.net", true }, { "hyphen.co.za", true }, { "hyphenpda.co.za", true }, { "hypnose-hennigsdorf.de", true }, @@ -34573,7 +35043,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibwc.gov", true }, { "ibykos.com", true }, { "ic-lighting.com.au", true }, - { "ic1technologies.com", true }, { "ic3.gov", true }, { "icafecash.com", true }, { "icanhas.report", true }, @@ -34599,10 +35068,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icecodenew.tk", true }, { "icecontrol.ro", true }, { "icecutethings.com", true }, - { "icedream.tech", true }, { "icelandic.cf", true }, { "icelandicasian.com", true }, { "iceloch.com", true }, + { "icepharmaceuticals.com", true }, { "icetiger.eu", true }, { "icetravellers.com", true }, { "icetwister.com", true }, @@ -34649,7 +35118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icusignature.com", true }, { "icy.aq", true }, { "icyapril.com", true }, - { "icymint.me", true }, { "icynet.eu", true }, { "icyrock.com", true }, { "iczc.cz", true }, @@ -34695,6 +35163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idee-lq.com", true }, { "idee-lq.de", true }, { "idee-lq.net", true }, + { "ideefactory.de", true }, { "ideiasefinancas.com.br", true }, { "idemo.in", true }, { "idenamaislami.com", true }, @@ -34732,13 +35201,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idmanagement.gov", true }, { "idmobile.co.uk", true }, { "idn.gov.pt", false }, - { "idndx.com", true }, { "idoc24.com", true }, { "idodiandina.com", true }, { "idol-bikes.ru", true }, { "idolf.dk", true }, { "idolish7.fun", false }, { "idolknow.com", true }, + { "idontexist.me", false }, { "idontplaydarts.com", true }, { "idoparadoxon.hu", true }, { "idouying.com", true }, @@ -34771,6 +35240,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ieji.de", true }, { "iemb.cf", true }, { "iemb.tk", true }, + { "iemsamex.com", true }, { "ienakanote.com", false }, { "ient.me", true }, { "ies-italia.it", true }, @@ -34780,13 +35250,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ievgenialehner.com", true }, { "iewar.com", true }, { "iexpert99.com", true }, + { "if-fashion.gr", true }, { "if0.ru", true }, { "ifacservice.be", true }, + { "ifamily.top", true }, { "ifan.ch", true }, { "ifan.ws", true }, { "ifangpei.cn", true }, { "ifangpei.com.cn", true }, { "ifasec.de", false }, + { "ifashionable.info", true }, { "ifbagro.in", true }, { "ifcfg.jp", true }, { "ifcfg.me", true }, @@ -34824,6 +35297,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ig.com", true }, { "ig.me", true }, { "iga-semi.jp", true }, + { "iganesh.com", true }, { "igap.pt", true }, { "igarage.nl", true }, { "igdn.de", true }, @@ -34912,7 +35386,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iideaz.org", true }, { "iiet.pl", true }, { "iiit.pl", true }, - { "iikd.de", true }, { "iimarckus.org", true }, { "iin.fm", true }, { "iinf.in", true }, @@ -34943,11 +35416,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikebuku.ro", true }, { "ikebukuro-shame.com", true }, { "ikedaquotes.org", true }, + { "ikemedia.xyz", true }, { "ikenmeyer.com", true }, { "ikenmeyer.eu", true }, { "ikespta.com", true }, { "ikeyless.com", true }, { "ikfloreer.nu", true }, + { "ikhwanto.com", true }, { "ikigaiweb.com", true }, { "ikiler.com", true }, { "ikinokori-marketing.com", true }, @@ -34964,8 +35439,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikparis.com", true }, { "ikraenglish.com", false }, { "iksi.cc", true }, - { "ikud-seminare.de", true }, - { "ikud.de", true }, { "ikudo.top", true }, { "ikulist.me", true }, { "ikumi.us", true }, @@ -34983,6 +35456,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilamparas.com.ve", true }, { "ilamparas.mx", true }, { "ilard.fr", true }, + { "ilawgix.com", true }, { "ilazycat.com", true }, { "ilbiscottificiodipamparato.it", true }, { "ilbuongiorno.it", false }, @@ -35063,9 +35537,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilove618.com", true }, { "ilove918.com", true }, { "iloveherb.ru", true }, + { "ilovehoney.com.au", true }, { "ilovelwy.com", true }, { "ilovemychi.com", true }, - { "ilovequiz.ru", true }, { "ilovesamara.tk", true }, { "ilovestickers.gr", true }, { "ilovethiscampsite.com", true }, @@ -35175,6 +35649,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imkerverenigingzaanstreek.nl", true }, { "imkindofabigdeal.com", true }, { "imlec.net", true }, + { "imlhx.com", true }, { "imlinan.cn", true }, { "imlinan.com", true }, { "imlinan.info", true }, @@ -35207,7 +35682,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "immortal.run", true }, { "immortec.com", true }, { "immovit.be", true }, + { "imoasis.cn", true }, { "imobile3.com", true }, + { "imoe.ac.cn", false }, { "imoe.xyz", true }, { "imokuri123.com", true }, { "imolights.com", true }, @@ -35243,7 +35720,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imphotep.net", true }, { "impiantistica.org", true }, { "implantica.com", true }, - { "implantologie-dr-loeck.de", true }, { "impns.org", true }, { "imponet.com.ar", true }, { "import-shopping.de", true }, @@ -35293,7 +35769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imstocker.com", true }, { "imtikai.ml", true }, { "imtikaib.ml", true }, - { "imwalking.de", true }, { "imwjc.xyz", true }, { "imy.rs", true }, { "imydl.com", true }, @@ -35327,7 +35802,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inc.wf", true }, { "incarceratedwombats.com", true }, { "incarna.co", true }, - { "inceptionradionetwork.com", true }, { "incert.cn", true }, { "incertint.com", true }, { "inchcape-fleet-autobid.co.uk", true }, @@ -35342,9 +35816,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inclusiv.nl", true }, { "incoherent.ch", true }, { "income.wiki", true }, + { "incomingfire.com", true }, { "incommon.io", true }, { "incompliance.de", true }, { "inconcerts.de", true }, + { "incontactmetjezelf.nl", true }, { "incore.nl", true }, { "incosi.com", true }, { "incowrimo.org", true }, @@ -35378,6 +35854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indianareflux.com", true }, { "indianawaterdamagerepairpros.com", true }, { "indianerschmuck24.de", true }, + { "indianhelpline.in", true }, { "indiansmartpanel.com", true }, { "indianvisa.online", true }, { "indiapur.com", true }, @@ -35396,6 +35873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indigoinflatables.com", true }, { "indigojewelers.com", true }, { "indigolawnscape.net", true }, + { "indigopaints.be", true }, { "indigosakura.com", true }, { "indigostudios.com", true }, { "indigotreeservice.com", true }, @@ -35407,9 +35885,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indochina.io", true }, { "indogermanstartup.com", true }, { "indogermantrade.de", true }, + { "indoittraining.com", true }, { "indonesian-news.tk", true }, { "indoor-kletterwald.de", true }, - { "indoorcomfortteam.com", true }, { "indoorpaintball.co.uk", true }, { "indospot.tk", true }, { "indota.hu", true }, @@ -35423,6 +35901,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "industreiler.com.br", true }, { "industriafranchini.com", true }, { "industrial-remote-control.com", true }, + { "industrialpaintservices.com", true }, { "industriemeister.io", true }, { "industryperspectives.com", true }, { "indybay.org", true }, @@ -35481,7 +35960,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inflatiecalculator.nl", true }, { "inflationstation.net", true }, { "inflexsys.com", true }, - { "influencerchampions.com", true }, { "influo.com", true }, { "influxus.com", false }, { "infmed.com", true }, @@ -35492,6 +35970,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "info-screen-usercontent.me", true }, { "info-screen.me", true }, { "info-screw.com", true }, + { "info.gov", true }, { "infoamin.com", true }, { "infobae.com", true }, { "infobot.email", true }, @@ -35510,8 +35989,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infoduv.fr", true }, { "infofamouspeople.com", true }, { "infogram.com", true }, + { "infographicsmania.com", true }, { "infogym.com", true }, { "infohub.com.ua", true }, + { "infojeunes.fr", true }, { "infoland.ml", true }, { "infomasx.com", true }, { "infomax.gr", true }, @@ -35522,6 +36003,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infopico.com", true }, { "infopier.sg", true }, { "infoprofuse.com", true }, + { "infopronetwork.com", true }, + { "infopronetwork.net", true }, { "infoprosnetwork.co", true }, { "infoprosnetwork.com", true }, { "infor-allaitement.be", true }, @@ -35529,7 +36012,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "informaciondeciclismo.com", true }, { "informat.ga", true }, { "informaticapremium.com", false }, - { "informatiebeveiliging.nl", true }, { "informatiger.net", true }, { "informatik-handwerk.de", true }, { "informationrx.org", true }, @@ -35548,8 +36030,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infosective.org", true }, { "infosenior.ch", true }, { "infosexual.com", true }, + { "infosoph.org", true }, { "infosubasta.es", true }, { "infotainworld.com", true }, + { "infotekno.co.id", true }, { "infotelecharge.com", true }, { "infotics.es", false }, { "infotune.nl", true }, @@ -35609,6 +36093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infraplot.com", true }, { "infrarank.com", true }, { "infrarank.net", true }, + { "infrareader.com", true }, { "infraredradiant.com", true }, { "infrarot-thermometer.info", true }, { "infraspin.com", true }, @@ -35642,7 +36127,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ingermany.ml", true }, { "ingestion.life", true }, { "ingfreelancer.com", true }, - { "ingi.ga", true }, { "ingjobs.ch", true }, { "inglebycakes.co.uk", true }, { "inglesencanada.cf", true }, @@ -35655,7 +36139,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ingridvandamme.nl", true }, { "ingwaz.org", true }, { "inhaltsangabe.de", true }, - { "inheritestate.com", true }, { "inhouseents.co.uk", true }, { "iniby.com", true }, { "iniiter.com", true }, @@ -35668,7 +36151,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "initq.net", true }, { "initramfs.io", true }, { "initrd.net", true }, - { "injapan.nl", true }, { "injigo.com", false }, { "injurylawyer.com", true }, { "injust.me", true }, @@ -35751,6 +36233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inovatec.com", true }, { "inovatecapi.com", true }, { "inovatecsystems.com", true }, + { "inovigo.ro", true }, { "inovitec.eu", false }, { "inoxandco.com", true }, { "inoxdesign.fr", true }, @@ -35775,10 +36258,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inscomers.net", false }, { "inscribe.ai", true }, { "inscripcionessena.com", true }, + { "insecret.co.ua", true }, { "insecret.com.ua", true }, { "insecret.trade", true }, { "insecure.org.je", true }, { "insegne.roma.it", true }, + { "inseo.it", true }, { "insertcoins.net", true }, { "insertwh.at", true }, { "inserzioniticino.ch", true }, @@ -35837,8 +36322,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "instantluxe.com", true }, { "instantluxe.de", true }, { "instantmoron.com", true }, - { "instantphotocamera.com", true }, - { "instantphotoprinter.com", true }, { "instaquiz.ru", true }, { "instasex.ch", true }, { "instava.cz", true }, @@ -35953,6 +36436,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intern-base.com", true }, { "intern.tax", true }, { "internalkmc.com", true }, + { "international-arbitration-attorney.com", true }, { "international-friends.net", true }, { "internationalfashionjobs.com", true }, { "internationalschool.it", true }, @@ -35967,7 +36451,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "internet-tv4u.tk", true }, { "internet42.tk", true }, { "internetaanbieders.eu", true }, - { "internetanbieter-experte.de", true }, { "internetbank.swedbank.se", true }, { "internetbugbounty.com", true }, { "internetbusiness-howto.com", true }, @@ -36123,6 +36606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inzelabs.com", true }, { "inzernettechnologies.com", true }, { "inzestfreunde.de", true }, + { "inzichtmeditatie.nl", true }, { "ioactive.com", true }, { "iobint.com", true }, { "iocheck.com", true }, @@ -36210,12 +36694,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iplog.info", false }, { "ipmonitoring.hu", true }, { "ipmotion.ca", true }, + { "ipmscoutek.com", true }, { "ipnetworking.net", true }, { "ipo-times.jp", true }, - { "ipoisk.com.ua", true }, { "ipokabu.net", true }, { "ipomue.com", false }, - { "ipop.gr", true }, { "iposm.net", true }, { "ippawards.com", false }, { "ipplans.com", true }, @@ -36295,6 +36778,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "irenekauer.com", true }, { "irenkuhn.ch", true }, { "irequi.re", true }, + { "ireta.net", true }, { "ireviewi.com", true }, { "irf2.pl", true }, { "irfan.id", true }, @@ -36368,7 +36852,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isabellavandijk.nl", true }, { "isabelle-delpech.com", true }, { "isabellehogarth.co.uk", true }, - { "isabelmurillo-ordonez.com", true }, { "isakssons.com", true }, { "isamay.es", true }, { "isamiok.com", true }, @@ -36432,7 +36915,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "islamicmarkets.com", true }, { "islamicnews.tk", true }, { "islamnewss.tk", true }, - { "islamonline.net", true }, + { "islamqa.info", true }, { "island.studio", true }, { "islandhosting.com", true }, { "islandinthenet.com", true }, @@ -36479,9 +36962,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "israelnewswire.tk", true }, { "israelportalk.ml", true }, { "israkurort.com", true }, - { "isreedyinthe.uk", true }, - { "isreedyinthe.us", true }, - { "isreedyintheuk.com", true }, { "issa.org.pl", false }, { "issasfrissa.se", true }, { "isscouncil.com", true }, @@ -36553,7 +37033,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "it-supportistockholm.se", true }, { "it-supportnu.se", true }, { "it-swarm.net", true }, - { "it-sysoft.com", true }, { "it-tekniker.nu", true }, { "it-ti.me", true }, { "it-uws.com", false }, @@ -36633,7 +37112,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ithink.cf", true }, { "ithink.ml", true }, { "ithjalpforetag.se", true }, - { "ithot.ro", true }, { "itidying.com", true }, { "itikon.com", true }, { "itilo.de", true }, @@ -36650,6 +37128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itmax.ua", true }, { "itmedicinai.lt", true }, { "itmindscape.com", true }, + { "itmix.cz", true }, { "itmustbee.com", true }, { "itmx.cc", true }, { "itn.co.uk", true }, @@ -36723,7 +37202,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itzer.de", true }, { "itzkavin.tk", true }, { "iubuniversity.tk", true }, - { "iurisnow.com", true }, + { "iurisnow.com", false }, { "iuyos.com", true }, { "ivahbbiz.tk", true }, { "ivais.mx", true }, @@ -36737,6 +37216,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ivanmeade.com", true }, { "ivanovolive.ru", true }, { "ivanpolchenko.com", true }, + { "ivanteevka.org", true }, { "ivaoru.org", true }, { "ivendi.com", true }, { "ivetazivot.cz", true }, @@ -36850,13 +37330,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j30365.com", true }, { "j32662.com", true }, { "j32663.com", false }, - { "j32664.com", false }, - { "j32665.com", false }, - { "j32771.com", false }, - { "j32772.com", false }, - { "j32773.com", false }, - { "j32774.com", false }, - { "j32775.com", false }, + { "j32664.com", true }, + { "j32665.com", true }, + { "j32771.com", true }, + { "j32772.com", true }, + { "j32773.com", true }, + { "j32774.com", true }, + { "j32775.com", true }, { "j3349.com", true }, { "j36533.com", true }, { "j36594.com", true }, @@ -36881,6 +37361,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j70222.com", false }, { "j70333.com", false }, { "j70444.com", false }, + { "j70501.com", true }, + { "j70502.com", true }, + { "j70503.com", true }, + { "j70504.com", true }, + { "j70505.com", true }, { "j7051.com", true }, { "j7052.com", true }, { "j70555.com", false }, @@ -36932,7 +37417,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jabberzac.org", true }, { "jaberg-rutschi.ch", true }, { "jabergrutschi.ch", true }, - { "jability.ovh", true }, { "jabjab.de", true }, { "jacarandafinance.com.au", true }, { "jaccblog.com", true }, @@ -36981,6 +37465,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jadchaar.me", true }, { "jadehotel.nl", true }, { "jadesong.net", true }, + { "jadidgroup.com", true }, { "jadopado.com", true }, { "jaduniv.cf", true }, { "jaeger.link", true }, @@ -37078,7 +37563,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamessmith.me.uk", true }, { "jamestmart.in", true }, { "jamestmartin.me", true }, - { "jamestown.de", true }, + { "jamestown.de", false }, { "jamesturnerstickley.com", true }, { "jameswarp.com", true }, { "jamesxu.com", true }, @@ -37098,7 +37583,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamon.ca", true }, { "jamonsilva.com", true }, { "jamstatic.fr", true }, + { "jamyeprice.com", false }, { "jan-and-maaret.de", true }, + { "jan-becker.com", true }, { "jan-bucher.ch", true }, { "jan-daniels.de", true }, { "jan-gerd.com", true }, @@ -37111,6 +37598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janada.cz", true }, { "janata.net", true }, { "janaundgeorgsagenja.eu", true }, + { "janbilek.cz", true }, { "janbrodda.de", true }, { "jandev.de", true }, { "janduchene.ch", true }, @@ -37135,6 +37623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janker.me", true }, { "jann.is", true }, { "jannekekaasjager.nl", true }, + { "jannesmeyer.com", true }, { "jannyrijneveld.nl", true }, { "janokacer.sk", true }, { "janome.club", true }, @@ -37147,10 +37636,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janv.it", true }, { "janvari.com", true }, { "janvaribalint.com", true }, + { "janw.me", true }, { "janz.online", true }, { "jaot.info", true }, { "japanese-cuisine.com", true }, { "japanesemotorsports.net", true }, + { "japanesque.ru", true }, + { "japanesque.su", true }, { "japangids.nl", true }, { "japaniac.de", false }, { "japanphilosophy.com", false }, @@ -37165,6 +37657,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jardineriaon.com", true }, { "jaredfernandez.com", true }, { "jaredfraser.com", true }, + { "jarett-lee.com", true }, { "jarl.ninja", true }, { "jarmala.lt", true }, { "jarmandental.com", true }, @@ -37177,10 +37670,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jarrah-alsilawi.com", true }, { "jarrettgraham.com", true }, { "jarroba.com", true }, + { "jarrods.tech", true }, { "jas-team.net", true }, { "jashvaidya.com", true }, { "jasl.works", true }, { "jasmijnwagenaar.nl", true }, + { "jasminlive.cam", true }, { "jasnowidzkajowi.pl", true }, { "jason.re", false }, { "jasonamorrow.com", true }, @@ -37194,6 +37689,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jasonwei.nctu.me", true }, { "jasonwindholz.com", true }, { "jasper.link", true }, + { "jasperhammink.com", true }, { "jasperhuttenmedia.com", true }, { "jasperpatterson.me", true }, { "jaspersreef.com", true }, @@ -37210,6 +37706,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "javelin.cc", true }, { "javfree.me", true }, { "javhdmovies.com", true }, + { "javierbalvin.com", true }, { "javierburgos.net", true }, { "javierflorescastillero.es", true }, { "javierlorente.es", true }, @@ -37256,6 +37753,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jbfp.dk", true }, { "jbholdings.co.uk", true }, { "jblackweb.com", true }, + { "jblan.org", true }, + { "jbm-management.com", true }, { "jbradaric.me", true }, { "jbridal.com.au", true }, { "jbs-jardins.ch", false }, @@ -37299,7 +37798,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jdjohnsonmedia.com", true }, { "jdjohnsonwaterproofing.com", true }, { "jdm.elk.pl", true }, - { "jdm.pl", true }, { "jdmgarage.com.au", true }, { "jdncr.com", true }, { "jdoi.pw", true }, @@ -37329,8 +37827,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jecjacshop.com", true }, { "jed.site", true }, { "jeda.ch", true }, + { "jedatw.com", true }, { "jedayoshi.com", true }, { "jedcg.com", true }, + { "jedepannetonordi.ch", true }, + { "jedepannetonordi.com", true }, { "jedepannetonordi.fr", true }, { "jedipedia.net", true }, { "jediweb.com.au", true }, @@ -37387,6 +37888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jelmer.co.uk", true }, { "jelmer.uk", true }, { "jelmoli-shop.ch", true }, + { "jem.gov", true }, { "jemangeducheval.com", true }, { "jembatankarir.com", true }, { "jemefaisdesamis.com", true }, @@ -37488,13 +37990,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jesusvasquez.tk", true }, { "jesusvazquez.online", true }, { "jet-stream.fr", true }, + { "jetable.org", true }, { "jetapi.org", true }, { "jetbbs.com", true }, { "jetfirenetworks.com", true }, { "jetflex.de", true }, { "jetkittens.co.uk", true }, { "jetmirshatri.com", false }, - { "jetses.be", true }, { "jetsetboyz.net", true }, { "jetsieswerda.nl", true }, { "jetswhiteout.com", true }, @@ -37512,6 +38014,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jewadvert.ml", true }, { "jeweet.net", true }, { "jewellerymarvels.com", false }, + { "jewelleryrack.com", true }, + { "jewelryweluv.com", true }, { "jewishboyscouts.com", true }, { "jewishquotations.com", true }, { "jexler.net", true }, @@ -37529,6 +38033,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jftw.org", true }, { "jfvaccountants.nl", true }, { "jg-skid.me", true }, + { "jg078.com", true }, { "jgid.de", true }, { "jgke.fi", true }, { "jgoguen.ca", true }, @@ -37584,7 +38089,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jijistatic.com", true }, { "jikegu.com", true }, { "jimbiproducts.com", true }, - { "jimbraaten.com", true }, { "jimbutlerkiaparts.com", true }, { "jimcoggeshall.com", true }, { "jimdorf.com", true }, @@ -37618,7 +38122,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jingyunbank.com", true }, { "jinja.ai", true }, { "jinkuru.net", true }, - { "jinliming.ml", true }, { "jino-jossy.appspot.com", true }, { "jino.gq", true }, { "jinshuju.net", true }, @@ -37666,6 +38169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jkland.com", true }, { "jkng.eu", true }, { "jkrippen.com", true }, + { "jkuu.org", true }, { "jkvov.com", true }, { "jkyuan.tk", true }, { "jl-dns.eu", true }, @@ -37714,6 +38218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jmssg.jp", true }, { "jmstfv.com", true }, { "jmsystems.sk", true }, + { "jmussman.net", true }, { "jmwap.com", true }, { "jmzo.nl", true }, { "jncie.eu", true }, @@ -37727,6 +38232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joanofarcmtcarmel.org", true }, { "joaoaugusto.net", false }, { "joaobautista.com", true }, + { "joaojunior.com", true }, { "joaopenteado.com", true }, { "joaosampaio.com.br", true }, { "job-chocolat.jp", true }, @@ -37787,6 +38293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joecod.es", true }, { "joedavison.me", true }, { "joedeblasio.com", true }, + { "joedinardo.com", true }, { "joedoyle.us", true }, { "joedroll.com", true }, { "joefixit.co", true }, @@ -37810,7 +38317,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joepitt.co.uk", false }, { "joergschneider.com", true }, { "joernwendland.de", true }, - { "joerosca.com", true }, { "joerss.at", true }, { "joeskup.com", true }, { "joesniderman.com", true }, @@ -37822,7 +38328,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joeyfelix.com", true }, { "joeyhoer.com", true }, { "joeysmith.com", true }, - { "joeyvanvenrooij.nl", true }, { "joeyvilaro.com", true }, { "jogi-server.de", true }, { "jogjacar.com", true }, @@ -37849,6 +38354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnball.co", true }, { "johnbeil.com", true }, { "johnberan.com", true }, + { "johnblackbourn.com", true }, { "johnbpodcast.com", true }, { "johncam.tk", true }, { "johncook.ltd.uk", true }, @@ -37877,6 +38383,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnnybet.com", true }, { "johnnybetstaging.com", true }, { "johnnybsecure.com", true }, + { "johnopdenakker.com", true }, { "johnpenny.info", true }, { "johnpenny.uk", true }, { "johnroach.io", true }, @@ -37913,6 +38420,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jollausers.de", true }, { "jolle.io", true }, { "jollygoodspudz.ca", true }, + { "jollyjoker.de", true }, { "jollykidswobbleworld.co.uk", true }, { "jolo.software", true }, { "jolokia.ch", true }, @@ -37937,11 +38445,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonathanha.as", true }, { "jonathanlara.com", true }, { "jonathanmassacand.ch", true }, - { "jonathanphoto.fr", true }, { "jonathanreyes.com", false }, { "jonathansanchez.pro", true }, { "jonathanscott.me", true }, { "jonathanwisdom.com", true }, + { "jonathonkimmel.com", true }, { "jonblankenship.com", true }, { "jondarby.com", true }, { "jondevin.com", true }, @@ -37966,6 +38474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonlu.ca", true }, { "jonnasbeauty.com", true }, { "jonny5.ru", true }, + { "jonnybarnes.uk", true }, { "jonnystoten.com", true }, { "jonoalderson.com", true }, { "jonohewitt.com", true }, @@ -38007,6 +38516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jorgeto.ddns.net", true }, { "jorisdalderup.nl", true }, { "jornalalerta.com.br", true }, + { "jorritstollman.com", true }, { "jorsev.com", true }, { "josc.com.au", true }, { "joscares.com", true }, @@ -38052,6 +38562,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joshua-kuepper.de", true }, { "joshua.bio", true }, { "joshuadiamant.com", true }, + { "joshuajohnson.ca", true }, { "joshuamessick.com", true }, { "joshuameunier.com", true }, { "josien.net", true }, @@ -38097,9 +38608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jpdeharenne.be", false }, { "jpeg.io", true }, { "jpgangbang.com", true }, - { "jphandjob.com", true }, { "jplennard.com", true }, - { "jplesbian.com", true }, { "jpm-inc.jp", true }, { "jpmelos.com", true }, { "jpmelos.com.br", true }, @@ -38173,6 +38682,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jsidefox.de", true }, { "jsjohnsononline.com", true }, { "jsk26.ru", true }, + { "jskarzin.org", true }, { "jskier.com", false }, { "jskoelliken.ch", true }, { "jsme.cz", true }, @@ -38180,6 +38690,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jsnfwlr.io", true }, { "json.download", true }, { "jsonsinc.com", true }, + { "jsproxy.tk", false }, + { "jss.moe", false }, { "jss6868.cc", true }, { "jsteward.moe", true }, { "jstore.ch", true }, @@ -38196,7 +38708,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jts3servermod.com", true }, { "jtslay.com", true }, { "jttech.se", true }, - { "ju.io", true }, { "juabcounty.gov", true }, { "juan23.edu.uy", true }, { "juanfrancisco.tech", true }, @@ -38217,7 +38728,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "judoprodeti.cz", true }, { "judosaintdenis.fr", true }, { "judybai.me", true }, - { "judytka.cz", true }, { "juef.space", true }, { "juegosycodigos.es", true }, { "juegosycodigos.mx", true }, @@ -38226,6 +38736,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juergenklieber.de", true }, { "juergenspecht.com", true }, { "juergenspecht.de", true }, + { "juergmeier.ch", true }, { "juezz.top", true }, { "jugendfeuerwehr-vechta.de", true }, { "jugendhackt.org", true }, @@ -38304,6 +38815,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jumpintogreenerpastures.com", true }, { "jumpman-iphone-design.de", true }, { "jumpnplay.co.uk", true }, + { "jumpnplay.com.au", true }, { "jumprun.com", true }, { "junctioncitywisconsin.gov", true }, { "jundongwu.com", true }, @@ -38329,7 +38841,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juno.co.uk", true }, { "junoaroma.com", true }, { "junodownload.com", true }, - { "junta.pl", true }, { "juozasveza.lt", true }, { "jupiterchiropractic.com", true }, { "juppy.tk", true }, @@ -38347,6 +38858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jurke.com", true }, { "jurojin.net", true }, { "jurriaan.ninja", true }, + { "jusfitness.com.au", true }, { "just-a-clanpage.de", true }, { "just-heberg.fr", true }, { "just-keep-swimming.tk", true }, @@ -38355,6 +38867,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "just-webdesign-berlin.de", true }, { "just2trade.com", true }, { "just3preety.com", true }, + { "just4new.com", true }, { "justacoupleofclarkes.co.uk", true }, { "justanothercompany.name", true }, { "justbelieverecoverypa.com", true }, @@ -38451,7 +38964,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jyrilaitinen.fi", true }, { "jyvaskylantykkimies.fi", true }, { "jz585.com", true }, - { "jzbk.org", true }, + { "jzbk.org", false }, { "jzcapital.co", true }, { "jzgj088.com", true }, { "jzwebdesign.ie", true }, @@ -38464,18 +38977,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k-sails.com", true }, { "k-scr.me", true }, { "k-system.de", true }, - { "k-tube.com", true }, { "k0.gg", true }, { "k10.ag", true }, { "k10.app", true }, { "k10.best", true }, { "k1024.org", true }, + { "k1059.com", true }, { "k123123.com", true }, - { "k1958.com", false }, + { "k1958.com", true }, { "k1chn.com", true }, { "k1yoshi.com", false }, { "k234234.com", true }, { "k258059.net", true }, + { "k288.vip", true }, { "k2mts.org", true }, { "k30365.com", true }, { "k3508.com", true }, @@ -38486,6 +39000,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k4r.ru", true }, { "k51365.com", true }, { "k5197.co", true }, + { "k556.vip", true }, + { "k586.vip", true }, { "k60111.com", true }, { "k60222.com", true }, { "k60333.com", true }, @@ -38496,25 +39012,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k60888.com", true }, { "k60999.com", true }, { "k60d.com", true }, + { "k615.vip", true }, + { "k618.vip", true }, + { "k619.vip", true }, + { "k655.vip", true }, + { "k656.vip", true }, + { "k658.vip", true }, { "k66.ag", true }, + { "k6622.vip", true }, + { "k6626.vip", true }, { "k663.ag", true }, { "k663.vip", true }, + { "k6636.vip", true }, + { "k6638.vip", true }, { "k665.vip", true }, { "k666.ag", true }, { "k666.co", true }, + { "k6661.vip", true }, + { "k6662.vip", true }, + { "k6663.vip", true }, { "k6666.ag", true }, { "k66666.ag", true }, + { "k6667.vip", true }, { "k6668.ag", true }, { "k667.ag", true }, { "k668.ag", true }, { "k668.vip", true }, + { "k6685.vip", true }, + { "k6687.vip", true }, { "k6688.ag", true }, + { "k6688.vip", true }, + { "k6689.vip", true }, { "k669.ag", true }, + { "k6698.vip", true }, + { "k6699.vip", true }, { "k66wang.com", true }, { "k66win.com", true }, { "k6729.co", true }, { "k6729.com", true }, + { "k682.vip", true }, + { "k683.vip", true }, + { "k685.vip", true }, { "k6957.co", true }, + { "k696.vip", true }, + { "k698.vip", true }, + { "k775.vip", true }, + { "k776.vip", true }, + { "k778.vip", true }, + { "k78.vip", true }, + { "k798.vip", true }, { "k7azx.com", true }, { "k8-1.com", true }, { "k8-2.com", true }, @@ -38556,7 +39102,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k80966.com", true }, { "k8097.com", true }, { "k8098.com", true }, - { "k80998.com", true }, { "k8100.com", true }, { "k8102.com", true }, { "k8103.com", true }, @@ -38583,6 +39128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k819.net", true }, { "k82.org", true }, { "k821.net", true }, + { "k822.vip", true }, { "k82222.com", true }, { "k82222.net", true }, { "k82365.com", true }, @@ -38594,6 +39140,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k829.net", true }, { "k82999.com", true }, { "k83.app", true }, + { "k83.vip", true }, { "k830.co", true }, { "k831.co", true }, { "k831.com", true }, @@ -38622,9 +39169,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k852.com", true }, { "k8524.com", true }, { "k8533.com", true }, + { "k855.vip", true }, { "k8550.com", true }, { "k85555.com", true }, { "k8578.com", true }, + { "k858.vip", true }, + { "k859.vip", true }, { "k86.app", true }, { "k860.co", true }, { "k86188.com", true }, @@ -38787,6 +39337,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88210.com", true }, { "k88213.com", true }, { "k88214.com", true }, + { "k88231.com", true }, { "k88233.com", true }, { "k88236.com", true }, { "k88237.com", true }, @@ -38817,6 +39368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88276.com", true }, { "k88277.com", true }, { "k88285.com", true }, + { "k883.vip", true }, { "k88398.com", true }, { "k88399.com", true }, { "k884.co", true }, @@ -38868,8 +39420,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88684.com", true }, { "k88685.com", true }, { "k88686.com", true }, + { "k887.vip", true }, { "k888.ag", true }, { "k88801.com", true }, + { "k8885.vip", true }, + { "k8886.vip", true }, + { "k8887.vip", true }, { "k88870.com", true }, { "k88881.com", true }, { "k88890.com", true }, @@ -38877,6 +39433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k889.co", true }, { "k8892.com", true }, { "k89.app", true }, + { "k89.vip", true }, { "k89188.com", true }, { "k8927.com", true }, { "k89388.com", true }, @@ -38941,7 +39498,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k8vn011.com", true }, { "k8vn9999.com", true }, { "k9297.co", true }, + { "k955.vip", true }, + { "k966.vip", true }, { "k9728.co", true }, + { "k986.vip", true }, + { "k992.vip", true }, + { "k993.vip", true }, + { "k995.vip", true }, + { "k997.vip", true }, { "k9swx.com", true }, { "kaamoscreations.com", true }, { "kaanhaa.com", true }, @@ -38954,7 +39518,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kabachok.tk", true }, { "kabal-invasion.com", true }, { "kabarlinux.id", true }, - { "kabartani.com", true }, { "kabat-fans.cz", true }, { "kabellegger.nl", true }, { "kabeltv.co.nz", true }, @@ -39050,7 +39613,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kakolightingmuseum.or.jp", true }, { "kakoo-media.nl", true }, { "kakoomedia.nl", true }, - { "kaktuskola.se", true }, { "kakuto.me", true }, { "kalakarclub.com", true }, { "kalamos-psychiatrie.be", true }, @@ -39078,6 +39640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kalkulacka-havarijni.cz", true }, { "kall.is", true }, { "kallies-net.de", true }, + { "kallisto.io", true }, { "kalmar.com", true }, { "kalmykphilly.org", true }, { "kaloix.de", true }, @@ -39103,11 +39666,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kamikatse.net", true }, { "kamildrozd.tk", true }, { "kamilmajewski.pl", true }, - { "kaminbau-laub.de", false }, + { "kaminbau-laub.de", true }, { "kamisato-ent.com", true }, { "kamitech.ch", true }, { "kamixa.se", true }, - { "kamp-kisten.nl", true }, { "kamppailusali.fi", true }, { "kampunginggris-ue.com", true }, { "kamranmirhazar.com", true }, @@ -39155,7 +39717,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kansaiyamamoto.jp", true }, { "kant1.tk", true }, { "kantankye.nl", true }, - { "kantanmt.com", true }, { "kantoportraits.com", true }, { "kantorad.io", true }, { "kantorosobisty.pl", true }, @@ -39163,6 +39724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kanyingba.com", true }, { "kanzashi.com", true }, { "kanzlei-gaengler.de", true }, + { "kanzlei-hhh.de", true }, { "kanzlei-oehler.com", true }, { "kanzlei-sixt.de", true }, { "kanzshop.com", true }, @@ -39171,8 +39733,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kap.pe", true }, { "kapelya.gq", true }, { "kapiorr.duckdns.org", true }, + { "kaplanco.com", true }, { "kaplatzis.com", true }, - { "kapler.family", true }, + { "kapler.family", false }, { "kappenstein.org", false }, { "kappershuis-meppel.nl", true }, { "kappharn.com", true }, @@ -39231,6 +39794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karneid.info", true }, { "karo.pc.pl", true }, { "karodos.pl", true }, + { "karoke.in", true }, { "karolak.fr", true }, { "karopapier.de", true }, { "karopc.com.pl", true }, @@ -39256,6 +39820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karuneshjohri.com", true }, { "karupp-did.net", true }, { "kas.ie", true }, + { "kasasaprotect.com", true }, { "kaseban.com", true }, { "kasei.im", true }, { "kashadriskill.com", true }, @@ -39299,6 +39864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katalogkapsli.pl", true }, { "katapult.es", true }, { "katarsisuib.no", true }, + { "katazuketai.net", true }, { "katcleaning.com.au", false }, { "katcr.co", true }, { "katedra.de", true }, @@ -39311,7 +39877,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katex.org", true }, { "kateysagal.tk", true }, { "kathardt.de", true }, - { "kathegiraldo.com", true }, { "katherineswynford.tk", true }, { "kathleendeisher.com", true }, { "kathy.best", true }, @@ -39380,6 +39945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kazumi.ro", true }, { "kazvel.com", true }, { "kazy111.info", true }, + { "kb01.net", true }, { "kb0101.com", true }, { "kb0202.com", true }, { "kb021.com", true }, @@ -39453,6 +40019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kb5757.com", true }, { "kb5959.com", true }, { "kb5pt.com", true }, + { "kb6.app", true }, { "kb6060.com", true }, { "kb6161.com", true }, { "kb6363.com", true }, @@ -39682,7 +40249,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keb.net.au", true }, { "kebabbesteld.nl", true }, { "kebabbruce.com", false }, - { "kebidanan.id", true }, { "kecht.at", true }, { "kedarastudios.com", true }, { "kedibizworx.com", true }, @@ -39700,6 +40266,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keepa.com", true }, { "keepdecor.com", true }, { "keeperapp.com", true }, + { "keeperklan.com", false }, { "keepersecurity.com", true }, { "keepingtheplot.co.uk", true }, { "keepiteasy.eu", true }, @@ -39724,6 +40291,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keinanung.nl", false }, { "keinefilterblase.de", true }, { "keisaku.org", true }, + { "keisepulveda.com", true }, { "keishiando.com", true }, { "keithlomax.com", true }, { "keithws.net", true }, @@ -39733,7 +40301,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kekz.org", true }, { "kela.jp", true }, { "kelantanmudah.com", false }, - { "kelapagading.co.id", true }, { "keldan.fo", true }, { "kelderwijnen.nl", true }, { "kelgtermans-usedcars.be", false }, @@ -39830,17 +40397,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kersmexico.com", true }, { "kerstkaart.nl", true }, { "kersvers.agency", true }, + { "keru.su", true }, { "kerus.net", true }, { "kerzyte.net", true }, { "kescher.site", true }, { "kesef.org.il", true }, { "keshausconsulting.com", true }, + { "keskeces.com", true }, { "kessawear.com", true }, { "kessel-runners.com", true }, { "kesslerwine.com", true }, { "kesteren.org", true }, { "ketamine.co.uk", true }, - { "ketaminecareclinic.com", true }, { "ketoconazole.gq", true }, { "ketosecology.co.uk", true }, { "ketotadka.com", true }, @@ -39881,6 +40449,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kevinratcliff.com", true }, { "kevinrousseeuw.be", true }, { "kevinvanderperren.tk", true }, + { "kevinwstanton.com", true }, { "kevyn.lu", true }, { "kexino.com", true }, { "kexueboy.com", true }, @@ -39934,6 +40503,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf068.com", true }, { "kf0808.com", true }, { "kf086.com", true }, + { "kf0909g.com", true }, { "kf098.com", true }, { "kf099.com", true }, { "kf0q.com", true }, @@ -39970,6 +40540,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf5201314.com", true }, { "kf5252.com", true }, { "kf5656.com", true }, + { "kf5656g.com", true }, { "kf5858.com", true }, { "kf5858g.com", true }, { "kf588.com", true }, @@ -40144,6 +40715,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kfv-kiel.de", false }, { "kfz-hantschel.de", true }, { "kfz-service-wachtmann.de", true }, + { "kfz.nl", true }, + { "kfzjeugd.nl", true }, { "kg7.pl", true }, { "kgcarpetandupholsterycleaning.com", true }, { "kgm-irm.be", true }, @@ -40159,9 +40732,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "khakassia.gq", true }, { "khakassia.tk", true }, { "khaledgarbaya.net", false }, - { "khamphafood.com", true }, - { "khaneh-memar.com", true }, { "khanovaskola.cz", true }, + { "khaotipthai.se", true }, { "khas.co.uk", true }, { "khasiatmanfaat.com", true }, { "khedmatazma.com", true }, @@ -40188,7 +40760,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kiadoapartman.hu", true }, { "kiahalchemy.com", true }, { "kiahoriane.com", true }, - { "kiano.net", true }, + { "kiano.net", false }, { "kiapps.ovh", true }, { "kiarayoga.com", true }, { "kibea.net", true }, @@ -40229,8 +40801,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kiekin.org", true }, { "kiekko.pro", true }, { "kiel-kind.de", true }, + { "kielux.de", true }, { "kielwi.gov", true }, { "kienlen.org", true }, + { "kienthucnoithat.vn", true }, { "kieran.de", true }, { "kieran.ie", true }, { "kieranjones.uk", true }, @@ -40285,8 +40859,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kimmel.com", false }, { "kimmel.in", true }, { "kimochi.info", true }, + { "kimono-furuya.com", true }, + { "kimono-hishiya.jp", true }, + { "kimono-yamaguchiya.com", true }, { "kimoota.net", false }, { "kimotodental.com", true }, + { "kimphattai.vn", true }, { "kimsnagelstudio.nl", true }, { "kimtran.kim", true }, { "kimtstore.com", true }, @@ -40312,13 +40890,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinepolis-studio.be", true }, { "kinepolis-studio.ga", true }, { "kinerd.me", true }, - { "kinesiomed-cryosauna.gr", true }, { "kinetiq.com", true }, { "kineto.space", true }, { "kinfolkcoffee.com", true }, { "king-of-the-castles.com", true }, { "kingant.net", true }, { "kinganywhere.eu", true }, + { "kingcannabisshop.com", true }, { "kingclass.cn", true }, { "kingdominnergy.com", true }, { "kingdoms.gg", true }, @@ -40416,6 +40994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirkforcongress.com", true }, { "kirkforillinois.com", true }, { "kirkify.com", true }, + { "kirkintillochbc.co.uk", true }, { "kirklandtriallawyer.com", true }, { "kirkovsky.com", true }, { "kirkwood-smith.com", true }, @@ -40478,6 +41057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kitpartners.com", true }, { "kitsapsolutions.com", true }, { "kitseliit.ee", true }, + { "kitsuna.eu", true }, { "kittmedia.com", true }, { "kittpress.com", true }, { "kittyhacker101.tk", true }, @@ -40525,6 +41105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kk9297.co", true }, { "kk9728.co", true }, { "kkcinemas.in", true }, + { "kkcsc.co.jp", true }, { "kki.org", true }, { "kkk0011.com", false }, { "kkk101.com", false }, @@ -40575,7 +41156,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klebeband.eu", true }, { "kleberstoff.xyz", true }, { "klebetape.de", true }, - { "kleidermarkt-vintage.de", true }, { "kleidertauschpartys.de", true }, { "kleim.fr", true }, { "kleinblogje.nl", false }, @@ -40626,6 +41206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klitmoeller.dk", true }, { "kliu.io", true }, { "klm-huisjes.nl", true }, + { "klmgewinnspiel.de", true }, { "klmhouses.com", true }, { "klocast.com", true }, { "klocker-ausserlechner.com", true }, @@ -40649,6 +41230,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klva.cz", true }, { "kmashworth.co.uk", true }, { "kmkz.jp", true }, + { "kms60.fr", true }, { "kmucsu.com", true }, { "kn007.net", true }, { "kn40la.com", true }, @@ -40671,7 +41253,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knep.me", true }, { "kneppe.me", true }, { "knetterbak.nl", true }, - { "kngk-azs.ru", true }, { "kngk-group.ru", true }, { "kngk-transavto.ru", true }, { "kngk.org", true }, @@ -40680,6 +41261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knightsblog.de", true }, { "knightsbridge.net", true }, { "knightsbridgewine.com", true }, + { "knightsofcolumbus867.com", true }, { "knightsweep.com", true }, { "knihovnajablonne.cz", true }, { "knip.ch", true }, @@ -40713,6 +41295,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koalas.org", true }, { "koba.jp", true }, { "kobar.id", true }, + { "kobejet.com", true }, { "kobezda.net", true }, { "kobieta.guru", true }, { "kobofarm.com", true }, @@ -40749,9 +41332,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koehn.com", true }, { "koelbli.ch", true }, { "koeldezomerdoor.nl", true }, + { "koelingmonitor.com", true }, { "koelnmafia.de", true }, { "koenigsbrunner-tafel.de", true }, { "koenleemans.nl", true }, + { "koenmartens.nl", true }, { "koenrh.com", true }, { "koenrh.net", true }, { "koenrh.nl", true }, @@ -40774,13 +41359,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kogi.fr", true }, { "kogro.de", true }, { "kogudesi.com", true }, - { "kohlchan.net", true }, { "kohlistkool.tk", true }, { "koho.fi", true }, { "kohoutsautomotive.com", true }, { "kohparadise.com", true }, { "kohsandra.com", false }, - { "kohu.nz", true }, { "koi-lexikon.de", true }, { "koicenter-thuine.de", true }, { "koifish.org", true }, @@ -40799,6 +41382,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kokomo.xyz", true }, { "kokomu.com", true }, { "kokona.ch", true }, + { "kokoro-singsong.com", true }, { "kokosnusswasser.de", true }, { "kokumoto.com", true }, { "koladeogunleye.com", true }, @@ -40935,6 +41519,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "korfbalinformatie.nl", true }, { "korinar.com", true }, { "koriyoukai.net", true }, + { "korkortonline.se", true }, { "kornrunner.net", true }, { "korob-ok.com.ua", true }, { "korobkovsky.ru", false }, @@ -40973,7 +41558,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kotobox.net", true }, { "kotois.com", true }, { "kotomei.moe", true }, - { "kotonoha.cafe", true }, { "kotonozaka.xyz", true }, { "kotori.love", true }, { "kotorimusic.ga", true }, @@ -41039,6 +41623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kram.nz", true }, { "krambeutel.de", true }, { "kramsj.uk", true }, + { "kranbearys.com", true }, { "krang.org.uk", true }, { "kranjnakolo.ml", true }, { "krankenpflege-haushaltshilfe.de", true }, @@ -41052,6 +41637,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kravmagaangers.fr", true }, { "kraynik.com", true }, { "krayx.com", true }, + { "krazy.net.au", true }, { "krazykastles.co.uk", true }, { "krazykoolkastles.com", true }, { "krazyphotobooths.co.uk", true }, @@ -41073,6 +41659,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krehl.io", true }, { "kremalicious.com", true }, { "kresimir-blazevic.tk", true }, + { "krestanskydarek.cz", true }, { "kretschmann.consulting", true }, { "kreuzpfadfinder.de", true }, { "kreuzwortraetsellosungen.com", true }, @@ -41250,7 +41837,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks099.com", true }, { "ks0990.com", true }, { "ks0996.com", true }, + { "ks1.vip", true }, { "ks10.ag", true }, + { "ks10.cc", true }, { "ks10.vip", true }, { "ks1010.com", true }, { "ks105.com", true }, @@ -41276,6 +41865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks1909.com", true }, { "ks191.com", true }, { "ks196.com", true }, + { "ks2.vip", true }, { "ks20.vip", true }, { "ks200.vip", true }, { "ks2000.vip", true }, @@ -41353,6 +41943,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks4040.com", true }, { "ks410.com", true }, { "ks4242.com", true }, + { "ks5.vip", true }, { "ks50.vip", true }, { "ks5000.com", true }, { "ks5014.com", true }, @@ -41389,6 +41980,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks596.com", true }, { "ks597.com", true }, { "ks6.app", true }, + { "ks6.vip", true }, { "ks60.vip", true }, { "ks600.com", true }, { "ks6008.com", true }, @@ -41520,6 +42112,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks70.vip", true }, { "ks7272.com", true }, { "ks7373.com", true }, + { "ks78.vip", true }, { "ks79.app", true }, { "ks8.ag", true }, { "ks8.com", true }, @@ -41536,6 +42129,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8128.com", true }, { "ks8129.com", true }, { "ks8135.com", true }, + { "ks814.com", true }, { "ks8152.com", true }, { "ks8176.com", true }, { "ks8177.com", true }, @@ -41551,10 +42145,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8281.com", true }, { "ks8383.com", true }, { "ks85.net", true }, + { "ks85.vip", true }, { "ks86.cc", true }, { "ks86.net", true }, + { "ks86.vip", true }, { "ks8600.com", true }, { "ks87.cc", true }, + { "ks87.vip", true }, { "ks8787.com", true }, { "ks88.ag", true }, { "ks88.best", true }, @@ -41588,6 +42185,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8865.com", true }, { "ks8869.com", true }, { "ks888.ag", true }, + { "ks888.app", true }, { "ks888.la", true }, { "ks8881.com", true }, { "ks8882.com", true }, @@ -41603,6 +42201,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8915.com", true }, { "ks8989.com", true }, { "ks9.app", true }, + { "ks9.vip", true }, { "ks90.vip", true }, { "ks901.com", true }, { "ks902.com", true }, @@ -41620,7 +42219,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks958.com", true }, { "ks96.cc", true }, { "ks960.com", true }, - { "ks9696.com", true }, { "ks97.net", true }, { "ks9797.com", true }, { "ks98.cc", true }, @@ -41628,6 +42226,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks99.app", true }, { "ks996.com", true }, { "ks996.net", true }, + { "ks999.app", true }, { "ksbet.ag", true }, { "ksbet168.com", true }, { "kscarlett.com", true }, @@ -41671,7 +42270,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ku-7.club", true }, { "ku.io", false }, { "kuadey.com", true }, - { "kuaikan1.com", true }, { "kuaimen.bid", true }, { "kuaitiyu.org", true }, { "kuaiyaojing.com", true }, @@ -41681,6 +42279,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kualo.in", true }, { "kuaza.com", true }, { "kub.hr", true }, + { "kuba-orlik.name", true }, { "kubabrussel.be", true }, { "kubanitoscali.com", true }, { "kubeico.com", true }, @@ -41721,10 +42320,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kulinaristi.fi", true }, { "kulivps.com", true }, { "kulopo.com", true }, + { "kulp.is", true }, { "kulpakko.com", true }, { "kulthist.tk", true }, { "kultmobil.se", true }, { "kultsar.com", true }, + { "kultur1.se", true }, { "kulturmel.ch", true }, { "kuma.es", true }, { "kumachan.biz", true }, @@ -41737,7 +42338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kundenerreichen.com", true }, { "kundenerreichen.de", true }, { "kundo.se", true }, - { "kungerkueken.de", true }, { "kunow.ml", true }, { "kunra.de", true }, { "kunstdrucke-textildruck.de", true }, @@ -41773,6 +42373,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kurhotel-am-reischberg.de", true }, { "kurido-anime.tk", true }, { "kurierwilenski.lt", true }, + { "kurition.eu", true }, { "kurniadwin.to", true }, { "kurofuku.me", true }, { "kuroha.co.uk", true }, @@ -41795,11 +42396,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kusasa.biz", true }, { "kuscheln.com", true }, { "kuschku.de", true }, - { "kuscu.co", true }, + { "kuscu.de", true }, { "kusdaryanto.web.id", true }, { "kushtikidsparties.co.uk", true }, { "kusochi.eu", true }, { "kustod.io", true }, + { "kutamo.com", true }, + { "kutekeiki.com", true }, { "kutinsoft.com", true }, { "kutip.id", true }, { "kutny.cz", true }, @@ -41823,6 +42426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kvetinymilt.cz", true }, { "kvetinyumarkety.cz", true }, { "kvhile.com", true }, + { "kvhv-brussel.be", true }, { "kvilt.dk", true }, { "kvnsport.ru", true }, { "kvpc.com.au", true }, @@ -41850,11 +42454,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kyledrake.net", true }, { "kylegutschow.com", true }, { "kylejohnson.io", true }, + { "kylepet.co", true }, { "kylianvermeulen.com", true }, { "kylianvermeulen.nl", true }, { "kylie-pomada.tk", true }, { "kylinj.com", false }, - { "kylling.io", true }, { "kynaston.org.uk", true }, { "kynastonwedding.co.uk", true }, { "kyobostory-events.com", true }, @@ -41889,14 +42493,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "l18.io", true }, { "l214.com", true }, { "l2guru.ru", true }, - { "l2l.vn", true }, { "l3.ee", true }, { "l30365.com", true }, { "l33te.net", true }, { "l36533.com", true }, { "l36594.com", true }, { "l3j.net", true }, - { "l3l365.com", false }, + { "l3l365.com", true }, { "l4n-clan.de", true }, { "l51365.com", true }, { "l5197.co", true }, @@ -41965,7 +42568,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "labtest.ltd", true }, { "labwater.com", true }, { "labworks.org", true }, - { "laby.life", true }, { "laby.me", true }, { "lacaey.se", true }, { "lacantine.xyz", true }, @@ -41993,10 +42595,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lacledeslan.org", true }, { "lacledor.ch", false }, { "laclefdor.ch", false }, + { "lacoast.gov", true }, { "lacochinacounselor.com", true }, { "lacocina.nl", true }, { "lacocinadelila.com", true }, { "lacoquette.gr", true }, + { "lacoste.net", true }, { "lacyc3.eu", true }, { "lada-event.com.ua", true }, { "lada-granta.tk", true }, @@ -42048,6 +42652,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laglab.org", false }, { "lagodny.eu", true }, { "lagout.org", true }, + { "lagracia.com.br", true }, { "lagrange.cloud", true }, { "lagriffeduservice.fr", true }, { "lagsoftware.com", true }, @@ -42057,7 +42662,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laharilais.fr", true }, { "lahipotesisgaia.com", true }, { "lahnau-akustik.de", true }, - { "lahora.com.ec", true }, { "lai.is", true }, { "lai.zone", true }, { "laibcoms.com", true }, @@ -42065,6 +42669,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lain.at", true }, { "laindonleisure.co.uk", true }, { "laissezparler.fr", true }, + { "laizhongliuxue.com", true }, + { "lajessica.com", true }, { "lajijonencadebarbera.com", true }, { "lajkatheme.com", true }, { "lak-berlin.de", true }, @@ -42134,6 +42740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lamp24.se", true }, { "lampade.it", true }, { "lampara.es", true }, + { "lampco.com", true }, { "lampegiganten.dk", true }, { "lampegiganten.no", true }, { "lampen24.be", true }, @@ -42146,6 +42753,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lampsh.ml", true }, { "lampy.pl", true }, { "lamunyonfoundationrepair.com", true }, + { "lan-divy.com", true }, + { "lan-divy.fr", true }, { "lan.biz.tr", true }, { "lan4.life", true }, { "lana.swedbank.se", true }, @@ -42164,9 +42773,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "landassessmentservices.com", true }, { "landbetweenthelakes.us", true }, { "landchecker.com.au", true }, + { "landdevcorp.com.au", true }, { "landegge.nl", true }, { "landell.ml", true }, - { "landflair-magazin.de", false }, + { "landflair-magazin.de", true }, { "landhaus-havelse.de", true }, { "landinfo.no", true }, { "landingear.com", true }, @@ -42174,7 +42784,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "landofelves.net", false }, { "landoncreekapartments.com", true }, { "landoverhillsmd.gov", true }, - { "landsbankinn.com", true }, { "landsbref.is", true }, { "landscape-photography.org", true }, { "landscapelightingagoura.com", true }, @@ -42205,7 +42814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "langduytinh.com", true }, { "langgasse-baar.ch", true }, { "langhun.me", true }, - { "langjp.com", true }, + { "langjp.com", false }, { "langkahteduh.com", true }, { "langkawihomestay.net", true }, { "langkawitrip.com", true }, @@ -42230,7 +42839,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lanroamer.de", true }, { "lansechensilu.com", true }, { "lanselot.com", true }, - { "lansewu.com", true }, { "lansoftware.eu", true }, { "lanternalauth.com", true }, { "lanternhealth.org", true }, @@ -42282,15 +42890,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laranjada.org", true }, { "larasm.tk", true }, { "laraveldirectory.com", true }, - { "laravelsaas.com", true }, { "larawoodarts.com", true }, { "larbertbaptist.org", true }, { "larch.me", true }, { "lareclame.fr", true }, + { "lareginetta.com", true }, { "larepublicacultural.es", true }, { "lares.com", true }, { "laresistencia.xyz", false }, { "larete.ch", true }, + { "largeandhighquality.com", true }, { "largescaleforums.com", true }, { "largeviewer.com", true }, { "lariposte.org", true }, @@ -42311,6 +42920,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "larsbauer.xyz", true }, { "larsklene.nl", true }, { "larsklint.com", true }, + { "larsmerke.de", true }, { "larsnittve.tk", true }, { "larsson-ornmark.se", true }, { "lartduportrait.fr", true }, @@ -42460,6 +43070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "law.co.il", true }, { "law22.com", true }, { "lawabidingcactus.com", true }, + { "laways.cl", true }, { "lawda.ml", true }, { "lawlessenglish.com", true }, { "lawlessfrench.com", true }, @@ -42467,6 +43078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lawlessspanish.com", true }, { "lawn-seeds.com", true }, { "lawnuk.com", true }, + { "lawportal.com.ua", false }, { "lawrence-institute.com", true }, { "lawrenceberg.nl", true }, { "lawrencecountyboe-ohio.gov", true }, @@ -42508,7 +43120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lbda.net", true }, { "lbgconsultores.com", true }, { "lbihrhelpdesk.com", true }, - { "lbls.me", true }, + { "lbls.me", false }, { "lbmblaasmuziek.nl", true }, { "lbphacker.pw", true }, { "lbrlh.tk", true }, @@ -42996,7 +43608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leadgenie.me", true }, { "leadinfo.com", true }, { "leadpagebuilders.com", true }, - { "leadplan.ru", true }, + { "leadplan.ru", false }, { "leadquest.nl", true }, { "leaf-consulting.de", true }, { "leafandseed.co.uk", true }, @@ -43107,6 +43719,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ledlampor365.se", true }, { "ledlight.com", true }, { "ledlights.ca", true }, + { "lednavi.de", true }, { "ledspadova.eu", true }, { "ledspalluto.de", true }, { "ledwereld.nl", true }, @@ -43164,12 +43777,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legalcontrol.info", true }, { "legaleus.co.uk", true }, { "legalforms.ng", true }, - { "legalinmotion.es", true }, { "legalplace.fr", true }, { "legalrobot-uat.com", true }, { "legalrobot.com", true }, { "legalsearch.nl", true }, { "legalsoftware.net", true }, + { "legalsteroid.co", true }, { "legaltechnology.pro", true }, { "legaltip.eu", true }, { "legatofmrc.fr", true }, @@ -43179,6 +43792,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legendesdechine.ch", false }, { "legendofkrystal.com", true }, { "legends-game.ru", false }, + { "legendwiki.com", true }, { "legible.es", true }, { "legilimens.de", true }, { "legion.ge", true }, @@ -43196,6 +43810,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lehighmathcircle.org", true }, { "lehighvalleypeds.com", true }, { "lehmitz-weinstuben.de", true }, + { "lehnen.xyz", true }, { "lehouerou.net", true }, { "lehti-tarjous.net", true }, { "leibniz-gymnasium-altdorf.de", true }, @@ -43269,11 +43884,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leoandpeto.com", true }, { "leochedibracchio.com", true }, { "leodraxler.at", true }, + { "leoji.codes", false }, { "leola.cz", true }, { "leola.sk", true }, { "leolemos.com.br", true }, { "leominstercu.com", false }, - { "leomwilson.com", true }, + { "leomwilson.com", false }, { "leon-tec.co.jp", true }, { "leon-tech.com", true }, { "leon.wtf", true }, @@ -43289,6 +43905,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leontiekoetter.de", true }, { "leontyev.tk", true }, { "leonvermunt.nl", true }, + { "leonyork.com", true }, + { "leopoldina.net", false }, { "leoservicos.etc.br", true }, { "leoservicosetc.com", true }, { "leoservicosetc.com.br", true }, @@ -43338,6 +43956,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesbi-porno-video.ru", true }, { "lesbianlovers.tk", true }, { "lesbiansslaves.com", true }, + { "lesblogueuses.fr", true }, { "lesbofight.com", true }, { "lesbrillantsdaristide.com", true }, { "lescomptoirsdepierrot.com", true }, @@ -43346,6 +43965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesdouceursdeliyana.com", true }, { "leseditionsbraquage.com", true }, { "lesfilmsavivre.com", true }, + { "lesgarconsenligne.com", true }, { "lesgarianes.com", true }, { "lesgoodnews.fr", true }, { "lesh.eu", true }, @@ -43401,6 +44021,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "letsgame.nl", true }, { "letsgetchecked.com", true }, { "letsgetintouch.com", true }, + { "letsgo.icu", true }, { "letsgowhilewereyoung.com", true }, { "letsnet.org", true }, { "letson.me", true }, @@ -43413,9 +44034,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "letterdance.de", true }, { "letteringinstitute.com", true }, { "lettersblogatory.com", true }, - { "lettings101.org", true }, { "lettori.club", true }, { "lettres-motivation.net", true }, + { "letzchange.org", false }, { "leu.to", false }, { "leuchtmann.ch", true }, { "leuenhagen.com", true }, @@ -43451,6 +44072,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "levindesalpes.fr", false }, { "levineteamestates.com", true }, { "levinus.de", true }, + { "leviobery.com", true }, { "levis.fun", true }, { "leviscop.com", true }, { "leviscop.de", true }, @@ -43477,6 +44099,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lexpierce.social", true }, { "lexway.pk", true }, { "leybelsgarden.cf", true }, + { "leybold.co.id", true }, { "leymaritima.com", true }, { "lezdomsm.com", true }, { "lfashion.eu", true }, @@ -43517,6 +44140,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lhsj68.com", true }, { "lhsj78.com", true }, { "li-ke.co.jp", true }, + { "li-n.net", true }, { "li.gz.cn", true }, { "li.search.yahoo.com", false }, { "li680.com", true }, @@ -43622,6 +44246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lichtletters-huren.nl", true }, { "lichtmetzger.de", false }, { "lichtspot.de", true }, + { "lichtsturm.net", true }, { "lichttechnik-tumler.com", true }, { "lichttraeumer.de", true }, { "lickingcounty.gov", true }, @@ -43656,7 +44281,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lidtkemotors.com", true }, { "liduan.com", false }, { "liduan.net", false }, - { "lie.as", true }, + { "lie.as", false }, { "liebel.org", true }, { "lieberwirth.biz", true }, { "lied8.eu", true }, @@ -43741,6 +44366,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lightning-wallet.com", true }, { "lightning.community", true }, { "lightning.engineering", true }, + { "lightningseed.net", true }, { "lightningwirelabs.com", true }, { "lightography.com", true }, { "lights.co.uk", true }, @@ -43795,6 +44421,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lilai634.com", true }, { "lilai6616.com", true }, { "lilai6677.com", true }, + { "lilai6688.com", true }, { "lilai777.com", true }, { "lilai838.com", true }, { "lilai8866.com", true }, @@ -43811,6 +44438,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lilliputpreschool.co.nz", true }, { "lilomatrixcorner.fr", true }, { "lilosaludable.com", true }, + { "lilpwny.com", true }, { "lily-bearing.com", true }, { "lily-inn.com", true }, { "lilyfarmfreshskincare.com", true }, @@ -43825,8 +44453,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "limbaido.tk", true }, { "limberg.me", true }, { "limbo.services", true }, - { "limeres.com", true }, - { "limereslaw.com", true }, + { "limecho.net", true }, + { "limehost.com", true }, { "limit.xyz", true }, { "limitededitioncomputers.com", true }, { "limitededitionsolutions.com", true }, @@ -43893,9 +44521,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linguatrip.com", true }, { "linherest.tk", true }, { "linhua.org", true }, + { "link-man.net", true }, { "link-net.ga", true }, { "link-sanitizer.com", true }, - { "link.ba", true }, + { "link.ba", false }, { "link2serve.com", true }, { "link9.net", true }, { "linkages.org", true }, @@ -43921,6 +44550,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linkthisstatus.ml", true }, { "linktio.com", true }, { "linkuva.tk", true }, + { "linkwater.org", true }, { "linkwheel.tk", true }, { "linky.tk", true }, { "linkycat.com", true }, @@ -43978,7 +44608,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linx.net", true }, { "linxmind.eu", true }, { "linzgau.de", true }, - { "linzyjx.com", true }, { "lion7.de", true }, { "lionhosting.nl", true }, { "lionlyrics.com", true }, @@ -44024,7 +44653,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lislan.org.uk", true }, { "lisowski-development.com", false }, { "lisowski-photography.com", true }, - { "lissabon.guide", true }, + { "lissabon.guide", false }, { "lissajouss.tk", true }, { "lissauer.com", true }, { "list-gymnasium.de", true }, @@ -44101,7 +44730,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litvideoserver.de", true }, { "litz.ca", true }, { "litzenberger.ca", true }, - { "liu0hy.cn", true }, { "liubliu.co.uk", true }, { "liud.im", true }, { "liudon.org", true }, @@ -44112,8 +44740,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liuliuya.com.tw", true }, { "liulo.cf", true }, { "liuqiao.best", true }, + { "liuqiao.cf", true }, { "liuqiao.eu.org", true }, { "liuqiao.ga", true }, + { "liuqiao.ml", true }, + { "liuqiao.tk", true }, + { "liuqiaolovecaonali.ml", true }, { "liushuyu.tk", true }, { "liv3d.stream", true }, { "livada.fr", true }, @@ -44162,6 +44794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liveperformersmeeting.net", true }, { "liveregistratie.nl", true }, { "liverider.co.jp", true }, + { "liverobot8.com", true }, { "liverobot888.com", true }, { "livesheep.com", true }, { "liveslides.com", true }, @@ -44180,7 +44813,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "livingafrugallife.com", true }, { "livingforreal.com", true }, { "livinginhimalone.com", true }, - { "livingkingsinc.net", true }, { "livingspace.co.nz", true }, { "livingworduk.org", true }, { "livive.com", true }, @@ -44228,6 +44860,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ll8807.com", true }, { "ll8819.com", true }, { "ll9297.co", true }, + { "ll9721.com", false }, { "ll9728.co", true }, { "llamasweet.tech", true }, { "llandudnochristmasfayre.co.uk", true }, @@ -44265,13 +44898,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lmrcouncil.gov", true }, { "lms-luch.ru", true }, { "lmsptfy.com", true }, + { "lmsuitespagna.it", true }, { "lmtls.me", true }, { "lmtm.eu", true }, { "lmtravis.com", true }, + { "lmvsci.gov", true }, { "ln.io", true }, { "lndrive.space", true }, { "lng-17.org", true }, - { "lnhequipmentltd.com", true }, { "lnhydy.cn", true }, { "lnoldan.com", true }, { "lnrsoft.ddns.net", true }, @@ -44279,6 +44913,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lnyltx.cn", true }, { "load-ev.de", true }, { "load.pm", false }, + { "loaded.se", true }, { "loader.to", true }, { "loader.us.com", true }, { "loadlow.me", true }, @@ -44336,7 +44971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "localseorepair.rocks", true }, { "localseorepair.services", true }, { "localseorepair.world", true }, - { "localsource.eu", true }, { "localspot.pl", true }, { "localtownhouses.ga", true }, { "locapos.com", true }, @@ -44360,6 +44994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locatorplus.gov", true }, { "locauxrama.fr", true }, { "locchat.com", true }, + { "lock-expert.de", true }, { "lock.me", true }, { "lock23.ca", true }, { "lockaby.org", true }, @@ -44404,11 +45039,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locksmithmesquitetexas.com", true }, { "locksmithmesquitetx.com", true }, { "locksmithmissouricity.com", true }, + { "locksmithopen.com", true }, { "locksmithresidentialspringtx.com", true }, { "locksmithsammamishwa.com", true }, { "locksmithsbluff.com", true }, { "locksmithsbuda.com", true }, - { "locksmithscottsdaleaz.com", true }, { "locksmithseattleco.com", true }, { "locksmithservice-cypress.com", true }, { "locksmithservice-humble.com", true }, @@ -44568,7 +45203,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "londonkeyholdingcompany.co.uk", true }, { "londonlegaltranslation.ae", true }, { "londonpropertymatch.com", true }, - { "londonseedcentre.co.uk", true }, { "londontaxipr.com", true }, { "lone-gunman.be", true }, { "lonelyhaoss.com", true }, @@ -44581,6 +45215,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "long-6.com", true }, { "long-8.com", true }, { "long-9.com", true }, + { "long-journey.com", true }, { "long008.com", true }, { "long0310.com", true }, { "long0311.com", true }, @@ -44719,6 +45354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lookup-dns.net", true }, { "loonbedrijfdenboer.nl", true }, { "looneymooney.com", true }, + { "looneytunesdashgame.com", true }, { "loony.info", false }, { "loonylatke.com", true }, { "loopback.kr", true }, @@ -44737,6 +45373,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lord.sh", true }, { "lordjevington.co.uk", true }, { "lordofthebrick.com", false }, + { "lordusa.com", true }, { "lore-seeker.cards", true }, { "lore.azurewebsites.net", true }, { "loremipsum.info", true }, @@ -44767,6 +45404,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lostinlegends.com", true }, { "lostinweb.eu", true }, { "lostkeys.co.uk", true }, + { "lostproperty.org", true }, { "lostsandal.com", true }, { "lostsandal.io", true }, { "lostserver.com", true }, @@ -44842,6 +45480,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovelive.us", true }, { "lovelivewiki.com", true }, { "lovelo.store", true }, + { "lovelocalbmore.com", true }, { "lovelovenavi.jp", true }, { "loveluna.com", true }, { "lovelytimes.net", true }, @@ -44860,6 +45499,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovesmagical.com", false }, { "lovesove.com", true }, { "lovessentials.com", true }, + { "lovestar.wang", true }, { "lovesupremefestival.com", true }, { "loveweddingphotosandfilm.co.uk", true }, { "loveysa.ch", false }, @@ -44871,7 +45511,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovizaim.ru", true }, { "low-diets.com", true }, { "lowbidders.com", true }, - { "lowcost.to", true }, { "lowcostvehicleinsurance.com", true }, { "lowcostwire.com.au", true }, { "lowend.cn", true }, @@ -44938,6 +45577,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ltls.org", true }, { "ltmw.xyz", true }, { "ltn-tom-morel.fr", true }, + { "ltonlinestore.in", true }, { "ltprtz.co.uk", true }, { "ltransferts.com", true }, { "lts-tec.de", true }, @@ -44958,6 +45598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lucafrancesca.me", true }, { "lucakrebs.de", true }, { "lucarautti.com", true }, + { "lucasartsclassics.com", true }, { "lucasbergen.ca", true }, { "lucascantor.com", true }, { "lucascodes.com", true }, @@ -45082,6 +45723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lumen.sh", true }, { "lumenapp.com", true }, { "lumenbrowser.com", true }, + { "lumentell.us", true }, { "lumer.tech", true }, { "lumi.pw", true }, { "lumierewithinspirato.com", true }, @@ -45138,6 +45780,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lupinenorthamerica.com", true }, { "lushan.me", true }, { "lushnikov-alex.ru", true }, + { "lusis.fr", true }, { "lusitom.com", true }, { "luso-livros.net", true }, { "lust.works", true }, @@ -45267,10 +45910,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m-beshr.tk", true }, { "m-chemical.com.hk", true }, { "m-epigrafes.gr", true }, - { "m-foda.com", true }, { "m-gaming.tk", true }, { "m-generator.com", true }, { "m-gh.info", true }, + { "m-h-b.fr", true }, { "m-hydravlika.com.ua", true }, { "m-idea.jp", true }, { "m-kleinert.de", true }, @@ -45319,6 +45962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m82365.com", true }, { "m8593.com", false }, { "m9297.co", true }, + { "m9721.com", false }, { "m9728.co", true }, { "ma-eir.nl", true }, { "ma-maison-container.fr", true }, @@ -45327,7 +45971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ma2t.com", true }, { "maaret.de", true }, { "maartenderaedemaeker.be", true }, - { "maartenterpstra.xyz", true }, { "maartenvandekamp.nl", true }, { "maatwerkopruimcoaching.nl", true }, { "maatwerkzorgcoaching.nl", true }, @@ -45421,10 +46064,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "madeinstudio3.com", true }, { "madeintucson.org", true }, { "madeira.gov.pt", true }, - { "madeitwor.se", true }, { "madeloc.com", true }, { "mademoe.com", true }, { "mademoiselledemargaux.com", true }, + { "maden.com", true }, { "mader.jp", true }, { "maderasbrown.com", true }, { "maderasyacabados.net", true }, @@ -45468,7 +46111,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maelstrom.ninja", true }, { "maeplasticsurgery.com", true }, { "maesinox.be", true }, - { "maestrano.com", false }, { "maewongaming.tk", true }, { "maff.co.uk", true }, { "maff.scot", true }, @@ -45565,7 +46207,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magonote-nk.com", true }, { "magosmedellin.com", true }, { "magravsitalia.com", true }, - { "magtapp.com", true }, { "magu.kz", true }, { "maguire.email", true }, { "maguire.tk", true }, @@ -45659,7 +46300,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maispa.com", true }, { "maisretorno.com", true }, { "maisvitaminas.com.br", true }, - { "maisy.io", true }, { "maitemerino.net", true }, { "maitheme.com", true }, { "maiti.info", true }, @@ -45764,7 +46404,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malnex.de", true }, { "malond.com", true }, { "malphisruul.de", true }, - { "malscan.com", true }, + { "malscan.com", false }, { "malscan.org", true }, { "malta-firma.com", true }, { "maltasite.tk", true }, @@ -45792,6 +46432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mamanura.tk", true }, { "mamasorganizedchaos.com", true }, { "mamastore.eu", true }, + { "mamaxi.org", true }, { "mambas.cn", true }, { "mame.cl", true }, { "mamiecouscous.com", true }, @@ -45904,6 +46545,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mansfeld.pl", true }, { "manshatech.com", true }, { "manski.net", true }, + { "mansora.co", true }, { "mansora.net", true }, { "mantabiofuel.com", true }, { "mantachiepharmacy.com", true }, @@ -45940,7 +46582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manueli.de", true }, { "manuelpinto.in", false }, { "manuelraimo.cf", true }, - { "manuelrueger.de", true }, + { "manuelrueger.de", false }, { "manufacturinginmexico.org", true }, { "manuscripteditorial.com", true }, { "manuscriptlink.com", true }, @@ -46056,10 +46698,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marechal-company.com", true }, { "marek.su", true }, { "marelijah.org", true }, + { "maresencial.com", true }, { "marex.host", true }, { "margagriesser.de", true }, { "margan.ch", true }, { "margatroid.com", true }, + { "margatroid.net", true }, { "margaux-perrin.com", true }, { "margays.de", true }, { "margecommunication.com", false }, @@ -46079,6 +46723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mariagiovannaluini.it", true }, { "mariahandnasty.com", true }, { "mariaheidemann.nl", true }, + { "mariajuangarcia.com", true }, { "marianatherapy.com", true }, { "marianelaisashi.com", true }, { "marianhoenscheid.de", true }, @@ -46094,6 +46739,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marie-pettenbeck-schule.de", true }, { "marie.club", true }, { "mariehane.com", true }, + { "mariejulien.com", true }, { "mariemiramont.fr", true }, { "mariendistel-tee.de", true }, { "mariereichl.cz", true }, @@ -46102,6 +46748,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marijnfidder.nl", true }, { "marijuanajobscannabiscareers.com", true }, { "marikafranke.de", true }, + { "mariliaveiga.com.br", true }, { "marilsnijders.nl", true }, { "marilynhartman.com", true }, { "marilynmartin.com.au", true }, @@ -46110,6 +46757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marin-dom.ru", false }, { "marin-tullet.com", false }, { "marina-tsvetaeva.ml", true }, + { "marinat.de", true }, { "marinat2012.de", true }, { "marinazarza.es", true }, { "marinbusinesscenter.ch", false }, @@ -46407,6 +47055,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "master-net.org", true }, { "master-tmb.ru", true }, { "mastercardpac.com", true }, + { "mastercomfig.com", true }, { "masterdemolitioninc.com", true }, { "masterdigitale.com", true }, { "masterdrilling.com", true }, @@ -46489,7 +47138,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mathieui.net", true }, { "mathijskingma.nl", true }, { "mathis.com.tr", true }, - { "mathismoda.com", true }, { "mathiteia.com", true }, { "maths.network", true }, { "mathsai.com", true }, @@ -46512,7 +47160,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matridiana.com", true }, { "matrieux.dk", true }, { "matrimoni.uk", true }, + { "matrimonio.com.co", true }, { "matrimonio.com.pe", true }, + { "matrimonios.cl", true }, { "matriterie-sdv.ro", true }, { "matrixglobalsms.com", true }, { "matrixim.cc", true }, @@ -46586,7 +47236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mattwservices.co.uk", true }, { "matucloud.de", true }, { "matuslab.net", true }, - { "matviet.vn", true }, { "matway.net", true }, { "matze.co", true }, { "matze.org", false }, @@ -46594,7 +47243,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mau.life", true }, { "mauerwerk.online", true }, { "mauerwerkstag.info", true }, - { "mauiticketsforless.com", true }, { "mauldincookfence.com", true }, { "maunium.net", true }, { "mauracher.cc", true }, @@ -46618,10 +47266,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mawai.com.tw", true }, { "mawo.olkusz.pl", true }, { "mawrex.tech", true }, - { "max-apk.com", true }, + { "max-apk.com", false }, { "max-it.fr", true }, { "max-moeglich.de", true }, - { "max-phone.com", true }, + { "max-phone.com", false }, { "max-went.pl", true }, { "max.gov", true }, { "max00365.com", true }, @@ -46633,7 +47281,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maxbytes.nl", false }, { "maxchan.info", true }, { "maxclean.ml", true }, - { "maxdg.be", true }, { "maxedgymequipment.com", true }, { "maxh.me.uk", true }, { "maxhamon.ovh", true }, @@ -46646,6 +47293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maximdeboiserie.be", true }, { "maximdens.be", true }, { "maximeferon.fr", true }, + { "maximemichaud.me", true }, { "maximilian-graf.de", true }, { "maximilian-greger.com", true }, { "maximilian-staedtler.de", true }, @@ -46685,7 +47333,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maybeul.com", true }, { "mayblossom.net", true }, { "maydex.info", true }, - { "maydn.org", true }, { "mayerbrownllz.com", true }, { "mayhutmuibep.com", true }, { "mayito.tk", true }, @@ -46694,6 +47341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mayopartyhire.com", true }, { "mayorcahill.com", true }, { "mayper.net", true }, + { "maypolevilla.co.uk", true }, { "mayre-idol.tk", true }, { "mayrhofer.eu.org", false }, { "maysambotros.tk", true }, @@ -46782,6 +47430,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mce55.eu", true }, { "mcea-hld.jp", true }, { "mceconferencecentre.eu", true }, + { "mcfallout.ru", true }, { "mcfarlow.sk", true }, { "mcfedries.com", true }, { "mcfi.mu", true }, @@ -46808,7 +47457,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mckinleytk.com", true }, { "mcl.de", false }, { "mcl.gg", true }, - { "mclawyers.com.au", true }, { "mclinflatables.co.uk", true }, { "mclmotors.co.uk", true }, { "mclouds.ru", true }, @@ -46831,6 +47479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcsports.es", true }, { "mcsrvstat.us", true }, { "mcstaralliance.com", true }, + { "mcsteve.com", true }, { "mctherealm.net", true }, { "mctitan.net", true }, { "mctools.org", true }, @@ -46843,7 +47492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcwrapper.com", true }, { "mcynews.com", true }, { "mcyukon.com", true }, - { "mczone.su", false }, { "md-clinica.com.ua", true }, { "md10lc8.com", true }, { "md11lc8.com", true }, @@ -46881,15 +47529,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mdewendt.de", true }, { "mdf-bis.com", false }, { "mdhosting.co.uk", true }, - { "mdi-wolfsburg.de", true }, { "mdihi.com", true }, { "mdinvest.nz", true }, { "mdir.tk", true }, { "mdiv.pl", true }, + { "mdkhorshedalam.com", true }, { "mdlayher.com", true }, { "mdma.net", true }, { "mdmed.clinic", true }, - { "mdosch.de", true }, { "mdpparish.com", true }, { "mdpraha.cz", true }, { "mdrsp.de", true }, @@ -47220,8 +47867,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mec0976.com", true }, { "mec0977.com", true }, { "mec0991.com", true }, - { "mec222.com", true }, - { "mec333.com", true }, { "mec444.com", true }, { "mec555.com", true }, { "mec825.com", true }, @@ -47296,7 +47941,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mediagetnews.tk", true }, { "mediagold.it", true }, { "mediagrand.net", true }, - { "mediahaus.de", true }, { "mediajurnal.com", true }, { "medialab.nrw", true }, { "medialys.ca", true }, @@ -47316,9 +47960,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mediawijzer.net", true }, { "mediawiki.org", true }, { "mediawin.pl", true }, + { "medibasket.co.in", true }, { "medic-world.com", true }, { "medical-assistant-colleges.com", true }, - { "medicalabroad.org", true }, + { "medicalabroad.org", false }, { "medicalcountermeasures.gov", true }, { "medicaltools.de", true }, { "medicare-providers.net", true }, @@ -47330,12 +47975,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medicinesfast.com", false }, { "medicinia.com.br", true }, { "medicinskavranje.edu.rs", true }, - { "mediciventures.com", true }, { "medicm.jp", true }, { "medicocompetente.it", true }, { "medicoleads.com", true }, { "medicoresponde.com.br", true }, - { "medicsz.co", true }, { "medictools.de", true }, { "medienweite.de", true }, { "medifirst.de", true }, @@ -47455,6 +48098,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megakoncert90.cz", true }, { "megam.host", true }, { "megamisja.pl", true }, + { "megamov.eu", true }, + { "megamov.fr", true }, + { "megamov.org", true }, + { "megamov.pro", true }, { "megamp3.eu", true }, { "meganandmarc.us", true }, { "meganreel.com", true }, @@ -47474,6 +48121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megaxchange.com", true }, { "megaxchange.org", true }, { "megayachts.world", true }, + { "megazine3.de", true }, { "meggidesign.com", true }, { "megh.biz", true }, { "megh.tv", true }, @@ -47527,6 +48175,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meinephbern.ch", true }, { "meinewolke.pw", true }, { "meinezwangsversteigerung.de", true }, + { "meinforum.net", true }, { "meinheizstrom.de", true }, { "meinstartinsleben.com", true }, { "meinstartinsleben.de", true }, @@ -47560,10 +48209,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "melda.ru", true }, { "meldcode-assistent.nl", true }, { "meldpuntemma.nl", true }, + { "meldwekker.nl", true }, { "mele.ro", true }, { "melearning.university", false }, { "meledia.com", false }, - { "melefo.ddns.net", true }, { "melenchatsmelenchiens.fr", true }, { "melento.com", true }, { "melerpaine.com", true }, @@ -47612,6 +48261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "members-only-shopping.com", true }, { "members.nearlyfreespeech.net", false }, { "membersense.com", true }, + { "membershipnetworksite.com", false }, { "membershipservices.org.uk", true }, { "memberstweets.com", true }, { "memdoc.org", true }, @@ -47674,12 +48324,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "menthiere.fr", true }, { "mentiq.az", true }, { "mentita.de", true }, - { "mentorbuk.com", true }, { "mentorithm.com", true }, { "mentup.com.br", true }, { "menu.fyi", true }, { "menuel.me", true }, { "menuonlineordering.com", true }, + { "menurutparaahli.com", true }, { "menzietti.it", true }, { "meo.de", true }, { "meodihoang.com", true }, @@ -47703,7 +48353,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mercadopago.com", true }, { "mercamaris.es", true }, { "mercanix.co.uk", true }, - { "mercari.com", true }, { "mercatoitticosbt.it", true }, { "mercedes-benz-arena-stuttgart.de", true }, { "mercedes-benz-kiev.com", true }, @@ -47750,7 +48399,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meruri.com", true }, { "merzai.co.uk", true }, { "mes-bouquins.fr", true }, - { "mes-finances.be", true }, { "mesabi.ga", true }, { "mesami-art.de", true }, { "mesappros.com", true }, @@ -47862,12 +48510,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metron-networks.com", true }, { "metron-online.com", true }, { "metronaut.de", true }, + { "metroplex.me", true }, { "metropolisil.gov", true }, { "metropop.ch", false }, { "metrorealestatepros.com", true }, { "metrosahel.tn", false }, { "metsasta.com", true }, { "mettekopp.dk", true }, + { "mettin.org", true }, { "metzgermark.com", true }, { "meuautotrac.com.br", true }, { "meubanco7.com.br", true }, @@ -47890,6 +48540,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meyeraviation.com", true }, { "meys.io", true }, { "mezedokamomata.tk", true }, + { "meziblog.cz", true }, { "mezinfo.tk", true }, { "mezzehuis.be", true }, { "mf-fischer.de", true }, @@ -47905,6 +48556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mft.global", true }, { "mfxbe.de", true }, { "mfxer.com", true }, + { "mgae.com", true }, { "mgcraft.net", true }, { "mgdigitalmarketing.com.au", true }, { "mghiorzi.com.ar", false }, @@ -47971,6 +48623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michael-rigart.be", true }, { "michael-schefczyk.de", true }, { "michael-steinhauer.eu", true }, + { "michael.band", true }, { "michaelasawyer.com", true }, { "michaelband.co", true }, { "michaelband.com", true }, @@ -47998,6 +48651,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaelschubert.com", true }, { "michaelsweater.com", true }, { "michaeltaboada.me", true }, + { "michaeltjeuw.com.au", true }, { "michaeltroger.com", true }, { "michaeltruskowski.com", true }, { "michaelwermeester.com", true }, @@ -48020,6 +48674,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaonline.de", true }, { "michasfahrschule.com", true }, { "michel-wein.de", true }, + { "michel.pt", true }, { "michele.ga", true }, { "michele.ml", true }, { "michellavat.com", true }, @@ -48056,6 +48711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "micromind.io", true }, { "micromookie.com", true }, { "microneedlingstudio.se", true }, + { "micropigmentadordesucesso.com", true }, { "micropigpets.com", true }, { "microsoftaffiliates.azurewebsites.net", true }, { "microsoftedgeinsider.com", true }, @@ -48075,6 +48731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "midgawash.com", true }, { "midi-ctes.fr", true }, { "midiaid.de", true }, + { "midislandrealty.com", false }, { "midistop.org", true }, { "midkam.ca", true }, { "midlandgate.de", true }, @@ -48116,6 +48773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mightybit.co", true }, { "mightysighty.com", true }, { "migrantskillsregister.org.uk", true }, + { "miguel-platteel.fr", true }, { "miguel.pw", true }, { "migueldemoura.com", true }, { "migueldominguez.ch", false }, @@ -48135,7 +48793,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mijn-financien.be", true }, { "mijn.computer", true }, { "mijnbeijesweb.nl", true }, - { "mijnetz.nl", false }, { "mijngeldcoach.nl", true }, { "mijnkantoor.net", true }, { "mijnkerstkaarten.be", true }, @@ -48223,14 +48880,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "milania.de", true }, { "milanpala.cz", false }, { "milanstephan.de", false }, + { "milanvit.net", true }, { "milavica.tk", true }, { "milcahsmusings.com", true }, { "milcarteles.com", true }, { "milchbuchstabe.de", true }, + { "milehighmaniac.com", true }, { "mileme.com", true }, { "milenaria.es", true }, { "milesapart.dating", true }, { "milesdewitt.com", true }, + { "mileyweasel.de", true }, { "milfhubs.com", true }, { "milfpornograph.com", true }, { "milieuland.com", true }, @@ -48345,6 +49005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minfin.gov.ua", true }, { "mingky.net", true }, { "mingkyaa.com", true }, + { "mingming.info", true }, { "mingram.net", true }, { "mingtreerealty.com", true }, { "mingwah.ch", false }, @@ -48358,6 +49019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miniaturepets.net", true }, { "minibaggerverleih-aulendorf.de", true }, { "minibrewery.cf", true }, + { "minicampingshalom.nl", true }, { "minican.net", true }, { "miniclip.com", true }, { "minigames.com", true }, @@ -48367,6 +49029,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minikin.tk", true }, { "minikneet.com", true }, { "minilions.fr", true }, + { "minilov.fr", true }, { "minimal-apps.de", true }, { "minimalistbaker.com", true }, { "minimaliston.com", true }, @@ -48379,7 +49042,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mining.diamonds", true }, { "miningtronics.com", false }, { "miniskipper.at", true }, - { "minisoft4u.ir", true }, { "ministeriumfuerinternet.de", true }, { "minitruckin.net", true }, { "minitrucktalk.com", true }, @@ -48388,7 +49050,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miniverse.social", true }, { "miniwallaby.com", true }, { "miniwaplus.com", true }, - { "miniwolke.ch", true }, { "mink-coat.tk", true }, { "minkymoon.jp", true }, { "minload.com", true }, @@ -48408,7 +49069,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minton.systems", true }, { "mintosherbs.com", true }, { "mintrak2.com", true }, - { "mintse.com", false }, + { "mintse.com", true }, { "minttang.cn", false }, { "minu.link", true }, { "minube.co.cr", true }, @@ -48447,7 +49108,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mirknighechek.tk", true }, { "mirkofranz.de", true }, { "mirkvartir.tk", true }, - { "miroctum.com", true }, { "mirokon.tk", true }, { "mironet.cz", true }, { "miroslavbaka.cz", true }, @@ -48477,7 +49137,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miss-inventory.co.uk", true }, { "miss-platinum.net", true }, { "miss.com.tw", true }, - { "miss.sh", true }, { "missaocadastrobv.com.br", true }, { "missblisshair.com.au", true }, { "missdream.org", true }, @@ -48489,6 +49148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "missionpuppy.nl", true }, { "missionsgemeinde.de", true }, { "missip.nl", true }, + { "mississippigenealogy.com", true }, { "missivystorm.com", true }, { "misskey.jp", true }, { "misskey.site", false }, @@ -48523,6 +49183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mitarbeitermotivation-anleitungen.de", true }, { "mitchellhandymanservices.co.uk", true }, { "mitchelmore.ca", true }, + { "mitchkalf.nl", true }, { "mitdip-mit-group-ch.azurewebsites.net", true }, { "mitevi.com", true }, { "mitfx.com", true }, @@ -48549,7 +49210,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mittelunsachlich.de", true }, { "mittenofficesystems.com", true }, { "mittwoch-nacht.net", true }, - { "mitya.cz", true }, { "mitzpettel.com", true }, { "miui-germany.de", true }, { "miukimodafeminina.com", true }, @@ -48649,7 +49309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mksac.co.uk", true }, { "mksdarchitects.com", true }, { "mkse.com", true }, - { "mkset.ru", true }, + { "mkset.ru", false }, { "mkt.com", true }, { "mktdigital.info", true }, { "mktemp.org", true }, @@ -48717,6 +49377,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mmucha.de", true }, { "mmwb.nl", true }, { "mmxblog.com", true }, + { "mna7e.com", true }, { "mnatechnologies.com.au", true }, { "mnc.moda", true }, { "mnciitbhu.me", true }, @@ -48746,6 +49407,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mo2021.de", true }, { "mo3.club", true }, { "moa.moe", true }, + { "moabit.de", true }, { "moabpapier.de", true }, { "moabygg.se", true }, { "moahmo.com", true }, @@ -48770,6 +49432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobilebooster.tk", true }, { "mobilecasinoclub.co.uk", true }, { "mobilecontractcomparison.com", true }, + { "mobileinternetbanking.com", true }, { "mobilelooper.com", true }, { "mobilemedics.com", true }, { "mobileread.com", true }, @@ -48781,8 +49444,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobilinnov.it", true }, { "mobilisation-generale.org", false }, { "mobility-events.ch", true }, + { "mobilmobil.co", true }, { "mobilux.lv", true }, + { "mobincube.com", true }, { "mobinst.ml", true }, + { "mobinstore.com", true }, { "mobio.net", true }, { "mobiproj.com", true }, { "mobisaar-cloud.de", true }, @@ -48829,6 +49495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mode-individuell.de", true }, { "modecaso.com", true }, { "model.earth", true }, + { "modelbase.org", true }, { "modelclub-draveil.eu", true }, { "modelcube.com", true }, { "modeldimension.com", true }, @@ -48849,16 +49516,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "modernapprenticeships.org", true }, { "modernautorepairs.com", true }, { "moderncommercialrealestate.com", true }, - { "modernibytovytextil.cz", true }, { "moderniknihovna.cz", true }, { "moderntld.net", true }, - { "modhay.com", true }, { "modifiedmind.com", true }, { "modistry.com", true }, { "modistryusercontent.com", true }, { "modmountain.com", true }, { "modnitsa.info", true }, - { "modonor.dk", true }, { "mods-community.de", true }, { "modscrew.com", true }, { "modul21.eu", true }, @@ -48896,13 +49560,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mofohome.dyndns.org", true }, { "mogica.tk", true }, { "moha-swiss.com", false }, + { "mohamedhamuda.com", true }, { "mohamedhosting.tk", true }, { "mohanmekap.com", true }, { "mohela.com", true }, { "mohitchahal.com", true }, { "mohot.com", true }, { "mohot.fit", true }, - { "mohr-maschinenservice.de", false }, + { "mohr-maschinenservice.de", true }, { "mohritz.co", true }, { "moin.jp", true }, { "moipourtoit.ch", true }, @@ -48916,7 +49581,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojefilmy.xyz", true }, { "mojekonsultacje.pl", true }, { "mojilitygroup.com", true }, + { "mojitoparty-articlespara.website", true }, { "mojizuri.com", true }, + { "mojizuri.jp", true }, { "mojkragujevac.net", true }, { "mojleksikon.com", true }, { "mojnet.eu", true }, @@ -48949,7 +49616,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "molpek.com", true }, { "moltapor.tk", true }, { "molti.hu", true }, - { "moltina.com", true }, { "molun.net", true }, { "molunerfinn.com", true }, { "molusk.ml", true }, @@ -49022,6 +49688,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monique.io", true }, { "moniquedekermadec.com", true }, { "moniquemunhoz.com.br", true }, + { "monitman.com", true }, { "monitman.solutions", true }, { "monitorbox.jp", true }, { "monitord.at", true }, @@ -49090,6 +49757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "montrealcatadoptions.com", true }, { "montredeal.fr", true }, { "montsaintaignan.fr", true }, + { "montsearias.com", true }, { "montychristie.com", true }, { "monwarez.ovh", true }, { "monzo.com", true }, @@ -49136,10 +49804,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moorparklighting.com", true }, { "moorparkoutdoorlighting.com", true }, { "moort.be", true }, - { "moosbild.com", true }, { "mooselook.de", true }, { "moosikapp.tk", true }, - { "moosmann-moehrle.de", true }, { "moosmaus.tk", true }, { "moot-info.co.za", true }, { "moovablestorage.com", true }, @@ -49182,6 +49848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morepablo.com", true }, { "morepay.cn", true }, { "moreserviceleads.com", true }, + { "moreshop.pl", true }, { "moresw.com", true }, { "morethanautodealers.com", true }, { "morethancode.be", true }, @@ -49191,11 +49858,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morgancounty-al.gov", true }, { "morgancountysheriffal.gov", true }, { "morgandesort.com", true }, - { "morgangallant.com", true }, { "morgansleisure.co.uk", true }, { "morganwilder.com", true }, { "morgner.com", true }, { "morhys.com", true }, + { "moritoworks.com", true }, { "moritz-baestlein.de", true }, { "moritzkornher.de", true }, { "moritztremmel.de", true }, @@ -49247,6 +49914,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mosshi.be", true }, { "mostafabanaei.cf", true }, { "mostbelehuzunk.hu", true }, + { "mosteirobudista.com", true }, { "mosternaut.com", true }, { "mostlyharmless.at", true }, { "mostlyoverhead.com", true }, @@ -49289,16 +49957,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motohell.com", true }, { "motoland.ml", true }, { "motomorgen.com", true }, - { "motonauticaibiza.com", true }, { "motor-agro.com", true }, { "motor-agro.com.ua", true }, { "motor-agro.kz", true }, { "motor-agro.ru", true }, - { "motor-forum.nl", true }, + { "motor-forum.nl", false }, { "motor1.com", true }, { "motorbiketourhanoi.com", true }, { "motoreflex.com", true }, - { "motorialab.com", true }, + { "motorialab.com", false }, { "motornaolja.com", true }, { "motorpointarenacardiff.co.uk", true }, { "motorring.ru", true }, @@ -49309,7 +49976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motoscascos.com", true }, { "motosikletevi.com", true }, { "motospaya.com", true }, - { "motostorie.blog", true }, { "mototax.ch", true }, { "motovated.co.nz", false }, { "motovio.de", true }, @@ -49380,8 +50046,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moylen.eu", true }, { "mozartgroup.hu", true }, { "mozektevidi.net", true }, + { "mozgb.ru", true }, { "mozilla-hispano.org", true }, { "mozilla.cz", true }, + { "moztrack.co.mz", true }, { "mozzez.de", true }, { "mozzilla.cz", true }, { "mp3gratuiti.com", true }, @@ -49535,6 +50203,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mszavodumiru.cz", true }, { "mt-bank.jp", true }, { "mt-tech.fi", true }, + { "mt-west.org", true }, { "mt.search.yahoo.com", false }, { "mt1016.com", true }, { "mt2414.com", true }, @@ -49558,7 +50227,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mtgenius.com", true }, { "mtgsuomi.fi", true }, { "mthode.org", true }, - { "mthopebank.com", true }, { "mthrbrd.com", true }, { "mthrbrd.net", true }, { "mths.be", false }, @@ -49588,7 +50256,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "muckingabout.eu", true }, { "muckrack.com", true }, { "mucmail.de", true }, + { "muctool.de", true }, { "mudanzasacuna.com.co", true }, + { "mudanzasytransportesbh.com", true }, { "mudaomundo.org", true }, { "mudasobwa.tk", true }, { "mudbenesov.cz", true }, @@ -49634,7 +50304,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multibit.org", true }, { "multiclinicacardio.com.br", true }, { "multicomhost.com", true }, - { "multicore.cl", true }, { "multicorpbra.com", true }, { "multigamecard.com", true }, { "multigamers-net.tk", true }, @@ -49646,7 +50315,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multimed.krakow.pl", true }, { "multimedia-pool.com", true }, { "multimediapc.de", true }, - { "multiplayernow.com", true }, { "multipleservers.com", true }, { "multiplexcy.com", true }, { "multirep.ch", false }, @@ -49666,7 +50334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multixa.net", true }, { "multixvideo.com", true }, { "multizone.games", true }, - { "multrier.fr", true }, + { "multypanels.com", true }, { "mum.ceo", true }, { "muma.ml", true }, { "mumablue.com", true }, @@ -49694,8 +50362,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "munduch.eu", true }, { "munera.ca", true }, { "munfordtn.gov", true }, + { "munibernal.gob.pe", true }, { "munich-eventlocations.de", true }, { "munirajiwa.com", true }, + { "munivice.gob.pe", true }, { "munki.org", true }, { "munkibuilds.org", true }, { "muntproever.nl", true }, @@ -49749,6 +50419,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mushikabu.net", true }, { "mushman.tk", true }, { "music-is-my-life.de", true }, + { "music-privilege.fr", true }, { "music-project.eu", true }, { "music-world.pl", true }, { "music.amazon.com", true }, @@ -49762,6 +50433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "musicfactory.ml", true }, { "musicfromgod.com", true }, { "musicgamegalaxy.de", true }, + { "musicgivesmelife.com", true }, { "musician.dating", true }, { "musicindustrydb.org", true }, { "musicinsiderdigest.com", true }, @@ -49802,7 +50474,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mustertexte-musterbewerbung.de", true }, { "musthavesforreal.com", true }, { "musthinsider.com", true }, - { "muszic.co", true }, { "mutantmonkey.in", true }, { "mutantmonkey.info", true }, { "mutantmonkey.sexy", true }, @@ -49812,7 +50483,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mutuelle.fr", true }, { "muuglu.es", true }, { "muunnin.net", true }, - { "muurlingoogzorg.nl", true }, { "muusika.fun", true }, { "muwatenraqamy.org", true }, { "muy.ooo", true }, @@ -49871,6 +50541,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "my-ebook.es", true }, { "my-floor.com", true }, { "my-gode.fr", true }, + { "my-goldfinger.com", true }, { "my-host.ovh", true }, { "my-hps.de", true }, { "my-ip.work", true }, @@ -49884,11 +50555,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "my-static-live-808795.c.cdn77.org", true }, { "my-stuff-online.com", true }, { "my-tunisia.tk", true }, - { "my-voice.nl", false }, { "my-web.xyz", true }, { "my-webcloud.at", true }, { "my.onlime.ch", false }, - { "my.usa.gov", false }, + { "my.usa.gov", true }, { "my4g.net", true }, { "my4thtelco.com.sg", true }, { "my4thtelco.sg", true }, @@ -49919,17 +50589,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mybestmattress.com", true }, { "mybestwebsitebuilder.com", true }, { "mybicc.org", true }, + { "mybigsaving.com", true }, { "mybillie.com", true }, { "myblockchain.cloud", true }, { "mybloggedlife.com", true }, { "mybodylife.com", true }, { "mybon.at", false }, + { "mybon.online", true }, { "myboothang.com", true }, { "mybreastcancerjourney.com", true }, + { "mybrisbanewebsite.com.au", true }, + { "mybsms.gr", true }, { "mybuildingcertifier.com.au", true }, - { "mybusiness.wien", true }, { "mycaelis.fr", true }, - { "mycakeangel.com", true }, { "mycam.gq", true }, { "mycamshowhub.com", true }, { "mycamshowhub.to", true }, @@ -49948,13 +50620,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myclgnotes.com", true }, { "myclinicalstudybuddy.com", true }, { "mycloud-system.com", true }, - { "mycloudsaas.com", true }, { "mycodes.com.au", true }, { "mycofairtrade.com", false }, { "mycoldjet.com", true }, { "mycolorado.gov", true }, { "mycompanion.cz", true }, { "mycompanysite.host", true }, + { "myconcorde.fr", true }, { "myconf.com", true }, { "myconf.es", true }, { "myconf.uk", true }, @@ -50013,6 +50685,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myepass.bg", true }, { "myepass.de", true }, { "myeriri.com", true }, + { "myersking.com", true }, { "myesk.rs", true }, { "myessaygeek.com", true }, { "myetherwallet.com", true }, @@ -50029,6 +50702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myforfaitmobile.com", true }, { "myformatconverter.com", false }, { "myfortdodge.com", true }, + { "myforum.community", true }, { "myfreemp3.click", true }, { "myfrenchtattoo.fr", true }, { "myfunworld.de", true }, @@ -50038,6 +50712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mygallery.homelinux.net", true }, { "mygameconsole.tk", true }, { "mygate.at", false }, + { "mygate.in", true }, { "mygaysitges.com", true }, { "mygear.live", true }, { "mygedit.com", true }, @@ -50054,6 +50729,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mygnmr.com", true }, { "mygoldennetwork.com", true }, { "mygomel.tk", true }, + { "mygov.scot", true }, { "mygreatjob.eu", true }, { "mygreatjobs.de", true }, { "mygreatlakes.org", true }, @@ -50067,7 +50743,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myhmz.bid", true }, { "myhollywoodnews.com", true }, { "myhome-24.pl", true }, - { "myhomeworkpapers.com", true }, { "myhoor.ga", true }, { "myhostname.net", true }, { "myhuthwaite.com", true }, @@ -50108,7 +50783,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mylighthost.com", false }, { "mylittlechat.ru", true }, { "myliveupdates.com", true }, - { "mylkguys.com", true }, { "mylms.nl", true }, { "myloan.hk", true }, { "myloanmanager.com", true }, @@ -50118,6 +50792,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mylstrom.com", true }, { "mylucknursinghome.com", true }, { "mymall.co.jp", true }, + { "mymartinbeckeropenhab.de", true }, { "mymb.pm", true }, { "mymedz.nl", true }, { "mymerlin.co.nz", true }, @@ -50181,6 +50856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mypfp.co.uk", true }, { "myphamaplus.org", true }, { "myphamthemis.com", true }, + { "mypharmjar.com", true }, { "myphotonics.ml", true }, { "myphotos.ga", true }, { "myphotoshopbrushes.com", true }, @@ -50215,7 +50891,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myrepublic.asia", true }, { "myrepublic.cf", true }, { "myrepublic.cloud", true }, - { "myrepublic.co.id", true }, { "myrepublic.com.cn", true }, { "myrepublic.com.hk", true }, { "myrepublic.com.kh", true }, @@ -50280,7 +50955,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myseatime.com", true }, { "myself5.de", true }, { "myseo.ga", true }, - { "myserv.one", true }, { "myservice.store", false }, { "myservicearl.com", true }, { "mysexycard.com", true }, @@ -50310,7 +50984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mystic-welten.de", true }, { "mysticconsult.com", true }, { "mystickphysick.com", true }, - { "mystore24.eu", false }, + { "mystore24.eu", true }, { "mystore24.us", true }, { "mystorymonster.com", true }, { "mystown.org", true }, @@ -50399,55 +51073,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "n0099.cf", true }, { "n0paste.tk", false }, { "n0psled.nl", true }, - { "n16.co", true }, - { "n18.co", true }, + { "n16.co", false }, + { "n18.co", false }, { "n26.com", true }, - { "n29.co", true }, + { "n29.co", false }, { "n2diving.net", true }, { "n30365.com", true }, - { "n32.co", true }, + { "n32.co", false }, { "n36533.com", true }, { "n36594.com", true }, - { "n37.co", true }, - { "n3domains.com.au", true }, + { "n37.co", false }, { "n3ro.io", true }, { "n3ro.net", true }, { "n3twork.net", true }, - { "n48.co", true }, + { "n48.co", false }, { "n4v.eu", true }, { "n5118.com", true }, { "n5197.co", true }, - { "n56.co", true }, + { "n56.co", false }, { "n6729.co", true }, { "n6729.com", true }, - { "n69.co", true }, + { "n69.co", false }, { "n6957.co", true }, { "n6a.net", true }, - { "n7.education", true }, - { "n78.co", true }, + { "n78.co", false }, { "n81365.com", true }, { "n82365.com", true }, - { "n886666.com", false }, - { "n888-qieji.com", true }, + { "n886666.com", true }, + { "n888-qieji.com", false }, { "n888000.com", false }, - { "n888010.com", true }, - { "n888101.com", true }, - { "n888111.com", true }, - { "n888118.com", true }, - { "n888131.com", true }, - { "n888151.com", true }, - { "n888161.com", true }, - { "n88828.com", true }, - { "n888292.com", true }, - { "n888378.com", true }, - { "n888388.com", true }, - { "n888599.com", true }, - { "n888668.com", true }, - { "n888677.com", true }, - { "n888699.com", true }, - { "n88890.com", true }, - { "n888duchang.com", true }, - { "n888go.com", true }, + { "n888010.com", false }, + { "n888101.com", false }, + { "n888111.com", false }, + { "n888118.com", false }, + { "n888131.com", false }, + { "n888151.com", false }, + { "n888161.com", false }, + { "n88828.com", false }, + { "n888292.com", false }, + { "n888378.com", false }, + { "n888388.com", false }, + { "n888599.com", false }, + { "n888668.com", false }, + { "n888677.com", false }, + { "n888699.com", false }, + { "n88890.com", false }, + { "n888duchang.com", false }, + { "n888go.com", false }, { "n888ok.com", true }, { "n8ch.net", true }, { "n8mgt.com", true }, @@ -50476,6 +51148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nabytek-valmo.cz", true }, { "nabytokalva.sk", true }, { "nacfit.com", true }, + { "nachovni.org", true }, { "nachrichten-heute.net", true }, { "nachsendeauftrag.net", true }, { "nachsenden.info", true }, @@ -50533,6 +51206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nailshop.gq", true }, { "nailtodayminneapolis.com", true }, { "nairobibusinessreview.com", true }, + { "nais0ne.com", true }, { "naive.network", true }, { "naivetube.com", false }, { "najany.de", true }, @@ -50566,7 +51240,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nalepky-na-zed.cz", true }, { "nalepte.cz", true }, { "nalexandru.xyz", true }, - { "nalsai.de", true }, { "nalukfitness.com.br", true }, { "namaanakperempuan.net", true }, { "namacindia.com", true }, @@ -50637,6 +51310,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nanshy.com", false }, { "nanubo.com", true }, { "nanubo.de", true }, + { "nanxin.xyz", true }, { "nao.sh", true }, { "naoar.com", true }, { "naomiheji.com", true }, @@ -50689,6 +51363,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "naschenweng.me", true }, { "nascher.org", false }, { "naseehah.ga", true }, + { "nasehyar.ir", true }, { "nashdistribution.com", true }, { "nashikmatka.com", true }, { "nashira.cz", true }, @@ -50699,12 +51374,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nashzhou.me", true }, { "nasladko.cz", true }, { "naslovi.net", true }, - { "nasmocopati.com", true }, { "nasosvdom.com.ua", true }, { "nasr.mobi", true }, { "nasrsolar.com", true }, { "nassi.me", true }, - { "nastoletni.pl", true }, { "nastrojka-pianino.spb.ru", true }, { "nastycomics.eu", true }, { "nastysclaw.com", true }, @@ -50768,13 +51441,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natmal.net", true }, { "natropie.pl", true }, { "natsumihoshino.com", true }, - { "natteravneneibergen.no", true }, { "nattiam.com", true }, { "natuerlichabnehmen.ch", true }, { "natur-care.com", true }, { "natur-udvar.hu", true }, { "natur.com", true }, { "natura-sense.com", true }, + { "naturadent.hu", true }, { "naturalbeautyhacks.com", true }, { "naturalbijou.com", true }, { "naturalcommission.com", true }, @@ -50801,6 +51474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natuterra.com.br", true }, { "natverkstekniker.se", true }, { "naude.co", true }, + { "naughton.ie", true }, { "naughty.audio", true }, { "nauris.fi", true }, { "nausicaahotel.it", true }, @@ -50903,6 +51577,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nbl.org.tw", true }, { "nbm.gov", true }, { "nbnnetwork.com", true }, + { "nbook.org", true }, { "nbrain.de", true }, { "nbrii.com", true }, { "nbriresearch.com", true }, @@ -50995,6 +51670,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "necord.com", true }, { "necormansir.com", true }, { "necromantia.tk", true }, + { "necsol.ru", true }, { "nectardigit.com", true }, { "nectarleaf.com", true }, { "nectir-staging.com", true }, @@ -51014,7 +51690,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "needfire.ga", true }, { "needle.net.nz", true }, { "needle.nz", true }, - { "needletail.io", true }, { "needrom.com", true }, { "needstyle.ru", true }, { "neel.ch", true }, @@ -51027,6 +51702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nefertitis.cz", true }, { "neflabs.com", true }, { "nefro-cme.de", true }, + { "neftis.es", true }, { "negai.moe", true }, { "negativecurvature.net", true }, { "negativeentropy.org", true }, @@ -51055,11 +51731,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nejenpneu.cz", true }, { "nejlevnejsi-parapety.cz", true }, { "nejmaklerka.cz", true }, - { "nejprivlac.cz", true }, { "neko-nyan-nuko.com", true }, { "neko-nyan.org", true }, - { "nekodex.net", true }, { "nekoku.io", true }, + { "nekolove.jp", true }, { "nekomimi.pl", true }, { "nekomimirouter.com", true }, { "nekomio.com", true }, @@ -51156,11 +51831,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nerdoutstudios.tv", true }, { "nerdpol.ch", true }, { "nerdpol.org", true }, - { "nerdrockshop.co.uk", true }, { "nerds-gegen-stephan.de", true }, { "nerds.company", false }, { "nerdtime.de", true }, { "nerdwallet.com", true }, + { "nerdycharmer.com", true }, { "nerdydev.net", true }, { "nereustech.com", true }, { "nerfroute.com", true }, @@ -51200,7 +51875,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netbuzz.ru", true }, { "netchameleon.com", true }, { "netcials.in", true }, - { "netcombne.ch", true }, { "netconnect.at", true }, { "netcoolusers.org", true }, { "netd.at", true }, @@ -51256,6 +51930,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netolink.ru", true }, { "netpenge.tk", true }, { "netrabota.tk", true }, + { "netradyne.com", true }, { "netraising.com", false }, { "netrelay.email", true }, { "netrewrite.com", true }, @@ -51317,6 +51992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "networkofarts.com", true }, { "networkposting.com", true }, { "networksolutionsconsultant.com", true }, + { "networkuser.de", true }, { "networth.at", true }, { "networx-online.de", true }, { "netz-yokohama.co.jp", true }, @@ -51414,7 +52090,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newflavor.design", true }, { "newflora.ru", true }, { "newfordmustang.com.au", true }, - { "newforms.nl", true }, { "newfoundland-labradorflora.ca", true }, { "newgraphics.by", true }, { "newgrowbook.com", true }, @@ -51425,10 +52100,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newind.info", true }, { "newinf.at", true }, { "newinternet.media", true }, - { "newizv.ru", true }, + { "newizv.ru", false }, { "newjianzhi.com", true }, { "newkaliningrad.ru", true }, { "newknd.com", true }, + { "newlegalsteroid.com", true }, { "newlifeband.de", true }, { "newlifehempoil.com", true }, { "newline.online", true }, @@ -51470,6 +52146,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newsdiffs.eu", true }, { "newserumforskin.com", true }, { "newsgroups.io", true }, + { "newsheaders.net", true }, { "newshell.it", true }, { "newsinkansas.ml", true }, { "newsinpolitics.ga", true }, @@ -51578,6 +52255,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nghe.net", true }, { "ngi.eu", true }, { "ngiemboon.net", true }, + { "nginx.io", true }, { "nginxconfig.com", true }, { "nginxyii.tk", true }, { "ngla.gov", true }, @@ -51667,6 +52345,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nic.zip", true }, { "nicastrosalvatore.tk", true }, { "nice.ch", true }, + { "niceb5y.net", false }, { "niceguyit.biz", true }, { "nicesco.re", true }, { "nicestudio.co.il", false }, @@ -51691,6 +52370,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nickfrost.rocks", true }, { "nickguyver.com", true }, { "nickhitch.co.uk", true }, + { "nickhowell.co.uk", true }, { "nickkallis.com", true }, { "nickloose.de", true }, { "nicklord.com", true }, @@ -51740,6 +52420,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "niconico.ooo", true }, { "niconode.com", false }, { "nicoobank.com", true }, + { "nicoobook.com", true }, { "nicoobook.net", true }, { "nicorevin.ru", true }, { "nicsezcheckfbi.gov", true }, @@ -51782,9 +52463,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nifume.com", true }, { "nigelwakefield.com", true }, { "nigensha.co.jp", true }, - { "niggemeier.cc", true }, { "nigger.racing", true }, { "niggo.eu", true }, + { "night.cat", true }, { "night2stay.cn", true }, { "night2stay.de", true }, { "night2stay.fr", true }, @@ -51818,7 +52499,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nikitin.photo", true }, { "nikkasystems.com", true }, { "nikkila.me", true }, - { "nikklassen.ca", true }, { "nikksno.io", true }, { "niklas.pw", true }, { "niklasbabel.com", true }, @@ -51832,6 +52512,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nikonnps.co.uk", true }, { "nikonpromotions.co.uk", true }, { "nikpool.com", true }, + { "niktok.com", true }, { "nil.gs", true }, { "nil.mx", true }, { "nila.store", true }, @@ -51854,6 +52535,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ninetailed.ninja", true }, { "ninetaillabs.com", true }, { "ninetaillabs.xyz", true }, + { "nineteensixtyone.co.uk", true }, { "ninfora.com", true }, { "ningbo.co.uk", true }, { "ningrui.me", true }, @@ -51893,6 +52575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nishikino-maki.com", true }, { "nishimebistro.cz", true }, { "nishisbma.com", true }, + { "nishiyama-shoten.com", true }, { "nissanofbismarckparts.com", true }, { "nist.tech", true }, { "nitifilter.com", true }, @@ -51955,6 +52638,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nlap.ca", false }, { "nlayer.info", true }, { "nlbewustgezond.nl", true }, + { "nlc-business.com", true }, { "nlc.org.au", true }, { "nlegall.fr", true }, { "nllboard.co.uk", true }, @@ -51999,7 +52683,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noahwitt.me", true }, { "nob.ro", true }, { "nobilefoods.com", true }, - { "nobitakun.com", true }, { "nobledust.com", true }, { "nobleparkapartments.com.au", true }, { "nobly.de", true }, @@ -52018,7 +52701,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nodecdn.net", true }, { "nodecraft.com", true }, { "nodeedge.com", true }, - { "nodeflame.com", true }, { "nodefoo.com", true }, { "nodejs.de", true }, { "nodelab-it.de", true }, @@ -52057,10 +52739,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noincludesubdomains.preloaded.test", false }, { "noinghene.com", true }, { "noise.agency", true }, + { "noiseandheat.com", true }, { "noisebridge.social", true }, { "noisetor.net", true }, { "noisetrap.cz", true }, - { "noisky.cn", true }, + { "noisky.cn", false }, { "noisyfox.cn", true }, { "noites.pt", true }, { "noithat247.com.vn", true }, @@ -52068,6 +52751,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nokia.la", true }, { "nokono.com", true }, { "nokya.tk", true }, + { "nolanpowellisaho.com", true }, { "nolanvilletx.gov", true }, { "nolatepayments.com", true }, { "nolaviz.org", true }, @@ -52081,7 +52765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nomadichomes.com", true }, { "nomadichomes.org", true }, { "nomadicrootsco.com", true }, - { "nomadproject.io", true }, + { "nomadproject.io", false }, { "nomagic.software", true }, { "nomaster.cc", true }, { "nomenclator.org", true }, @@ -52090,6 +52774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nomifensine.com", true }, { "nomik.xyz", true }, { "nomoondev.azurewebsites.net", true }, + { "nomsing.tk", true }, { "nomsy.net", true }, { "nomzamo.spdns.org", true }, { "nonabytes.xyz", false }, @@ -52100,6 +52785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nonglamfarm.vn", true }, { "nontonfilem.ml", true }, { "nonx.pro", true }, + { "nony.no", true }, { "nonzero.io", true }, { "noob-box.net", true }, { "noob-rp.ru", true }, @@ -52135,7 +52821,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "norad.sytes.net", true }, { "noradevot.com", true }, { "norala.tk", true }, - { "noranowak.com", true }, { "norapiero.com", true }, { "norbertschneider-music.com", true }, { "nord-sud.be", true }, @@ -52264,7 +52949,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "notbolaget.se", true }, { "notboring.co.uk", true }, { "notcompletelycorrect.com", true }, - { "notdienstreform-nordrhein.de", true }, { "note64.com", true }, { "note7forever.com", true }, { "noteboat.net", true }, @@ -52281,7 +52965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nothing.net.nz", true }, { "nothing.org.uk", true }, { "noticaballos.com", true }, - { "noticiasdehumor.com", true }, + { "noticiaelmundo.com", true }, { "noticiasdetv.com", true }, { "noticiasymas.cl", true }, { "notificami.com", true }, @@ -52301,11 +52985,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nototema.com", true }, { "notsafefor.work", true }, { "nottres.com", true }, - { "nou.vn", true }, { "nou9ta.tk", true }, { "noudjalink.nl", true }, { "nougat-anduze.fr", true }, { "nourishandnestle.com", true }, + { "noussommesluniversite.org", true }, { "noustique.com", true }, { "noustramits.com", true }, { "nousyukum.com", true }, @@ -52416,6 +53100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nrvn.cc", false }, { "nrvnastudios.com", true }, { "ns-frontier.com", true }, + { "ns-ohsnek.com", true }, { "ns2servers.pw", true }, { "nsa.lol", true }, { "nsa.ovh", true }, @@ -52470,6 +53155,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nu-pogodi.net", true }, { "nu3tion.com", true }, { "nu3tion.cz", true }, + { "nu3vex.com", true }, { "nuacht.ie", true }, { "nualgiponds.com", true }, { "nuamooreaindonesia.com", true }, @@ -52495,8 +53181,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nuipogoda.ru", true }, { "nuits-franciliennes.fr", true }, { "nukleosome.com", true }, + { "null-d.com", true }, { "null-life.com", true }, - { "nullday.de", true }, { "nulle-part.org", true }, { "nullonerror.org", true }, { "nullroute.com", true }, @@ -52547,7 +53233,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nurseregistry.com", true }, { "nurses.dating", true }, { "nursingschool.network", true }, - { "nusaceningan.io", true }, + { "nusaceningan.io", false }, + { "nusantaratv.com", true }, { "nusatrip-api.com", true }, { "nussadoclub.org", true }, { "nut-dev.com", true }, @@ -52585,6 +53272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nvfoundation.com", true }, { "nvl-game.tokyo", true }, { "nvlocalbusiness.com", true }, + { "nvlop.xyz", false }, { "nvmo.org", true }, { "nvoip.com.br", true }, { "nvq.nl", true }, @@ -52613,6 +53301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nxinfo.ch", false }, { "nxit.ca", true }, { "nxtgenbroadband.in", true }, + { "nxtgensn.com", true }, { "nxth.io", true }, { "nya.as", true }, { "nyadora.com", true }, @@ -52628,7 +53317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nycfilmcrew.com", true }, { "nyconcretelifting.com", true }, { "nycoyote.org", true }, - { "nycrerc.com", true }, + { "nycrerc.com", false }, { "nydig.com", true }, { "nyerjachioval.hu", true }, { "nyerjakekszekkel.hu", true }, @@ -52659,14 +53348,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nyzed.com", true }, { "nzelaweb.com", true }, { "nzstudy.ac.nz", true }, + { "nzt.capital", true }, + { "nzt.co", true }, + { "nzt.dev", true }, + { "nzt.foundation", true }, + { "nzt.holdings", true }, + { "nzt.io", true }, + { "nzt.one", true }, + { "nzt.productions", true }, + { "nzt.properties", true }, + { "nzt.services", true }, + { "nzt.team", true }, + { "nzt.technology", true }, + { "nzt.tools", true }, + { "nzt.ventures", true }, + { "nztcap.com", true }, + { "nztcap.de", true }, + { "nztcapital.com", true }, + { "nztcapital.de", true }, + { "nztcapital.net", true }, + { "nztfoundation.com", true }, + { "nztholdings.com", true }, + { "nztproperties.com", true }, + { "nztservices.com", true }, + { "nzttechnology.com", true }, + { "nzttools.com", true }, + { "nzttools.net", true }, + { "nztventures.com", true }, + { "nztventures.de", true }, + { "nztventures.net", true }, { "nzws.me", false }, { "o-aconsult.com", true }, { "o-results.ch", true }, { "o-s.no", true }, { "o-sp.com", true }, - { "o00228.com", false }, + { "o00228.com", true }, { "o0c.cc", true }, - { "o0o.st", false }, { "o15y.com", true }, { "o2oxy.cn", true }, { "o2ss.com", true }, @@ -52710,7 +53427,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oakparkoutdoorlighting.com", true }, { "oakshield.nl", true }, { "oakslighting.co.uk", true }, - { "oaktravel.nl", true }, { "oaktree-realtors.com", true }, { "oakwood-park.tk", true }, { "oanalista.com.br", true }, @@ -52735,9 +53451,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oberhofjuice.com", true }, { "obermeiers.eu", true }, { "oberoi.de", true }, + { "obery.com", true }, { "obesidadlavega.com", true }, { "obfuscate.xyz", true }, { "obg-global.com", true }, + { "obg.ceo", true }, { "obgalslancaster.com", true }, { "obgynmiamifl.com", true }, { "obioncountytn.gov", true }, @@ -52761,6 +53479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "obs.group", true }, { "obscur.us", true }, { "obscureware.xyz", true }, + { "observer.com", true }, { "observer.name", true }, { "obsessedwithknives.ru", true }, { "obsessharness.com", true }, @@ -52770,14 +53489,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "obuchowicz.pl", true }, { "obud.cz", true }, { "obxlistings.com", true }, - { "obyvateleceska.cz", true }, { "obzor-znakomstv.tk", true }, { "obzoroff.asia", true }, { "obzoroff.info", true }, { "oc-minecraft.com", true }, { "oc-sa.ch", false }, { "ocachik.com.br", true }, - { "ocad.com.au", true }, { "ocalaflwomenshealth.com", true }, { "ocapic.com", true }, { "ocarupo.com", true }, @@ -52792,7 +53509,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocd2016.com", true }, { "ocdadmin.com", true }, { "oceanbreezehomes.com", true }, - { "oceancity4sales.com", true }, { "oceandns.eu", true }, { "oceandns.net", true }, { "oceandns.nl", true }, @@ -52826,6 +53542,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocrn.nl", true }, { "ocsigroup.fr", true }, { "octa.store", true }, + { "octagon.institute", true }, + { "octagongroup.co", true }, { "octane.net.au", true }, { "octarineparrot.com", true }, { "octav.name", true }, @@ -52836,6 +53554,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "octocaptcha.com", true }, { "octod.tk", true }, { "octohedralpvp.tk", true }, + { "octohost.net", true }, { "octolopagon.games", true }, { "octopoos.com", true }, { "octopoos.org", true }, @@ -52876,7 +53595,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "odpikedoslike.com", true }, { "odtu.lu", true }, { "oducs.org", true }, - { "odvps.com", true }, { "odysea.cat", true }, { "odyssey44.com", true }, { "odysseyofthemind.eu", true }, @@ -52966,6 +53684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ogkw.de", true }, { "oglen.ca", true }, { "ogo-knigi.ml", true }, + { "ogretmenimsanat.com", true }, { "oguya.ch", true }, { "ogyaa.jp", true }, { "oh-leg.com", true }, @@ -53044,10 +53763,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "okburrito.com", true }, { "okchousebuyer.com", true }, { "okeeferanch.ca", true }, + { "okewp.com", true }, { "okhrana.agency", true }, { "okib.ca", true }, { "okinawa-mag.net", true }, { "okkhor52.com", true }, + { "okkur.community", true }, + { "okkur.dev", true }, + { "okkur.io", true }, + { "okkur.net", true }, + { "okkur.org", true }, + { "okkur.team", true }, + { "okkurlabs.com", true }, { "oklahomafibroids.com", true }, { "oklahomamoversassociation.org", true }, { "oklahomanotepro.com", true }, @@ -53062,9 +53789,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "okpo.tk", true }, { "okqubit.net", true }, { "oksafe-t.org", true }, + { "oktave.co", true }, { "oktayincesuturizm.com", true }, { "oktime.cz", true }, - { "oku-nara.com", true }, + { "okukan.com.au", true }, { "okulistiyoruz.tk", true }, { "okurapictures.com", true }, { "okusiassociates.com", true }, @@ -53133,7 +53861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olinux.fr", true }, { "oliode.tk", true }, { "olitham.com", true }, - { "olive.my", true }, { "olivejs.com", true }, { "olivemultispecialist.com", true }, { "oliveoil.bot", true }, @@ -53152,7 +53879,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oliverst.com", true }, { "olivia-smith.com", true }, { "olivier-rochet.com", true }, - { "olivierberardphotographe.com", true }, + { "olivierberardphotographe.com", false }, { "olivierpieters.be", true }, { "oliviervaillancourt.com", true }, { "olivlabs.com", true }, @@ -53192,14 +53919,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "om.yoga", true }, { "om1.com", true }, { "omaedu.ro", true }, - { "omahmebel.com", true }, + { "omaharoofpros.com", true }, { "omangrid.com", true }, { "omanko.porn", false }, { "omaosurveys.org", true }, { "omarh.net", true }, + { "omarpalos.com", true }, { "omarsamarah.tk", true }, { "omdesign.cz", false }, { "omega-gaming.online", true }, + { "omega-intranet.com", true }, { "omega-marijuana.com", true }, { "omegahosting.net", true }, { "omegarazer.ca", true }, @@ -53236,13 +53965,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "omny.info", true }, { "omoide-hitokoto.com", true }, { "omorashi.org", false }, - { "omori.ch", true }, { "omoteura.com", true }, { "omranic.com", true }, { "omronwellness.com", true }, { "omsdieppe.fr", true }, { "omshivalab.com", true }, { "omsk-web.ml", true }, + { "omskit.ru", false }, { "omsknews.tk", true }, { "omskrock.com", true }, { "omskweb.tk", true }, @@ -53258,7 +53987,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onaboat.se", true }, { "onahonavi.com", true }, { "onair.ovh", true }, - { "onarto.com", true }, { "onazikgu.com", true }, { "onbuzzer.com", false }, { "oncalltech.net", true }, @@ -53318,6 +54046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oneononeonone.tv", true }, { "onepercentrentals.com", true }, { "onepersona.io", true }, + { "oneplaykh.com", true }, { "onepointsafeband.ca", true }, { "onepointsafeband.com", true }, { "onepointzero.com", true }, @@ -53358,6 +54087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onionscan.org", true }, { "onionyst.com", true }, { "oniria.ch", false }, + { "oniriamultimedia.com", true }, { "onix.eu.com", true }, { "onixcco.com.br", true }, { "onkentessegertdij.hu", true }, @@ -53380,6 +54110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "online.swedbank.se", true }, { "online24.pt", true }, { "onlineautodealered.com", true }, + { "onlinebcs.com", true }, { "onlinebiller.com", true }, { "onlinecasinobluebook.com", true }, { "onlinecasinolisboa.com", true }, @@ -53387,6 +54118,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinecensorship.org", true }, { "onlinecollegeessay.com", true }, { "onlinedemo.hu", true }, + { "onlinedivorce.com", true }, { "onlinefashion.it", true }, { "onlinehaircuts.com", true }, { "onlinehashfollow.com", true }, @@ -53401,6 +54133,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinemarketingtraining.co.uk", true }, { "onlinemoviewatch.org", true }, { "onlinepokerspelen.be", true }, + { "onlineporno.cc", true }, { "onlineprofecional.com", true }, { "onlineradio.pp.ua", true }, { "onlinesports.tk", true }, @@ -53492,9 +54225,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ookjesprookje.nl", true }, { "oolsa.net", true }, { "oomepu.com", true }, + { "oonne.com", true }, { "ooo-santal.ml", true }, { "ooonja.de", true }, { "oopsis.com", true }, + { "oorbellen.nl", true }, { "oortcast.com", true }, { "oosm.org", true }, { "oosolutions.nl", true }, @@ -53508,6 +54243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "opale-concept.com", true }, { "opalesurfcasting.net", true }, { "oparl.org", true }, + { "opatut.de", false }, { "opbedbugcanines.com", true }, { "opcare.co.uk", true }, { "opcenter.de", true }, @@ -53598,6 +54334,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "openshippers.com", true }, { "opensource-cms.nl", true }, { "opensource-training.de", true }, + { "opensource.fund", true }, + { "opensourcesoftware.rocks", true }, { "opensourcesurvey.org", true }, { "openspa.webhop.info", true }, { "openssl.org", true }, @@ -53620,11 +54358,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "operanavigation.ro", true }, { "operationforever.com", true }, { "operationkiwi.work", true }, - { "operr.com", true }, - { "operrbilling.com", true }, - { "operrgroup.com", true }, - { "operrhealth.com", true }, - { "operrtel.com", true }, + { "operr.com", false }, + { "operrbilling.com", false }, + { "operrgroup.com", false }, + { "operrhealth.com", false }, { "opexterminating.com", true }, { "opfin.com", true }, { "opiates.ca", true }, @@ -53671,6 +54408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oprueba.com", true }, { "opryshok.com", true }, { "ops-com.com", true }, + { "ops.ai", true }, { "ops.com.pl", true }, { "opskiwi.work", true }, { "opsmate.com", false }, @@ -53710,17 +54448,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "optmos.at", true }, { "optoutday.de", true }, { "opture.ch", true }, - { "opure.ru", true }, { "opus-codium.fr", true }, { "opus-consulting.no", true }, { "opvakantie-noorwegen.nl", true }, { "opvakantie-zweden.nl", true }, + { "opztechwall.com", true }, { "oqpo.ru", true }, { "oqrqtn7ynmgc7qrgwd-ubhdvfiymfbjrh5ethdti8.com", false }, { "oqwebdesign.com", true }, { "orablanket.co.nz", true }, { "oralb.co.uk", true }, { "orang-utans.com", true }, + { "orangeacademy.cz", true }, { "orangecat.tw", true }, { "orangecomputers.com", true }, { "orangefab.asia", true }, @@ -53735,6 +54474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orangutan-appeal.org.uk", true }, { "orangutan.org", true }, { "oranjee.net", false }, + { "oratto.co.uk", true }, { "orbeimaginario.com", true }, { "orbitabaja.com", true }, { "orbital3.com", true }, @@ -53777,6 +54517,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orf-kartentausch.at", false }, { "orfelios.com", true }, { "orfeo-engineering.ch", true }, + { "organdonor.gov", true }, { "organica.co.za", true }, { "organisatieteam.nl", true }, { "organisationsberatung-jacobi.de", true }, @@ -53786,7 +54527,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orgoniteindonesia.com", true }, { "orgsyn.in", true }, { "orgyporngroup.com", true }, - { "orhideous.name", true }, { "orians.eu", true }, { "oribia.net", true }, { "oricejoc.com", false }, @@ -53831,7 +54571,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ortho-europe.com", true }, { "ortho-graz.at", true }, { "orthocop.cz", true }, + { "orthodocspro.com", true }, { "orthodontiste-geneve-docteur-rioux.com", false }, + { "orthodoxy.lt", false }, { "orthograph.ch", true }, { "orthotictransfers.com", true }, { "ortizmario.com", true }, @@ -53857,6 +54599,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "osci.io", true }, { "oscillation-services.fr", true }, { "oscloud.com", true }, + { "oscreen.ru", true }, { "osdls.gov", true }, { "osepideasthatwork.org", true }, { "osereso.tn", true }, @@ -53865,6 +54608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oshayr.com", true }, { "oshea.cc", true }, { "oshell.me", true }, + { "oshershalom.com", true }, { "oshrc.gov", true }, { "osielnava.com", true }, { "osimmo.fr", true }, @@ -53874,10 +54618,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oskrba.online", true }, { "oskuro.net", true }, { "osla.org", true }, + { "osledvan.com", true }, { "oslinux.net", true }, { "osm.is", true }, { "osm.ovh", true }, - { "osmani-gebaeudereinigung.de", false }, + { "osmani-gebaeudereinigung.de", true }, { "osmanlitorunu.com", true }, { "osmdroid.net", true }, { "osmosis.org", true }, @@ -53914,6 +54659,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oswbouncycastles.co.uk", true }, { "osx86spain.com", true }, { "oszri.hu", true }, + { "ota365.com", true }, { "otakubox.de", true }, { "otakurepublic.com", true }, { "otakurumi.de", true }, @@ -53960,7 +54706,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "otzyvy2.ru", true }, { "ouaibe.qc.ca", true }, { "ouattara.ch", true }, - { "ouest-annonces.com", true }, { "ouestfrance-auto.pro", true }, { "ouestsolutions.com", true }, { "ouglor.com", true }, @@ -53978,6 +54723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ourevents.net", true }, { "ourfavorite-kakamigahara.jp", true }, { "ourladymountcarmel.net", true }, + { "ourladymtcarmel.org", true }, { "ourladyofcalvary.org", true }, { "ourladyoftheassumptionchurch.org", true }, { "ourladyqueenofmartyrs.org", true }, @@ -54036,7 +54782,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ovabastecedoraindustrial.com", true }, { "ovejabohemia.com", true }, { "ovelhaostra.com", false }, - { "overamsteluitgevers.nl", true }, { "overclockers.ge", true }, { "overdrive-usedcars.be", false }, { "overframe.gg", true }, @@ -54056,7 +54801,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "overstemmen.nl", true }, { "overstockpromote.com", true }, { "overthecloud.it", true }, - { "overthinkingit.com", true }, { "overwall.org", true }, { "overwatchss.club", true }, { "overzicht.pro", true }, @@ -54096,6 +54840,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "owntournament.org", true }, { "oxanababy.com", true }, { "oxborrow.ca", true }, + { "oxegenmedia.com", true }, { "oxelie.com", false }, { "oxfordbio.com", true }, { "oxfordurgentclinic.com", true }, @@ -54113,6 +54858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oxyx.tk", true }, { "oxz.me", true }, { "oxzeth3sboard.com", true }, + { "oyama-conf.com", true }, { "oyashirosama.tokyo", true }, { "oyesunn.com", true }, { "oyk13tyuj8ljpete31edj2tes-9if7bi.com", false }, @@ -54122,7 +54868,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oysterworldwide.com", true }, { "oyungg.net", true }, { "oyunmadeni.tk", true }, - { "oyunpat.com", true }, { "oz-style.com", true }, { "ozalp.dk", true }, { "ozark.be", true }, @@ -54132,6 +54877,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ozonstyle.ga", true }, { "ozvolvo.org", true }, { "p-0.me", true }, + { "p-art.design", true }, { "p-damda.com", true }, { "p-mint.jp", true }, { "p-p.site", true }, @@ -54148,72 +54894,72 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p22.co", true }, { "p2d.ru", true }, { "p30365.com", true }, - { "p333a.net", false }, - { "p333aa.com", false }, - { "p333aaa.com", false }, - { "p333b.com", false }, - { "p333b.net", false }, - { "p333bb.com", false }, - { "p333bbb.com", false }, - { "p333c.com", false }, - { "p333c.net", false }, - { "p333cc.com", false }, - { "p333ccc.com", false }, - { "p333d.com", false }, - { "p333d.net", false }, - { "p333ddd.com", false }, - { "p333e.com", false }, - { "p333e.net", false }, - { "p333ee.com", false }, - { "p333f.com", false }, - { "p333f.net", false }, - { "p333ff.com", false }, - { "p333fff.com", false }, - { "p333g.com", false }, - { "p333g.net", false }, - { "p333ggg.com", false }, - { "p333h.com", false }, - { "p333h.net", false }, - { "p333hh.com", false }, + { "p333a.net", true }, + { "p333aa.com", true }, + { "p333aaa.com", true }, + { "p333b.com", true }, + { "p333b.net", true }, + { "p333bb.com", true }, + { "p333bbb.com", true }, + { "p333c.com", true }, + { "p333c.net", true }, + { "p333cc.com", true }, + { "p333ccc.com", true }, + { "p333d.com", true }, + { "p333d.net", true }, + { "p333ddd.com", true }, + { "p333e.com", true }, + { "p333e.net", true }, + { "p333ee.com", true }, + { "p333f.com", true }, + { "p333f.net", true }, + { "p333ff.com", true }, + { "p333fff.com", true }, + { "p333g.com", true }, + { "p333g.net", true }, + { "p333ggg.com", true }, + { "p333h.com", true }, + { "p333h.net", true }, + { "p333hh.com", true }, { "p333hhh.com", true }, - { "p333i.com", false }, - { "p333i.net", false }, - { "p333ii.com", false }, - { "p333iii.com", false }, - { "p333j.com", false }, - { "p333j.net", false }, - { "p333jj.com", false }, - { "p333jjj.com", false }, - { "p333k.com", false }, - { "p333kk.com", false }, - { "p333kkk.com", false }, - { "p333l.com", false }, - { "p333ll.com", false }, - { "p333lll.com", false }, - { "p333m.com", false }, - { "p333mm.com", false }, - { "p333mmm.com", false }, - { "p333n.com", false }, - { "p333nn.com", false }, - { "p333nnn.com", false }, - { "p333o.com", false }, - { "p333oo.com", false }, - { "p333ooo.com", false }, - { "p333q.com", false }, - { "p333qq.com", false }, - { "p333qqq.com", false }, - { "p333r.com", false }, - { "p333rr.com", false }, - { "p333rrr.com", false }, - { "p333s.com", false }, - { "p333sss.com", false }, - { "p333t.com", false }, - { "p333ttt.com", false }, - { "p333u.com", false }, - { "p333v.com", false }, - { "p333w.com", false }, - { "p333x.com", false }, - { "p333y.com", false }, + { "p333i.com", true }, + { "p333i.net", true }, + { "p333ii.com", true }, + { "p333iii.com", true }, + { "p333j.com", true }, + { "p333j.net", true }, + { "p333jj.com", true }, + { "p333jjj.com", true }, + { "p333k.com", true }, + { "p333kk.com", true }, + { "p333kkk.com", true }, + { "p333l.com", true }, + { "p333ll.com", true }, + { "p333lll.com", true }, + { "p333m.com", true }, + { "p333mm.com", true }, + { "p333mmm.com", true }, + { "p333n.com", true }, + { "p333nn.com", true }, + { "p333nnn.com", true }, + { "p333o.com", true }, + { "p333oo.com", true }, + { "p333ooo.com", true }, + { "p333q.com", true }, + { "p333qq.com", true }, + { "p333qqq.com", true }, + { "p333r.com", true }, + { "p333rr.com", true }, + { "p333rrr.com", true }, + { "p333s.com", true }, + { "p333sss.com", true }, + { "p333t.com", true }, + { "p333ttt.com", true }, + { "p333u.com", true }, + { "p333v.com", true }, + { "p333w.com", true }, + { "p333x.com", true }, + { "p333y.com", true }, { "p333z.com", false }, { "p365.vip", false }, { "p36533.com", true }, @@ -54236,6 +54982,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p81365.com", true }, { "p82365.com", true }, { "p888010.com", false }, + { "p9165.com", true }, + { "p91aa.com", true }, { "p9297.co", true }, { "p9721.com", true }, { "p9728.co", true }, @@ -54307,6 +55055,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "packagist.jp", true }, { "packagist.org", false }, { "packaware.com", true }, + { "packer.io", false }, { "packetapp.ru", true }, { "packetcrash.net", true }, { "packetdigital.com", true }, @@ -54322,7 +55071,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "padberx-marketing-consultants.de", true }, { "paddy.rocks", true }, { "padelbox.de", true }, - { "padeoe.com", true }, { "pader-deko.de", true }, { "padkit.org", true }, { "padpilot.co", true }, @@ -54370,12 +55118,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pahealthbilling.com", true }, { "pahlawanpulsa.com", true }, { "paichai.space", false }, + { "paidikasymeon.gr", true }, { "paiementdp.com", true }, + { "paigejulianne.com", true }, { "paincareehr.com", true }, { "paindata.dk", true }, { "painefamily.co.uk", true }, + { "painetcompagnie.fr", true }, { "painosso.org", true }, { "paint-it.pink", true }, + { "paint4.life", true }, { "paintball-ljubljana.si", true }, { "paintball-shop.sk", true }, { "paintbrush.ga", true }, @@ -54402,7 +55154,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paknetworking.org", true }, { "pakremit.com", true }, { "paktolos.net", true }, - { "palapadev.com", true }, + { "palabr.as", true }, { "palariviera.com", true }, { "palary.work", true }, { "palatetotable.com", true }, @@ -54413,7 +55165,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "palavalbasket.it", true }, { "palavatv.com", true }, { "palawan.jp", false }, - { "palazzo.link", true }, { "palazzo.work", true }, { "palazzotalamo.it", true }, { "palebluedot.de", true }, @@ -54482,6 +55233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "panaxis.li", true }, { "panda-community.com", true }, { "panda.tf", true }, + { "pandagifts.co", false }, { "pandahut.net", true }, { "pandaltd.nl", false }, { "pandapsy.com", true }, @@ -54716,7 +55468,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "partshop.be", true }, { "parturi-manner.fi", false }, { "partusedtyres.net", true }, - { "party-and-play.co.uk", true }, { "party-kneipe-bar.com", true }, { "party-time-inflatables-durham.co.uk", true }, { "partyausstatter24.de", true }, @@ -54776,7 +55527,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "passionatefoodie.co.uk", true }, { "passionatehorsemanship.com", true }, { "passionatelife.com.au", true }, - { "passiondesigns.web.id", true }, { "passionebenessere.com", true }, { "passionfiat.fr", true }, { "passionpictures.eu", true }, @@ -54897,6 +55647,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulbdelaat.nl", true }, { "paulbramhall.uk", true }, { "paulbrown.ddns.net", true }, + { "paulchen.at", false }, { "paulcloud.fr", true }, { "paulcoldren.org", true }, { "paulcooper.me.uk", true }, @@ -54910,6 +55661,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulmeier.com", false }, { "pauloalcobianeves.pt", true }, { "paulocolacino.tk", true }, + { "paulomonteiro.pt", true }, { "paulorochago.com.br", true }, { "paulov.com", true }, { "paulov.info", true }, @@ -55047,7 +55799,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pcidss.hu", true }, { "pcisecuritystandards.org", true }, { "pcissc.org", true }, - { "pcjsercon.com", true }, { "pckurzypd.sk", true }, { "pclaeuft.de", true }, { "pclob.gov", true }, @@ -55083,6 +55834,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pdkrawczyk.com", true }, { "pdox.net", true }, { "pdragt.com", true }, + { "pdstudios.cz", true }, + { "pdtech.ltd", true }, { "pdthings.net", true }, { "pdxdeli.com", true }, { "pdxtowncar.net", true }, @@ -55094,7 +55847,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peaceispossible.cc", true }, { "peacekeeper.tk", true }, { "peaceloveandlabor.com", true }, - { "peakhomeloan.com", true }, { "peakslead.com", true }, { "peaksloth.com", true }, { "peakvets.co.uk", true }, @@ -55120,7 +55872,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pedago.it", true }, { "pedaleuse.be", true }, { "pedalsbarcelona.com", true }, - { "peddock.com", true }, { "peddy.dyndns.org", true }, { "pediatersucha.sk", true }, { "pedicurean.nl", true }, @@ -55171,6 +55922,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peetah.com", true }, { "peeters.io", true }, { "peev.io", true }, + { "pefricea.com", true }, { "pegas-studio.net", true }, { "peifi.de", false }, { "peippo.at", true }, @@ -55192,6 +55944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pelotonimports.com", true }, { "peluqueriaalcobendas.com", true }, { "peluqueriaalcobendas.es", true }, + { "pem-jp.co.uk", true }, { "pemagrid.org", true }, { "pemborongbangunan.id", true }, { "pems.gov.au", true }, @@ -55219,7 +55972,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "penispumpen.se", true }, { "pennergold.net", true }, { "pennington.io", true }, - { "pennyparkerpaper.com", true }, { "penrithapartments.com.au", true }, { "pens.com", true }, { "pensacolawinterfest.org", true }, @@ -55240,7 +55992,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pentatec.de", true }, { "pentechealth.com", true }, { "pentest.blog", true }, - { "pentest.nl", true }, { "pentesterlab.com", true }, { "pentestit.com", true }, { "pentofun.ch", true }, @@ -55271,6 +56022,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pequenosfavoritos.com.br", false }, { "per-olsson.se", true }, { "perala.me", true }, + { "perantiguru.com", true }, { "peraparker.cz", true }, { "perceptivemeded.com", true }, { "percolate.com", true }, @@ -55316,7 +56068,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "periodismoactual.com", true }, { "periscope.tv", true }, { "perishablepress.com", true }, - { "perka.com", true }, { "perlbanjo.com", true }, { "perm-avia.ru", true }, { "perm-jur.ch", true }, @@ -55341,7 +56092,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "perpetualemotion.com", true }, { "perrau.lt", true }, { "perron.ml", true }, - { "perrone.co", true }, { "perroquet-passion.ch", false }, { "pers-hr.tk", true }, { "persefonne.com", true }, @@ -55395,6 +56145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "petcarvers.com", true }, { "petech.ro", true }, { "petelew.is", true }, + { "peter-hennes.de", true }, { "peter-hurtenbach.de", false }, { "peter-r.co.uk", true }, { "peter.org.ua", true }, @@ -55408,6 +56159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterfiorella.com", true }, { "peterfolta.net", true }, { "peterheery.me", true }, + { "peterhennes.de", true }, { "peterhons.com.au", true }, { "peterhuetz.at", true }, { "peterhuetz.com", true }, @@ -55417,6 +56169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterkshultz.com", false }, { "peterlew.is", true }, { "petermaar.com", true }, + { "peternagy.ie", true }, { "peters.consulting", true }, { "peterslavik.com", true }, { "petersontoscano.com", true }, @@ -55462,7 +56215,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "petruzz.net", true }, { "petschnighof.at", true }, { "petstoredog.com", true }, - { "pettitcoat.com", true }, { "petto.com.co", true }, { "peturnashes.ga", true }, { "petwall.info", true }, @@ -55484,18 +56236,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pfarreiengemeinschaft-neuerburg.de", true }, { "pfcafeen.dk", true }, { "pfd-nz.com", false }, + { "pfdevroye.com", true }, { "pfefferkuchen-shop.de", true }, { "pfefferkuchenprinzessin-dresden.de", true }, { "pferdesportclub-chiemgau.de", true }, { "pfeuffer-elektro.de", true }, { "pfft.net", true }, + { "pfish.zone", true }, { "pfk.org.pl", true }, { "pflan.dk", true }, { "pflanzen-shop.ch", true }, { "pflanzenshop-emsland.de", true }, { "pfmeasure.com", true }, - { "pfnext.de", true }, { "pfolta.net", true }, + { "pfonks.com", true }, { "pfotentour-berlin.de", true }, { "pfrost.me", true }, { "pfstaging.xyz", true }, @@ -55552,22 +56306,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phelx.de", true }, { "phen-garcinia.info", true }, { "phenixairsoft.com", true }, + { "phenonline.com", true }, { "phenq.com", true }, { "pheramoan.com", true }, { "pheramoans.com", true }, { "phero.com", true }, { "pheroforce.com", true }, { "pherologie.com", true }, - { "pherology.com", true }, { "pheromeon.com", true }, { "pheromeons.com", true }, { "pheromoans.com", true }, { "pheromoen.com", true }, { "pheromoens.com", true }, + { "pheromones.co", true }, + { "pheromonetalk.com", true }, { "pheromonez.com", true }, { "pheronome.com", true }, { "pheronomes.com", true }, { "pheros.com", true }, + { "pherotalk.com", true }, { "pheroz.com", true }, { "phget.com", true }, { "phi-works.com", true }, @@ -55597,6 +56354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "philippbirkholz.de", true }, { "philippe-metayer-platrier.fr", true }, { "philippebonnard.fr", true }, + { "philippegoffin.be", true }, { "philipperoose.be", false }, { "philippestudiopro.com", true }, { "philippheenen.de", false }, @@ -55609,6 +56367,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phillipgoldfarb.com", true }, { "phillippe-lemarc.ch", true }, { "phillippi.me", true }, + { "philly-injury-law.com", true }, { "philna.sh", true }, { "philo.shop", true }, { "philomathiclife.com", true }, @@ -55685,6 +56444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "photosoftware.nl", true }, { "photosquare.com.tw", false }, { "phototravel.uk", true }, + { "phototrio.com", true }, { "photoutils.com", true }, { "phoxden.net", true }, { "phoxmeh.com", true }, @@ -55716,8 +56476,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phuket-idc.com", true }, { "phuket-idc.de", true }, { "phuket-nash.ga", true }, + { "phuket-rawai.school", true }, { "phukienchanh.com", true }, { "phulyshop.com", true }, + { "phumin.in.th", true }, { "phuoctran.com", true }, { "phuoctran.com.vn", true }, { "phuoctran.me", true }, @@ -55735,6 +56497,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "physik.hu", true }, { "physiobiggerawaters.com.au", true }, { "physiobroadbeach.com.au", true }, + { "physioteam-franz.de", true }, { "physiotherapie-seiwald.de", true }, { "physiovesenaz.ch", false }, { "pi-control.de", true }, @@ -55750,6 +56513,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pianos.de", true }, { "pianyigou.com", true }, { "piasto.com.cy", true }, + { "piata.com.br", true }, { "piatika.com", true }, { "piazzafrancesco.com", true }, { "piboubes.me", true }, @@ -55843,7 +56607,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pijusmagnificus.com", true }, { "pik.bzh", true }, { "pikafederation.ca", true }, - { "pikboxstore.com", true }, { "piken.eu", true }, { "pikimusic.moe", true }, { "pikio.pl", true }, @@ -55858,6 +56621,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "piliszek.net", true }, { "pill.id", true }, { "pillitteriobgyn.com", true }, + { "pillowcast.net", true }, { "pillowfort.pub", true }, { "pilot-colleges.com", true }, { "pilot.co", false }, @@ -55888,6 +56652,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinemountainnursery.com.au", true }, { "pinemountbaptistchurch.org", true }, { "pinetopazrealestate.com", true }, + { "pingu.info", true }, { "pingworks.com", true }, { "pingworks.de", true }, { "pingworks.eu", true }, @@ -55946,6 +56711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pipeuro.com", true }, { "pipfrosch.com", true }, { "pippenainteasy.com", true }, + { "piprotec.com", true }, { "pipscprd.ca", true }, { "piraeuspress.gr", true }, { "piramalglassusa.com", true }, @@ -56003,7 +56769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pistonkandidatu.tk", true }, { "pistonpowered.com", true }, { "pisupp.ly", true }, - { "pitaiabank.com", true }, { "pitaiatrade.com", true }, { "pitbooks.ga", true }, { "pitbullsecuritysolutions.ca", true }, @@ -56099,28 +56864,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pj21k.com", true }, { "pj21kk.com", false }, { "pj21m.com", true }, - { "pj21n.com", false }, - { "pj21o.com", false }, - { "pj21p.com", false }, - { "pj21q.com", false }, - { "pj21r.com", false }, - { "pj21s.com", false }, - { "pj21t.com", false }, - { "pj21tt.com", false }, - { "pj21v.com", false }, - { "pj21w.com", false }, - { "pj21x.com", false }, - { "pj21y.com", false }, - { "pj21z.com", false }, - { "pj4488.cc", false }, + { "pj21n.com", true }, + { "pj21o.com", true }, + { "pj21p.com", true }, + { "pj21q.com", true }, + { "pj21r.com", true }, + { "pj21s.com", true }, + { "pj21t.com", true }, + { "pj21tt.com", true }, + { "pj21v.com", true }, + { "pj21w.com", true }, + { "pj21x.com", true }, + { "pj21y.com", true }, + { "pj21z.com", true }, + { "pj4488.cc", true }, { "pj539999.com", true }, { "pj5588.cc", true }, { "pj83.duckdns.org", true }, { "pjax.xyz", true }, { "pjentertainments.co.uk", true }, + { "pjgj16.com", true }, { "pjleisure.co.uk", true }, { "pjo.no", true }, - { "pjp.com.mt", true }, { "pjshop.cf", true }, { "pjuu.com", false }, { "pjylb.com", true }, @@ -56135,6 +56900,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pkdhungthinh.com", true }, { "pkeus.de", true }, { "pkgt.de", false }, + { "pkgviewer.com", true }, { "pkirwan.com", true }, { "pkisolutions.com", true }, { "pko.ch", false }, @@ -56238,6 +57004,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plassmann.ws", true }, { "plastdesign.com.ua", true }, { "plastic-id.com", true }, + { "plastic2print.com", true }, { "plasticbags.co.uk", true }, { "plasticosbiobasados.com", true }, { "plasticstare.com", true }, @@ -56252,6 +57019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "platformadmin.com", true }, { "platformlms.org", true }, { "platinapump.com", true }, + { "platinumexpress.com.ar", true }, { "platomania.eu", true }, { "platomania.nl", true }, { "platten-nach-mass.de", true }, @@ -56273,7 +57041,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "playelephant.com", true }, { "playerdb.co", true }, { "playerhunter.com", false }, - { "players2gather.com", true }, { "playfinder.com", true }, { "playform.cloud", false }, { "playhappywheelsunblocked.com", true }, @@ -56346,7 +57113,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ploi.io", true }, { "plokko.com", true }, { "plongee-phuket.fr", true }, - { "plot.ly", true }, { "plotbubble.com", true }, { "ploxel.com", true }, { "plr4wp.com", true }, @@ -56391,6 +57157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plusreed.com", true }, { "plussizereviews.com", true }, { "plusstreamfeed.appspot.com", true }, + { "plustream.com", true }, { "pluta.net", true }, { "pluth.org", true }, { "plutiedev.com", true }, @@ -56404,6 +57171,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plzz.de", true }, { "pm-onboarding-external-dev.azurewebsites.net", true }, { "pm-partners-management-dev.azurewebsites.net", true }, + { "pm.gov.au", true }, { "pm.link", true }, { "pm.me", true }, { "pm13.cz", true }, @@ -56441,6 +57209,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pmsacorp.com", true }, { "pmsf.eu", true }, { "pmsfdev.com", true }, + { "pmsoft.nl", false }, { "pmt-documenten.nl", true }, { "pn.id.lv", true }, { "pnakosoft.com", true }, @@ -56449,7 +57218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pneu01.fr", true }, { "pneu74.fr", true }, { "pneuhaus-lemp.ch", true }, - { "pnfc.re", true }, + { "pneumogalati.ro", true }, { "pnimmobilier.ch", false }, { "pnnl.gov", true }, { "pnoec.org.do", true }, @@ -56575,7 +57344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pocitacezababku.cz", true }, { "pocketfruity.com", true }, { "pocketinsure.com", true }, - { "pocketmemories.net", true }, { "pocketpasta.com", true }, { "pocobelli.ch", false }, { "pocpok.com", true }, @@ -56612,6 +57380,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pogotowiekomputeroweolsztyn.pl", true }, { "pogrebisky.net", true }, { "pogs.us", true }, + { "pohatta.com", true }, { "pohlednice-tap.cz", true }, { "pohlmann.io", true }, { "poiema.com.sg", false }, @@ -56657,6 +57426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pokerking.club", true }, { "pokerslab.com", true }, { "pokl.cz", true }, + { "pokoleniebar.ru", true }, { "pokrowcecardo.pl", true }, { "polaire.org", true }, { "polan.tk", true }, @@ -56672,7 +57442,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "police-schools.com", true }, { "policereferencecheck.com", true }, { "policesromandesrecrutement.ch", true }, - { "policyreporter.com", false }, + { "policyreporter.com", true }, { "policyreporter.us", true }, { "polimer39.ml", true }, { "polinet.de", true }, @@ -56688,6 +57458,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polish.directory", true }, { "polishforums.com", false }, { "polishmarriage.org", true }, + { "polishmodels.net", true }, { "polishtranslation.com", true }, { "polishwomen.com", true }, { "polisipati.tk", true }, @@ -56809,7 +57580,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "popoway.me", true }, { "popoway9.ml", true }, { "poppetsphere.de", true }, - { "poppincurls.com", true }, { "populardogs.gq", true }, { "population-ethics.com", true }, { "popup-stores.online", true }, @@ -56857,6 +57627,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pornofilme.top", true }, { "pornofilmovi.us", true }, { "pornohub.su", true }, + { "pornokran.com", true }, { "pornolab.su", true }, { "pornolarizlehd.com", true }, { "pornomens.be", true }, @@ -56864,7 +57635,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pornovk.xxx", true }, { "pornport.org", true }, { "pornshop.biz", true }, - { "pornskyhub.com", true }, { "pornsocket.com", true }, { "pornspider.to", true }, { "pornstop.net", true }, @@ -56928,6 +57698,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "poshcastles.co.uk", true }, { "poshlashes.se", true }, { "poshsecurity.com", true }, + { "poshvine.com", true }, { "posijson.stream", true }, { "positionus.io", true }, { "positive.com.cy", true }, @@ -56969,6 +57740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "postfinance.ch", true }, { "postimages.org", true }, { "postimg.cc", true }, + { "postman.com.ng", true }, { "postmatescode.com", true }, { "postmistress.email", true }, { "postmusicologia.tk", true }, @@ -56981,6 +57753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "posyperfume.com", true }, { "potatiz.com", true }, { "potato.im", true }, + { "potatofrom.space", true }, { "potatopro.com", true }, { "potatotee.com", true }, { "potature.it", true }, @@ -57011,14 +57784,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "potworowski.de", true }, { "potz.tk", true }, { "potzwonen.nl", true }, + { "pouchdog.com", true }, { "poudlard.fr", true }, { "pouet.it", false }, { "pouets.ovh", true }, { "poundgatepark.co.uk", true }, { "poundwholesale.co.uk", true }, + { "poupee.me", true }, { "pourlesenfants.info", true }, { "pouwels-oss.nl", true }, - { "povarchik.com", true }, { "povareschka.ru", true }, { "povesham.tk", true }, { "povmacrostabiliteit.nl", true }, @@ -57056,6 +57830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "powersergunited.org", true }, { "powersergusercontent.com", true }, { "powershellmagic.com", true }, + { "powertoolsrater.net", true }, { "powerwellness-korecki.de", true }, { "pozarevac.tk", true }, { "pozd.tk", true }, @@ -57081,6 +57856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pp9728.co", true }, { "ppcrestaurants.com", true }, { "ppipe.net", true }, + { "ppissis.com.cy", true }, { "pplsoft.nl", true }, { "pplsvc.com", true }, { "ppmathis.ch", true }, @@ -57113,6 +57889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "practisforms.com", true }, { "practixdevelopment.com", true }, { "practo.com", true }, + { "practodev.com", true }, { "pradeek.tk", true }, { "praderarestaurant.co.uk", true }, { "prado.it", true }, @@ -57170,12 +57947,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "precedencemedia.com", true }, { "precept.uk.com", true }, { "preci0.com", true }, + { "preciodolarhoymexico.com", true }, { "preciouslife.fr", true }, { "preciscx.com", true }, { "preciseassemblies.com", true }, { "precision-tops.com", true }, { "precision.st", true }, { "precisionclan.com", true }, + { "precisioncoolingco.com", true }, { "precisiondigital-llc.com", true }, { "precisionhealthpilot.org", true }, { "precisionhockey.net", true }, @@ -57259,7 +58038,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "presbyterian-colleges.com", true }, { "prescotonline.co.uk", true }, { "presdesdunes.com", true }, + { "presenciainternet.com", true }, { "present-m.com", true }, + { "presentacionesweb.com", true }, { "presentationmedia.com", true }, { "preserveourhillcountry.org", true }, { "president.bg", true }, @@ -57312,9 +58093,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prgrmmr.nl", true }, { "pricegg.com", true }, { "priceholic.com", true }, + { "priceofdollar.com", true }, { "priceremoval.net", true }, { "pricesim.com", true }, { "pricesniffer.co", true }, + { "pricope-stefan.com", true }, { "prideindomination.com", true }, { "pridnestrovye.gq", true }, { "prielwurmjaeger.de", true }, @@ -57371,6 +58154,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "printserverpa.com", true }, { "printus.de", true }, { "prior-it.be", true }, + { "prior.cloud", true }, { "priorite-education.com", true }, { "priorityelectric-agourahills.com", true }, { "priorityelectric-calabasas.com", true }, @@ -57397,6 +58181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prismacloud.com", true }, { "prismacloud.green", true }, { "prismacloud.xyz", true }, + { "prismapixel.studio", true }, { "prisminfosys.com", true }, { "prismintl.org", true }, { "pristal.eu", true }, @@ -57405,7 +58190,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pritalk.com", true }, { "pritchett.xyz", true }, { "pritchi.tk", true }, - { "priv.gc.ca", true }, { "priv.im", true }, { "privacy-week-vienna.at", true }, { "privacy-week.at", true }, @@ -57416,7 +58200,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privacychick.io", true }, { "privacyforjournalists.org.au", true }, { "privacyget.tk", true }, - { "privacyinsights.nl", true }, { "privacyinternational.org", true }, { "privacymanatee.com", true }, { "privacynow.eu", true }, @@ -57484,13 +58267,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pro-lq.net", true }, { "pro-lq.ro", true }, { "pro-mile.pl", true }, - { "pro-netz.de", false }, { "pro-taucher.com", true }, { "pro-taucher.de", true }, { "pro-wiert.pl", true }, { "pro100systems.com.ua", true }, { "proact-it.co.uk", true }, { "proactive.run", true }, + { "proactivediscovery.com", true }, { "proactivenews.ml", true }, { "proactivestructuresolutions.com", true }, { "proactivo.digital", true }, @@ -57555,7 +58338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "produkt.cf", true }, { "produkttest-online.com", true }, { "produra.nl", true }, - { "prodwa.re", true }, { "prodware.fr", true }, { "prodware.nl", true }, { "proeflokaalbakker.nl", true }, @@ -57665,7 +58447,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "projectunity.io", true }, { "projectxparis.com", true }, { "projectxyz.eu", true }, - { "projekt-allianz.de", true }, { "projekt-umbriel.de", true }, { "projektarbeit-projektplanung.de", true }, { "projektzentrisch.de", true }, @@ -57711,7 +58492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "promoqueen.nl", true }, { "promorder.ru", true }, { "promoscuola.net", true }, - { "promosjungle.com", true }, { "promotech.pro", true }, { "promoterms.com.au", true }, { "promotioncentre.co.uk", true }, @@ -57781,18 +58561,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prosto-dengi.tk", true }, { "prostohobby.ru", true }, { "prostoporno.love", true }, + { "prostoporno.zone", true }, { "prostoskidki.ml", true }, { "prostye-recepty.com", true }, { "prosurveillancegear.com", true }, { "proteapower.co.za", true }, - { "protech.ge", true }, + { "protech.ge", false }, { "proteco.sk", true }, { "protectedpayments.net", true }, { "protectedreport.com", true }, { "protectem.de", true }, { "protectionformula.com.ua", true }, { "protectoraanimalesalicante.org", true }, - { "protectorlando.com", true }, { "protectr.de", false }, { "protectwrap.ml", true }, { "protege.moi", true }, @@ -57814,11 +58594,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "protogenbrainbooster.tk", true }, { "protonmail.ch", true }, { "protonmail.com", true }, + { "protonpix.com", true }, { "protonvpn.com", true }, { "prototypefund.de", true }, { "prototyping-computer.ml", true }, { "protoxin.net", false }, - { "protracks.ca", true }, + { "protracks.ca", false }, { "proudplus.com", true }, { "proust.ch", false }, { "proust.media", false }, @@ -57841,12 +58622,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "provinciaotlavoro.it", true }, { "provision-isr.nl", true }, { "provisionircd.tk", true }, + { "provitec.com", true }, { "provitec.de", true }, { "provlas.se", true }, { "prowindow.sk", true }, { "prowise.com", true }, { "prowise.me", true }, { "prowpcare.com", true }, + { "proximasrl.eu", true }, { "proximityradio.fr", true }, { "proximoconcurso.com.br", true }, { "proxirealtime.com", true }, @@ -57889,7 +58672,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prynhawn.com", true }, { "prynhawn.net", true }, { "prynhawn.org", true }, - { "prytkov.com", true }, { "przemas.pl", true }, { "przerabianiezdjec.pl", true }, { "ps-provider.co.jp", true }, @@ -57926,7 +58708,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psicologo-especialista-barcelona.com", true }, { "psicologo-infantil-barcelona.com", true }, { "psicometricas.mx", true }, - { "psicosalud.online", true }, { "psihotest.tk", true }, { "psinergy.info", true }, { "psinergyhealth.com", true }, @@ -57972,21 +58753,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psychologytests.tk", true }, { "psychometrictest.africa", true }, { "psychometrictest.ca", true }, + { "psychometrictest.co.il", true }, + { "psychometrictests.uk", true }, + { "psychometrischetests.de", true }, { "psychopathtest.com", true }, { "psychopersonnalite.com", true }, { "psychotechnique.africa", true }, { "psychotechnique.be", true }, { "psychotechnique.ch", true }, + { "psychotechnique.com", true }, { "psychotechniquetest.fr", true }, { "psychotherapie-kp.de", true }, { "psychotherapie1220wien.at", false }, { "psychotherapy-vienna.com", true }, { "psycolleges.com", true }, { "psydix.org", true }, + { "psykometrisk.se", true }, { "psylab.re", true }, { "psylab.vip", true }, { "psynapse.net.au", true }, { "psytrance-pro.com", true }, + { "pszinfo.hu", true }, { "pt-d.ru", true }, { "pt-server.de", true }, { "pt.im", true }, @@ -58031,20 +58818,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "public-vocals.de", true }, { "publicard.es", true }, { "publiccarauctionscalifornia.com", true }, + { "publicintegrity.org", true }, { "publicintelligence.net", true }, { "publicrea.com", true }, { "publicspeakingcamps.com", true }, { "publicsuffix.org", true }, - { "publikate.online", true }, { "publimepa.it", false }, { "publiq.space", true }, { "publishedpaper.ga", true }, { "publisherservices.co", true }, { "publivate.ca", true }, + { "publixphere.net", true }, { "pubmire.com", false }, { "pubreview.com.au", true }, - { "pucchi.net", true }, { "pucogid.ga", true }, + { "pucsr.tech", true }, { "pucssa.org", true }, { "puddis.de", true }, { "pudro.com", true }, @@ -58179,7 +58967,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "putnamcollision.com", true }, { "putney.io", true }, { "putomani.rs", true }, - { "putrawijayatours.com", true }, { "putrock.be", true }, { "puttymonos.club", true }, { "puxlit.net", true }, @@ -58249,6 +59036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "python-hyper.org", true }, { "python.org", false }, { "pythonatrix.com", true }, + { "pythonhosted.org", true }, { "pytradebot.com.br", true }, { "pyxo.net", false }, { "pyzlnar.com", true }, @@ -58259,7 +59047,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "q-m.design", true }, { "q-m.space", true }, { "q-technologies.com.au", true }, - { "q00228.com", false }, + { "q00228.com", true }, { "q01.us", true }, { "q1000.nl", true }, { "q1q2q3.tk", true }, @@ -58273,8 +59061,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "q6957.co", true }, { "q81365.com", true }, { "q82365.com", true }, - { "q88588.com", false }, - { "q886666.com", false }, + { "q88588.com", true }, + { "q886666.com", true }, { "q8igh228tq.tk", true }, { "q9297.co", true }, { "q9397.com", true }, @@ -58310,7 +59098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qcmlw.com", true }, { "qcstudentcenter.com", true }, { "qcstyleacademy.com", false }, - { "qctravelschool.com", true }, + { "qctravelschool.com", false }, { "qcuarto.com.py", true }, { "qdabogados.com", true }, { "qdon.space", true }, @@ -58348,7 +59136,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qis.fr", true }, { "qitarabutrans.com", true }, { "qits.de", false }, - { "qiuby.de", true }, { "qiuri.org", false }, { "qivonline.pt", true }, { "qiwi.be", true }, @@ -58385,6 +59172,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qpcna.org", true }, { "qponverzum.hu", true }, { "qpresentes.com.br", true }, + { "qpsinc.com", true }, { "qq5197.co", true }, { "qq6177.com", true }, { "qq6177.net", true }, @@ -58410,7 +59198,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qrcontagion.com", true }, { "qrd.by", true }, { "qristianuliarkhi.ge", true }, - { "qrlfinancial.com", true }, + { "qrlfinancial.com", false }, { "qrpatrol.com", true }, { "qrpth.eu", true }, { "qruiser.com", true }, @@ -58443,9 +59231,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qualiacomputers.com", true }, { "qualite-ecole-et-formation.ch", false }, { "quality-life.gr", true }, + { "qualityconcreteraising.com", true }, { "qualityhomesystems.com", true }, - { "qualityhvacservices.com", true }, - { "qualityofcourse.com", true }, + { "qualityofcourse.com", false }, { "qualitypropertycare.co.uk", true }, { "qualitywaterproofing.com", true }, { "qualpay.com", true }, @@ -58463,7 +59251,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quantum2.xyz", true }, { "quantumcrypto.nl", true }, { "quantumfinance.com.au", true }, - { "quantumfurball.net", true }, { "quantumpair.net", true }, { "quantumtelecom.com.br", true }, { "quantumwebs.co", true }, @@ -58474,6 +59261,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quarterfull.com", true }, { "quarticon.com", true }, { "quartix.com", true }, + { "quartz.im", true }, + { "quartzclinical.com", true }, { "quarus.net", true }, { "quasarelectronics.co.uk", true }, { "quasiproxy.com", true }, @@ -58520,6 +59309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "querenciavirtual.com.br", true }, { "query-massage.com", false }, { "queryquinton.com", true }, + { "quest-medica.com", true }, { "questdairy.com", true }, { "question.com", true }, { "questionable.host", true }, @@ -58527,6 +59317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "questoj.cn", true }, { "questsocial.it", true }, { "quevisiongrafica.com", true }, + { "quezmedia.com", true }, { "quhyu.xyz", true }, { "quic.network", true }, { "quic.stream", true }, @@ -58536,6 +59327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quickboysvrouwen2.nl", true }, { "quickformspro.com", true }, { "quickinfosystem.com", true }, + { "quickq.nu", true }, { "quickrelations.de", true }, { "quicksell.store", true }, { "quicksupplies.us", true }, @@ -58557,7 +59349,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quintenbraakman.com", true }, { "quintenbraakman.nl", true }, { "quintenehb.be", true }, - { "quinterorealestate.com", true }, { "quintessa.org", true }, { "quiq-api.com", true }, { "quiq-cdn.com", true }, @@ -58574,6 +59365,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quitarlasmanchasde.com", true }, { "quitimes.com", true }, { "quiz4math.gr", true }, + { "quizandmoney.com", true }, { "quizhub.co", true }, { "quizogames.com", true }, { "quizstore.net", true }, @@ -58583,7 +59375,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qunzi.la", true }, { "quocdesign.ch", true }, { "quote.gq", false }, - { "quotedtale.com", true }, { "quoteidiot.com", true }, { "quotev.com", true }, { "quovadisaustria.com", true }, @@ -58609,10 +59400,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qwertyatom100.me", true }, { "qwikdash.com", true }, { "qwq.moe", true }, - { "qwq2333.top", true }, { "qx.fi", true }, { "qx.se", true }, - { "qxy.ch", false }, { "qxzg.org", true }, { "qxzg.xyz", true }, { "qxzgssr.xyz", true }, @@ -58732,7 +59521,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radioduepuntozero.it", true }, { "radioelectronic.tk", true }, { "radiofmimagen.net", true }, - { "radioheteroglossia.com", true }, { "radiohub.ru", true }, { "radioilusion.es", true }, { "radioldpr.ru", true }, @@ -58809,6 +59597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rail360.nl", true }, { "railbird.nl", true }, { "railduction.eu", true }, + { "raileo.com", true }, { "railgun.ac", true }, { "railgun.com.cn", true }, { "railjob.cn", true }, @@ -58867,6 +59656,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raipet.no-ip.biz", true }, { "raisecorp.com", true }, { "raiseyourflag.com", true }, + { "raisingzona.com", true }, { "raissarobles.com", true }, { "raistrick.it", true }, { "raitlo.com", true }, @@ -58948,7 +59738,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rankgiants.com", true }, { "ranking-deli.jp", true }, { "rannamoisaaiasalong.ee", true }, - { "ranobe.club", true }, { "ranos.org", true }, { "ranson.com.au", true }, { "rantanda.com", true }, @@ -59019,7 +59808,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rattattees.com", true }, { "rattenkot.io", true }, { "ratujemyzwierzaki.net", true }, - { "ratul.me", true }, { "raucris.ro", true }, { "raulrivero.es", true }, { "raumzeitlabor.de", false }, @@ -59066,6 +59854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raykitchenware.com", true }, { "raymcbride.com", true }, { "raymd.de", true }, + { "raymondelooff.nl", true }, { "raynersorchard.com.au", true }, { "raynis.net", true }, { "raysei.com", true }, @@ -59169,9 +59958,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reaconverter.com", true }, { "react-db.com", true }, { "reactions.ai", false }, - { "reactive-press.com", true }, { "reactivelambda.com", true }, { "reactivemarkets.com", true }, + { "reactor.cool", true }, { "reactpwa.com", true }, { "readabilitychecker.com", true }, { "reades.co.uk", true }, @@ -59279,7 +60068,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rebelessex.com", true }, { "rebelko.de", true }, { "rebellion.global", true }, - { "rebellionbrewing.com.au", true }, { "rebelonline.nl", true }, { "rebelrebel.com.au", true }, { "rebelz.se", true }, @@ -59287,6 +60075,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reboxetine.com", true }, { "reboxonline.com", true }, { "rebtoor.com", true }, + { "rebuga.com", true }, { "reby.cf", true }, { "reby.ga", true }, { "reby.gq", true }, @@ -59317,6 +60106,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recipex.ru", true }, { "recipeyak.com", true }, { "reckontalk.com", true }, + { "reclamebureau-ultrax.nl", false }, { "reclametoolz.nl", true }, { "reclusiam.net", true }, { "recmon.hu", true }, @@ -59329,6 +60119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recon-networks.com", true }, { "reconexion.life", true }, { "recordmeeting.jp", true }, + { "recoveringircaddicts.org", true }, { "recoveringspirit.com", true }, { "recoveryohio.gov", true }, { "recoveryonline.org", true }, @@ -59355,12 +60146,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "red-button.hu", true }, { "red-dead-rp.de", true }, { "red-t-shirt.ru", true }, + { "red-train.de", true }, { "red-trigger.net", true }, { "red031000.com", true }, { "red2fred2.com", true }, { "redable.hosting", true }, { "redable.nl", true }, - { "redactedmedia.org", true }, + { "redactedmedia.org", false }, { "redactieco.nl", true }, { "redb.cz", true }, { "redballoonsecurity.com", true }, @@ -59412,6 +60204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redhawkwa.com", true }, { "redheadfuck.com", true }, { "redheeler.com.br", true }, + { "rediazauthor.com", true }, { "redicals.com", true }, { "redinational.com", true }, { "redion.me", true }, @@ -59545,7 +60338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "registerforevent.co.uk", true }, { "registerra.nl", true }, { "registr.io", true }, - { "registrar.io", true }, { "registrarplus.net", true }, { "registrarplus.nl", true }, { "registry.google", true }, @@ -59580,6 +60372,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reignsphere.net", true }, { "reiki-coaching.nl", false }, { "reiki-france.fr", true }, + { "reikicentrumdelft.nl", true }, { "reilly.io", true }, { "reimaginebelonging.de", true }, { "reimaginebelonging.org", true }, @@ -59620,6 +60413,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rejido.tk", true }, { "rejushiiplotter.ru", true }, { "rekisuta.com", true }, + { "rekkur.com", true }, + { "rekkur.consulting", true }, + { "rekkur.de", true }, + { "rekkur.dev", true }, + { "rekkur.io", true }, + { "rekkur.net", true }, + { "rekkur.org", true }, + { "rekkur.solutions", true }, + { "rekkur.team", true }, + { "rekkur.tech", true }, + { "rekkur.technology", true }, + { "rekkursolutions.com", true }, + { "rekkurtechnology.com", true }, { "reklamjog.hu", true }, { "rekorsanat.com.tr", true }, { "rekurasi.com", true }, @@ -59659,6 +60465,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remedioparaherpes.com", true }, { "remejeanne.com", true }, { "remembermidi.sytes.net", true }, + { "remembertheend.com", true }, { "rememberthemilk.com", false }, { "remetall.cz", true }, { "remi-saurel.com", true }, @@ -59672,6 +60479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remitatm.com", false }, { "remmik.com", true }, { "remny.com", true }, + { "remo-ribeli.ch", true }, { "remodelingfy.com", true }, { "remodeus.com", true }, { "remonline.ru", true }, @@ -59719,14 +60527,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "renkenlaw.com", true }, { "renlen.nl", true }, { "rennes-bachata.com", true }, + { "rennes-blues.com", true }, + { "rennes-dancehall.com", true }, { "rennes-danse-africaine.com", true }, + { "rennes-danse-orientale.com", true }, { "rennes-danses-en-ligne.com", true }, { "rennes-hip-hop.com", true }, { "rennes-lindy-hop.com", true }, + { "rennes-pilates.com", true }, { "rennes-reggaeton.com", true }, { "rennes-rock-6-temps.com", true }, + { "rennes-salsa-portoricaine.com", true }, + { "rennes-salsa.com", true }, { "rennes-tango.com", true }, + { "rennes-valse.com", true }, + { "rennes-west-coast-swing.com", true }, { "rennes-yoga.com", true }, + { "rennes-zumba.com", true }, { "rennfire.org", true }, { "renoovodesign.ltd", true }, { "renov8sa.co.za", true }, @@ -59749,6 +60566,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rentourhomeinprovence.com", true }, { "rentsbg.com", true }, { "renuo.ch", true }, + { "renut.com.np", true }, { "renxinge.cn", false }, { "renyiyou.com", true }, { "reo.gov", false }, @@ -59765,6 +60583,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "repauto.com.ua", true }, { "repaxan.com", true }, { "repceszentgyorgy.hu", true }, + { "repgad.com", true }, { "repin.in.ua", true }, { "replaceits.me", true }, { "replenology.com", true }, @@ -59780,6 +60599,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reportband.gov", true }, { "reporting.gov", true }, { "reposaarenkuva.fi", true }, + { "reposeed.dev", true }, + { "reposeed.org", true }, { "reproduciblescience.org", true }, { "reproductive-revolution.com", true }, { "reproductiverevolution.com", true }, @@ -59803,6 +60624,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reputationweaver.com", true }, { "requestr.co.uk", true }, { "requezmc.net", true }, + { "require.software", false }, { "reroboto.com", true }, { "reroboto.eu", true }, { "reroboto.net", true }, @@ -59813,7 +60635,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resch.io", true }, { "rescms-secure.com", true }, { "rescuer.gq", true }, - { "resdon.cn", true }, { "research-panel.jp", true }, { "research.facebook.com", false }, { "research.md", true }, @@ -59822,14 +60643,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "researchstory.com", true }, { "reseausyndic.ca", true }, { "resepimok.com", true }, + { "resepsimbok.com", true }, { "reservar-un-hotel.com", true }, { "reserve-duchenier.com", true }, { "reservetonshift.com", true }, { "reshka.ga", true }, { "residence-donatello.be", true }, { "residence-simoncelli.com", true }, + { "residencedesign.net", true }, { "residentiallocksmithdallas.com", true }, { "residentialmortgageholdings.com", true }, + { "resilience-france.org", true }, { "resilientlives.com", true }, { "resilienzatropical.it", true }, { "resine.roma.it", true }, @@ -59905,6 +60729,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resumelab.com", true }, { "resumeprofessionalwriters.com", true }, { "resumeshoppe.com", true }, + { "resumic.com", true }, + { "resumic.dev", true }, + { "resumic.io", true }, + { "resumic.net", true }, + { "resumic.org", true }, { "resursedigitale.ro", true }, { "resveratrolsupplement.co.uk", true }, { "retailcybersolutions.com", true }, @@ -59968,6 +60797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "revayd.net", true }, { "revealdata.com", true }, { "revensoftware.com", true }, + { "reverenceplanning.com", true }, { "reverencestudios.com", true }, { "reverse.design", true }, { "reverseaustralia.com", true }, @@ -59975,7 +60805,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reverseloansolutions.com", true }, { "reverselookupphone.us", true }, { "reversesouthafrica.com", true }, - { "reviderm-skinmedics-rheinbach.de", true }, { "review.jp", true }, { "reviewbestseller.com", true }, { "reviewcenter.in", true }, @@ -60023,8 +60852,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rezept-planer.de", true }, { "rezio.io", true }, { "rezka-burenie.cf", true }, - { "rezosup.net", true }, - { "rezosup.org", true }, { "rezultant.ru", true }, { "rezun.cloud", true }, { "rfeif.org", true }, @@ -60057,6 +60884,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rheijmans.io", true }, { "rheijmans.nl", true }, { "rhein-liebe.de", true }, + { "rheincamneuss.hopto.org", true }, { "rheinneckarmetal.com", true }, { "rheinturm.nrw", true }, { "rhese.net", true }, @@ -60070,6 +60898,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rhinobase.net", false }, { "rhinoceroses.org", true }, { "rhiskiapril.com", false }, + { "rhkg.dk", true }, { "rhnet.at", true }, { "rhodenmanorcattery.co.uk", true }, { "rhodes.ml", true }, @@ -60129,6 +60958,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richardvd.nl", true }, { "richardwarrender.com", true }, { "richbutler.co.uk", true }, + { "richcamgirls.com", true }, { "richcat.tw", true }, { "richecommecresus.com", true }, { "richelelahaise.nl", true }, @@ -60239,6 +61069,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rimeto.io", true }, { "rimkereso.hu", true }, { "rimo.site", true }, + { "rimonhwang.com", true }, { "rimorrecherche.nl", true }, { "rincon-nsn.gov", true }, { "rincondenoticas.com", true }, @@ -60268,6 +61099,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ripple.com", true }, { "riproduzionichiavi.it", true }, { "riptidetech.io", true }, + { "riptoforex.com", true }, { "ripuree.com", true }, { "riqy86.nl", true }, { "ris-bad-wurzach.de", true }, @@ -60278,6 +61110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rischard.org", true }, { "rise-technologies.com", true }, { "rise.global", true }, + { "riseandrank.com", true }, { "riselab.com.ua", true }, { "riseup.net", true }, { "rishabh.me", true }, @@ -60308,7 +61141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ritsu-life.com", true }, { "rittau.biz", true }, { "rittau.org", true }, - { "ritualesyamarresdelamor.com", true }, { "ritzlux.com.tw", true }, { "rivaforum.de", true }, { "rivalsa.cn", true }, @@ -60317,7 +61149,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riverbendroofingnd.com", true }, { "riverford.co.uk", true }, { "rivermist.com.au", true }, - { "riveroflifegifts.com", true }, { "riverotravel.cl", true }, { "riverridgecc.com", true }, { "rivers.gov", true }, @@ -60338,6 +61169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rixter.com", false }, { "rixzz.ovh", true }, { "riyono.com", true }, + { "rizalpalawan.gov.ph", true }, { "rizarus.com", true }, { "rizoma.tech", true }, { "rizospastis.gr", true }, @@ -60366,7 +61198,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rmeuropean.com", true }, { "rmf.io", true }, { "rmit.me", true }, - { "rmk.si", true }, { "rmm-i.com", true }, { "rmmanfredi.com", true }, { "rmrig.org", true }, @@ -60438,6 +61269,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robinhoodbingo.com", true }, { "robinlinden.eu", true }, { "robinloeffel.ch", true }, + { "robinminto.com", true }, { "robinsonstrategy.com", true }, { "robinsonyu.com", true }, { "robinvdmarkt.nl", true }, @@ -60498,6 +61330,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rockhounds.co.za", true }, { "rockinronniescastles.co.uk", true }, { "rockitinflatables.co.uk", true }, + { "rocklinhousecleaning.com", true }, { "rocknwater.com", true }, { "rockpesado.com.br", true }, { "rockslideengineering.com", true }, @@ -60507,6 +61340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rocmartialartsacademy.com", true }, { "rocsole.com", true }, { "rocssti.net", true }, + { "rod.run", false }, { "rodab.party", true }, { "rodafe.sk", true }, { "rodarion.pl", true }, @@ -60598,7 +61432,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rollforadventure.com.au", true }, { "rollingbarge.com", true }, { "rollingstocks.tk", true }, - { "rolliwelt.de", true }, { "rolob.io", true }, { "rolodato.com", true }, { "roma-servizi.it", true }, @@ -60631,6 +61464,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romatrip.it", true }, { "rome.dating", true }, { "rommelhuntermusic.tk", true }, + { "rommelmark.nl", true }, { "rommelwood.de", true }, { "romo-holidays.de", true }, { "romo-holidays.dk", true }, @@ -60651,7 +61485,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roninf.ch", true }, { "roninitconsulting.com", true }, { "ronniegane.kiwi", true }, - { "ronniemossel.nl", true }, { "ronnylindner.de", true }, { "ronnytito.com", true }, { "ronomon.com", true }, @@ -60703,6 +61536,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rootetsy.com", true }, { "rootie.de", true }, { "rootkea.me", true }, + { "rootkit.es", true }, { "rootlair.com", true }, { "rootonline.de", true }, { "rootpigeon.com", true }, @@ -60725,6 +61559,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rosa-spain.tk", true }, { "rosabellas.co.uk", true }, { "rosahijab.com", true }, + { "rosakkreditatsiya-forum.ru", true }, { "rosalindgreenllc.com", true }, { "rosalindturner.co.uk", true }, { "rosaquest.ru", true }, @@ -60755,17 +61590,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rosiervandenbosch.nl", true }, { "roslynpad.net", true }, { "rosnertexte.at", true }, + { "rospotreb.com", true }, { "rosrabota.tk", true }, { "rosset.me", true }, { "rosset.net", true }, { "rossfrance.com", true }, { "rossiworld.com", true }, + { "rosslongulartgallery.com", true }, { "rosslug.org.uk", true }, { "rossmacphee.com", true }, { "rossome.org", true }, { "rosstroj-balashiha.ml", true }, { "rosswilson.co.uk", true }, { "rostclub.ro", true }, + { "rostlau.be", true }, { "rostov-avia.ru", true }, { "rot47.net", true }, { "rotamap.net", true }, @@ -60805,6 +61643,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rout0r.org", true }, { "route-wird-berechnet.de", true }, { "routerclub.ru", true }, + { "routeto.com", true }, { "routetracker.co", true }, { "rove3d.com", true }, { "roverglobal.ga", true }, @@ -60852,6 +61691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "royalnissanparts.com", true }, { "royaloz.ma", true }, { "royalpainters.co", true }, + { "royalpalacenogent.fr", true }, { "royalpratapniwas.com", true }, { "royalrangers.fi", true }, { "royalstylefit.com", true }, @@ -60870,6 +61710,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rozalisbengal.ro", true }, { "rozalynne-dawn.ga", true }, { "rozar.eu", true }, + { "rozar.sk", true }, { "rozhodce.cz", true }, { "rpadonline.com", true }, { "rpadovani.com", false }, @@ -60914,7 +61755,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rs-aktuell.net", true }, { "rs-cloud.ddns.net", true }, { "rs-devdemo.host", true }, - { "rs-maschinenverleih.de", false }, + { "rs-maschinenverleih.de", true }, { "rs-solution.ch", true }, { "rs.wiki", true }, { "rs200.org", true }, @@ -60936,6 +61777,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rslnd.com", true }, { "rsm-intern.de", true }, { "rsmith.io", true }, + { "rsmmail.com", true }, { "rsp-blogs.de", true }, { "rsquare.nl", true }, { "rsridentassist.com", true }, @@ -60981,6 +61823,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rtho.me", true }, { "rths.tk", false }, { "rthsoftware.net", false }, + { "rtlspiele.de", true }, { "rtmoran.org", true }, { "rtrappman.com", true }, { "rtsak.com", true }, @@ -60994,6 +61837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ru-e-business.com", true }, { "ru-sprachstudio.ch", true }, { "ru.search.yahoo.com", false }, + { "rua.cx", false }, { "ruaneattorneys.com", true }, { "ruanmi.de", true }, { "rubbaduckee.tk", true }, @@ -61010,12 +61854,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rubenbrito.net", true }, { "rubenkruisselbrink.nl", true }, { "rubenmamo.com", true }, - { "rubenpeeters.ml", true }, { "rubenroy.com", true }, { "rubenruiz.org", true }, { "rubens.cloud", true }, + { "rubenschulz.nl", true }, { "rubia.ca", true }, - { "rubidi.net", true }, { "rubidium.ml", true }, { "rubixstudios.com.au", true }, { "rublacklist.net", true }, @@ -61045,6 +61888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rudolphmarketing.com", true }, { "rudrastyh.com", true }, { "rue-de-la-vieille.fr", true }, + { "rueder.com", true }, { "ruediger-voigt.eu", true }, { "ruedigervoigt.de", true }, { "ruedirrenggli.ch", false }, @@ -61088,6 +61932,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rulu.tv", true }, { "rulutv.com", true }, { "rumahminimalisoi.com", true }, + { "rumahpropertigratis.com", true }, { "rumartinez.es", true }, { "rumbasguayaquil.com", true }, { "rumenka.tk", true }, @@ -61117,6 +61962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "runklesecurity.com", true }, { "runner.az", true }, { "runnergrapher.com", true }, + { "runners.yoga", true }, { "runningrabb.it", true }, { "runreport.fr", true }, { "runrocknroll.com", true }, @@ -61161,11 +62007,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "russianpunkrock.tk", true }, { "russianrandom.com", true }, { "russianrandom.ru", true }, - { "russstudios.com", true }, { "russt.me", true }, + { "russtekh.com", true }, { "rust-lang.codes", true }, { "rust.cf", true }, { "rust.mn", true }, + { "rust.pm", true }, { "rustable.com", true }, { "rustfu.rs", true }, { "rusticpathways.com.au", true }, @@ -61175,6 +62022,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rustpedia.net", true }, { "rustyrambles.com", true }, { "rusxakep.com", true }, + { "rutewisata.com", true }, { "rutgerschimmel.nl", true }, { "ruthbarrettmusic.com", true }, { "ruthbellgrahammemorial.org", true }, @@ -61224,6 +62072,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ryan-goldstein.com", true }, { "ryan.cafe", true }, { "ryanbritton.com", true }, + { "ryandewsbury.co.uk", true }, { "ryanfamily.net.au", true }, { "ryanhowell.io", true }, { "ryankearney.com", false }, @@ -61233,7 +62082,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ryanteck.uk", true }, { "ryazan-region.ru", true }, { "rybox.info", true }, - { "rychlikoderi.cz", true }, + { "rychlikoderi.cz", false }, { "ryejuice.sytes.net", true }, { "rylandgoldman.com", true }, { "rylore.com", true }, @@ -61310,7 +62159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "s81365.com", true }, { "s82365.com", true }, { "s88.com", true }, - { "s886666.com", false }, + { "s886666.com", true }, { "s8a.us", true }, { "s92.cloud", true }, { "s92.io", true }, @@ -61431,7 +62280,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safethishome.com", true }, { "safetycloud.me", true }, { "safetymp3.com", true }, - { "safetynames.com", true }, { "safetynetwork.me", true }, { "safetyrange.com", true }, { "safetysite.tips", true }, @@ -61452,13 +62300,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saglikhaber.tk", true }, { "sagnette.xyz", true }, { "sagracefarms.com", true }, + { "sagytec.net", true }, { "sahajbooks.com", true }, { "sahar.io", true }, { "saharacloud.com", true }, { "saharmassachi.com", true }, { "sahb.dk", true }, { "sahibinden.com", true }, - { "sahilm.com", true }, { "sahkotyot.eu", true }, { "said.id", true }, { "said.it", true }, @@ -61474,7 +62322,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saikou.moe", true }, { "saikouji.tokushima.jp", true }, { "sail-nyc.com", true }, - { "sailanitours.com", true }, { "sailing-yacht.club", true }, { "sailingonward.com", true }, { "sailormoonevents.org", true }, @@ -61494,7 +62341,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saint-petersburg.cf", true }, { "saint-petersburg.gq", true }, { "saint-petersburg.ml", true }, - { "saint-sym.fr", true }, { "saintaardvarkthecarpeted.com", true }, { "saintanne.net", true }, { "saintanthonylakin.org", true }, @@ -61578,6 +62424,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saleduck.fi", true }, { "saleduck.se", true }, { "saledump.nl", true }, + { "salekaz.ru", true }, { "salemedia.pro", true }, { "salensmotors-usedcars.be", false }, { "salentocab.com", true }, @@ -61603,7 +62450,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "salon1.ee", true }, { "salonasymetria.com", true }, { "salonasymetria.pl", true }, - { "salonderecepcionessjl.com", true }, { "salonestella.it", true }, { "salonsantebienetre.ch", true }, { "salrosadohimalaia.com", true }, @@ -61664,6 +62510,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samesound.ru", true }, { "sameworks.com", true }, { "samfreaks.de", true }, + { "samhsa.gov", true }, { "samhuri.net", true }, { "samiamelikian.com.br", true }, { "samifar.in", true }, @@ -61682,7 +62529,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sammyjohnson.com", true }, { "sammyservers.com", true }, { "sammyservers.net", true }, - { "sammyslimos.com", true }, { "samodding.com", true }, { "samorazvitie.ru", true }, { "samotorsporttyres.com.au", true }, @@ -61805,7 +62651,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "santamonicapost123.org", true }, { "santanderibc.com", true }, { "santegra.tk", true }, - { "santensautomatics.be", true }, { "santevie.ch", false }, { "santi-club.de", true }, { "santiagogarza.co", true }, @@ -61855,10 +62700,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saprima.de", false }, { "sapuseven.com", true }, { "saputra.org", true }, - { "saq.com", true }, + { "saq.com", false }, { "sarae.id", true }, { "sarah-jane.nl", true }, { "sarahbeckettharpist.com", true }, + { "sarahjanecreates.co.uk", true }, { "sarahlicity.co.uk", true }, { "sarahlicity.me.uk", true }, { "sarahplusdrei.de", true }, @@ -61885,7 +62731,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sarella.org", true }, { "sarhua.tk", true }, { "sarindia.com", true }, - { "sarindia.de", true }, { "sarink.eu", true }, { "sarjakuvakauppa.fi", true }, { "sarkisianbuilders.com", true }, @@ -61893,9 +62738,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sarndipity.com", true }, { "sarny.at", true }, { "saro.me", true }, - { "saronikos.city", true }, { "saronikos.guide", true }, { "saropa.com", true }, + { "sarox.com.au", true }, { "sarpsb.org", true }, { "sartoria.roma.it", true }, { "sarumtechnologies.com", true }, @@ -61934,12 +62779,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sativatunja.com", true }, { "satmali.az", true }, { "satmd.de", true }, + { "satoshilabs.com", true }, { "satoshinumbers.com", true }, { "satplay.host", true }, { "satserwis.xyz", true }, + { "satsukii.moe", true }, { "sattamatka.market", false }, { "sattamatka420.mobi", false }, - { "sattamatkamobi.mobi", false }, { "sattaresult.in", true }, { "sattaresult.net", true }, { "saturn.pl", true }, @@ -61967,6 +62813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saurel.me", true }, { "sauvagebridge.nl", true }, { "savaari.com", true }, + { "savagecore.eu", true }, { "savageorgiev.com", true }, { "savanna.io", true }, { "savantic.io", true }, @@ -62103,6 +62950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scenester.tv", true }, { "scenicbyways.info", true }, { "scepticism.com", true }, + { "sceventures.com", true }, { "scevity.com", true }, { "scfpensante.ca", true }, { "sch44r0n.de", true }, @@ -62144,7 +62992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scheuchenstuel.at", true }, { "schiau.co", true }, { "schier.info", true }, - { "schil.li", true }, + { "schil.li", false }, { "schildbach.de", true }, { "schillers-friedberg.de", true }, { "schimmel-test.info", true }, @@ -62169,7 +63017,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schlueter-software.de", true }, { "schmaeh-coaching.ch", true }, { "schmatloch.cloud", true }, - { "schmelle.me", false }, { "schmelzle.io", true }, { "schmidthomes.com", true }, { "schmidtlohwasser.de", true }, @@ -62191,6 +63038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schnyder-werbung.ch", true }, { "schoeller.click", true }, { "schoenstatt-fathers.link", true }, + { "schoenstatt-fathers.us", true }, { "schoenstatt.link", true }, { "schoepski.de", true }, { "schoknecht.net", true }, @@ -62229,9 +63077,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schoolsonice.nl", true }, { "schoop.me", true }, { "schopenhauer-institut.de", true }, + { "schorel.eu", true }, { "schorel.ovh", true }, { "schorelweb.nl", true }, - { "schorers.org", true }, + { "schorers.org", false }, { "schoring.com", true }, { "schottenland.de", true }, { "schrader-institute.de", true }, @@ -62250,6 +63099,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schrodingersscat.org", true }, { "schroeder-immobilien-sundern.de", true }, { "schroepfi.de", true }, + { "schrok.eu", true }, { "schrolm.de", true }, { "schsrch.org", true }, { "schsrch.xyz", true }, @@ -62292,13 +63142,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schwarztrade.cz", true }, { "schwarzwald-flirt.de", true }, { "schweingehabt.expert", true }, + { "schweininchen.de", true }, { "schweizerbanken.tk", true }, { "schwerkraftlabor.de", true }, { "schwinabart.com", true }, { "schwinger.me", true }, { "schwinnbike.ru", true }, { "schwuppengrillen.de", false }, - { "sci-internet.tk", true }, { "scib.tk", true }, { "scicomm.xyz", true }, { "science-network.ch", true }, @@ -62333,6 +63183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scohetal.de", true }, { "scolasti.co", true }, { "scom.org.uk", true }, + { "scoolcode.com", true }, { "scoop6.co.uk", true }, { "scootaloo.co.uk", true }, { "scooter-experts.com", true }, @@ -62364,10 +63215,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scoutingtungelroy.nl", true }, { "scoutnet.de", true }, { "scoutsanbartolome.tk", true }, + { "scoutsberg.be", true }, { "scouttrails.com", true }, { "scp-079.org", true }, { "scp-trens.notaires.fr", true }, { "scp500.com", true }, + { "scpartyentertainment.co.uk", true }, { "scpi-is.fr", true }, { "scpslgame.com", true }, { "scqpw.com", true }, @@ -62384,6 +63237,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scrap.photos", true }, { "scrap.tf", true }, { "scrapbookdecorations.ga", true }, + { "scrapcarremovalmississauga.ca", true }, { "scratchzeeland.nl", true }, { "scrayos.net", true }, { "scredible.com", false }, @@ -62472,6 +63326,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seabrooklocksmith.com", true }, { "seac.me", true }, { "seachef.it", true }, + { "seadrive.cc", true }, { "seadus.ee", true }, { "seaelba.com", true }, { "seafood.co.nz", true }, @@ -62582,6 +63437,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secinto.at", true }, { "secinto.com", true }, { "secitem.de", true }, + { "secluded.site", true }, { "secnews.gr", true }, { "secomo.org", true }, { "second-life-partner-ichien.com", true }, @@ -62621,7 +63477,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secumailer.com", true }, { "secumailer.nl", true }, { "secundity.nl", true }, - { "secur3.us", true }, { "securai.de", true }, { "secure-automotive-cloud.com", true }, { "secure-automotive-cloud.org", true }, @@ -62640,6 +63495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securefiletransfer.nl", true }, { "securegovernment.us", true }, { "secureheaders.com", true }, + { "securehugs.com", true }, { "secureim.de", true }, { "secureindia.co", true }, { "securejabber.me", true }, @@ -62678,13 +63534,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "security.xn--q9jyb4c", true }, { "security201.co.uk", true }, { "security201.com", true }, + { "securityaware.me", true }, { "securityblues.co.uk", false }, { "securitybrief.asia", true }, { "securitybrief.co.nz", true }, { "securitybrief.com.au", true }, { "securitybrief.eu", true }, { "securitybsides.pl", false }, - { "securitycamerascincinnati.com", true }, { "securitydriver.com", true }, { "securityescrownews.com", true }, { "securityfest.com", true }, @@ -62699,7 +63555,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securitypluspro.com", true }, { "securityprimes.in", true }, { "securitypuppy.com", true }, - { "securityrussia.com", true }, { "securitysense.co.uk", true }, { "securitysnobs.com", false }, { "securitysoapbox.com", true }, @@ -62714,17 +63569,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securon.io", true }, { "securoswiss.ch", true }, { "securview.ch", true }, + { "secutorcloud.com", true }, { "secutrans.com", true }, { "secuvera.de", false }, { "secvault.io", true }, { "secwall.me", true }, - { "secyourity.se", true }, + { "secyourity.se", false }, { "sedlakovalegal.com", true }, { "sedlex.fr", true }, { "sedmicka.sk", false }, { "sedoexpert.nl", true }, { "sedoexperts.nl", true }, - { "sedomicilier.fr", true }, { "see.asso.fr", true }, { "see.wtf", true }, { "seedalpha.com", true }, @@ -62746,6 +63601,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seeonce.co", true }, { "seerainer.com", true }, { "seesuite.com", false }, + { "seetheprogress.com", true }, + { "seetheprogress.de", true }, + { "seetheprogress.eu", true }, + { "seetheprogress.net", true }, + { "seetheprogress.org", true }, { "seewang.me", true }, { "seewhatididhere.com", true }, { "seewines.com", true }, @@ -62797,6 +63657,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sekainokokki.jp", true }, { "sekfung.me", true }, { "sekisonn.com", true }, + { "sekkom.com", true }, { "sekoya.org", true }, { "sektor.ro", true }, { "sektor.tech", true }, @@ -62825,6 +63686,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seleondar.ru", true }, { "self-business.tk", true }, { "self-evident.org", true }, + { "self-signed.com", true }, { "self-xss.info", true }, { "selfassess.govt.nz", true }, { "selfdestruct.net", true }, @@ -62863,7 +63725,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "semao.org", true }, { "semaphore-studios.com", true }, { "sembyotic.com", true }, - { "semdynamics.com", true }, { "semenov.ml", true }, { "semenov.su", true }, { "sementes.gratis", true }, @@ -62942,7 +63803,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sentiments.io", true }, { "sentinel.gov", true }, { "sentinelproject.io", true }, - { "sentinelsmotorcycleclub.com", true }, { "sentirmebien.org", true }, { "sentry.io", true }, { "sentry.nu", true }, @@ -62960,17 +63820,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seo-reality.cf", true }, { "seo-website.ru", true }, { "seo.london", true }, - { "seoagentur2go.de", true }, { "seoankara.name.tr", true }, { "seoarchive.org", true }, { "seobutler.com", true }, + { "seocraft.me", true }, { "seodayo.com", true }, - { "seodefinitivo.com", true }, { "seoexpert.com.br", true }, { "seogeek.nl", true }, { "seohackers.fr", true }, { "seohouston.com", true }, { "seoinc.com", true }, + { "seoium.com", true }, { "seojames.com", true }, { "seolab.amsterdam", true }, { "seolabuitest.azurewebsites.net", true }, @@ -62981,8 +63841,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seomaton.org", true }, { "seomen.biz", true }, { "seon.me", true }, + { "seonoco.com", true }, { "seoonline.cf", true }, - { "seoprovider.nl", true }, { "seoquake.com", true }, { "seorus.cf", true }, { "seoscribe.net", true }, @@ -63032,11 +63892,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sergefonville.nl", true }, { "sergeyreznikov.com", true }, { "sergije-stanic.me", true }, - { "sergio.me", true }, { "sergiozygmunt.com", true }, { "sergivb01.me", false }, { "serialexperiments.co.uk", true }, - { "serienstream.to", true }, { "seriesdatv.pt", true }, { "seriesfeed.com", true }, { "serigraphs.co.uk", true }, @@ -63067,16 +63925,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servepublic.org", true }, { "server-bg.net", true }, { "server-daten.de", true }, - { "server-essentials.com", true }, - { "server-eye.com", true }, - { "server-eye.de", true }, { "server72a.ddns.net", true }, { "server92.eu", true }, { "server92.tk", true }, { "serveradium.com", true }, { "serveradmin.ovh", true }, { "serverco.com", true }, - { "servercode.ca", true }, { "serverd.de", true }, { "serverexpose.com", true }, { "serverfrog.de", true }, @@ -63110,7 +63964,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servicemagicusa.com", true }, { "servicemembers.gov", true }, { "servicerequesthub.io", true }, + { "serviceslotenmaker.nl", false }, { "servicestechnologiquesam.ca", true }, + { "servicevie.com", true }, { "serviciales.com", true }, { "servicios-electricos.com", true }, { "servida.ch", true }, @@ -63135,7 +63991,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serw.org", true }, { "serwetki-papierowe.pl", true }, { "serwis-wroclaw.pl", true }, - { "serwusik.pl", false }, { "seryovpn.com", true }, { "seryox.com", true }, { "sesam-biotech.com", true }, @@ -63200,7 +64055,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sewinginsight.com", true }, { "sewoo.co.uk", true }, { "sex-education.com", true }, + { "sex-sex-cam.com", true }, { "sex5.com", true }, + { "sexaki.com", true }, { "sexar.info", true }, { "sexara.co", true }, { "sexdocka.nu", true }, @@ -63214,11 +64071,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sexonosalao.com", true }, { "sexoyrelax.com", true }, { "sexpay.net", true }, - { "sexplicit.co.uk", true }, { "sexservice.io", true }, { "sexshopfacil.com.br", true }, { "sexshopnet.com.br", true }, { "sextop1.pro", true }, + { "sexvirtualspace.com", true }, { "sexwork.net", true }, { "sexy-store.nl", true }, { "sexyblonds.net", true }, @@ -63236,6 +64093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sfaturiit.ro", true }, { "sfbao.com", true }, { "sfdev.ovh", true }, + { "sfera360.es", true }, { "sfg-net.com", true }, { "sfg-net.eu", true }, { "sfg-net.net", true }, @@ -63269,7 +64127,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sgombero.it", true }, { "sgrmreproduccionapp.azurewebsites.net", true }, { "sgrossi.it", true }, - { "sgroup-rec.com", true }, { "sgrub.xyz", true }, { "sgs-systems.de", true }, { "sgs.camera", true }, @@ -63287,7 +64144,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sh0rt.zone", true }, { "sh0shin.org", true }, { "sh0uld.net", true }, - { "sh11.pp.ua", true }, { "sh4y.com", true }, { "sh68.cc", true }, { "sha.bi", true }, @@ -63336,7 +64192,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shaicoleman.com", true }, { "shainessim.com", true }, { "shaitan.eu", true }, - { "shajol.com", true }, { "shakan.ch", false }, { "shaken-kyoto.jp", true }, { "shaken110.com", true }, @@ -63352,6 +64207,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shamans.ga", true }, { "shamara.info", true }, { "shamariki.ru", false }, + { "shambhu.info", true }, { "shampoo63.ru", true }, { "shan.io", false }, { "shan.si", true }, @@ -63380,6 +64236,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sharanyamunsi.net", true }, { "shard.vc", true }, { "sharealo.org", true }, + { "shareasale-analytics.com", true }, { "sharedgoals.co", true }, { "sharedhost.de", true }, { "shareeri.com", true }, @@ -63463,7 +64320,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sheilasdrivingschool.com", true }, { "shejutu.com", true }, { "shek.zone", true }, - { "shekareyehospital.com", true }, { "shelbymunsch.com", true }, { "shelehov.tk", true }, { "shelfordsandstaplefordscouts.org.uk", true }, @@ -63493,7 +64349,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shenpei.net", true }, { "shens.ai", true }, { "shentengtu.idv.tw", true }, - { "shenyuqi.com", false }, { "shepherdsfriendly.co.uk", true }, { "sherbers.de", true }, { "sheremetka.com", true }, @@ -63502,7 +64357,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shermantank.biz", true }, { "sherpa.blog", true }, { "sherpnortheast.com", true }, - { "sherrikehoetherapy.com", true }, { "sherrikelley.com", true }, { "sherut.net", true }, { "shethbox.com", true }, @@ -63517,7 +64371,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shiawasedo.co.jp", true }, { "shibainu.com.br", true }, { "shibbydex.com", true }, - { "shibuya-rin.kr", false }, + { "shibuya-rin.kr", true }, { "shichibukai.net", true }, { "shico.org", true }, { "shidai88.cc", true }, @@ -63528,6 +64382,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shift-record.com", true }, { "shift-to.co.jp", true }, { "shift.email", true }, + { "shiftcrypto.ch", true }, { "shiftdevices.com", true }, { "shiftj.is", true }, { "shiftleft.org", true }, @@ -63689,6 +64544,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "short-term-plans.com", true }, { "short.cm", true }, { "short.wtf", true }, + { "shortaudition.com", true }, + { "shortaudition.net", true }, + { "shortaudition.tv", true }, { "shortcut.pw", true }, { "shortdiary.me", true }, { "shorten.ninja", true }, @@ -63707,13 +64565,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shouldbetaught.com", true }, { "shouttag.com", true }, { "shovonhasan.com", true }, - { "show-stream.tv", true }, + { "show-pro.com.au", true }, { "showbits.net", true }, { "shower.im", true }, { "showersnet.com", true }, { "showf.om", true }, { "showfom.sb", true }, { "showmax.com", true }, + { "showmeengland.co.uk", true }, { "showmethegadgets.com", true }, { "showmethemoney.ru", true }, { "shownet.tk", true }, @@ -63735,6 +64594,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shrimpcam.pw", true }, { "shrinidhiclinic.in", true }, { "shrinkhub.com", true }, + { "shrsl.com", true }, { "shrt.tv", true }, { "shrub.ca", true }, { "shrug.ml", false }, @@ -63763,7 +64623,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shuomingshu88.com", true }, { "shura.eu.org", true }, { "shurita.org", true }, - { "shuro.de", true }, { "shuset.dk", true }, { "shushu.media", true }, { "shutter-shower.com", true }, @@ -63886,12 +64745,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "signslabelstapesandmore.com", false }, { "signtul.com", false }, { "signup.ly", true }, + { "sigparser.com", true }, { "sigsrv.net", true }, { "sigterm.sh", true }, { "sigurnost.online", true }, { "sihaizixun.net", true }, { "siikaflix.tv", true }, - { "siirtutkusu.com", true }, + { "siirtutkusu.com", false }, { "sijbesmaverhuizingen.nl", true }, { "sik-it.nl", true }, { "sikademy.com", true }, @@ -63908,6 +64768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silent-clean.de", true }, { "silent-yachts.com", true }, { "silentexplosion.de", true }, + { "silentinstaller.com", true }, { "silentkernel.fr", true }, { "silentundo.org", true }, { "silesianlawyer.pl", true }, @@ -63932,6 +64793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silverblog.org", true }, { "silverbowflyshop.com", true }, { "silverdragonart.com", true }, + { "silvergoldbull.at", true }, { "silvergoldbull.ba", true }, { "silvergoldbull.be", true }, { "silvergoldbull.bg", true }, @@ -64036,18 +64898,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simcoecurlingclub.ca", true }, { "simcongroup.ir", true }, { "simeonoff.ninja", true }, - { "simetal.ch", true }, + { "simetal.ch", false }, { "simfdr.com", true }, { "simfed.org", true }, { "simha.online", true }, { "simhaf.cf", true }, + { "simi-reizen.nl", true }, { "simivalleyelectrical.com", true }, { "simivalleyexteriorlighting.com", true }, { "simivalleylandscapelighting.com", true }, { "simivalleylighting.com", true }, { "simivalleyoutdoorlighting.com", true }, { "simkova-reality.cz", true }, - { "simlau.net", true }, + { "simlau.net", false }, { "simmis.fr", false }, { "simmtronic.com", true }, { "simnovo.net", true }, @@ -64063,6 +64926,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simoncook.org", true }, { "simonevans.uk", true }, { "simonfischer.info", true }, + { "simonheung.com", true }, { "simonhirscher.de", true }, { "simonholst.dk", true }, { "simonkjellberg.com", true }, @@ -64072,7 +64936,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simonmanuel.com", true }, { "simonreich.de", true }, { "simonschmitt.ch", true }, - { "simonsmh.cc", true }, { "simonspeich.ch", true }, { "simonsreich.de", true }, { "simonssh.ddns.net", true }, @@ -64089,6 +64952,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simphony.cz", true }, { "simpip.com", true }, { "simple.com", false }, + { "simplechoicesuper.com.au", true }, { "simpleclassiclife.com", true }, { "simplecmsdemo.com", true }, { "simplecoding.click", true }, @@ -64106,7 +64970,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simpleprojects.net", true }, { "simplerses.com", true }, { "simplertrading.com", true }, - { "simpleshirts.us", true }, { "simpletax.ca", true }, { "simplewire.de", true }, { "simplexgame.net", true }, @@ -64155,6 +65018,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sindarina.com", true }, { "sindarina.eu", true }, { "sindarina.net", true }, + { "sindastra.de", true }, { "sinde.ru", true }, { "sindicatoburgos.org", true }, { "sindlerova.com", true }, @@ -64172,7 +65036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "singee.site", true }, { "singel.ch", true }, { "singer.ru", true }, - { "singhpackersmovers.com", true }, + { "singhpackersmovers.com", false }, { "single-in-stuttgart.de", true }, { "singleproduction.com", true }, { "singles-aus-hamburg.de", true }, @@ -64185,6 +65049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinluzvenezuela.tk", true }, { "sinmik.com", true }, { "sinnersprojects.ro", true }, + { "sinnvoll-online.de", true }, { "sinog.si", true }, { "sinomod.com", true }, { "sinonimos.com.br", true }, @@ -64196,7 +65061,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sint-joris.nl", true }, { "sintaxis.org", true }, { "sinterama.biz", true }, + { "sinusbot.online", true }, { "sinusitis-bronchitis.ch", true }, + { "sinvideovault.com", true }, { "sioeckes.hu", true }, { "siogyumolcs.hu", true }, { "sion-colony.tk", true }, @@ -64219,6 +65086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sirencallofficial.com", true }, { "sirenslove.com", true }, { "sirg.fr", true }, + { "siri.cc", true }, { "sirihouse.com", true }, { "siriuspup.com", true }, { "sirtaptap.com", true }, @@ -64262,7 +65130,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sit-brn.ru", true }, { "sit.ec", true }, { "sit.moe", true }, - { "sitahk.org", true }, { "sitak.fi", true }, { "sitanleta.de", true }, { "sitatravel.gr", true }, @@ -64278,6 +65145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sitedebelezaemoda.com.br", true }, { "sitedrive.fi", true }, { "sitefactory.com.br", true }, + { "sitehoster.org", true }, { "sitekatalog.tk", true }, { "sitelmexico.com", true }, { "sitemai.eu", true }, @@ -64368,7 +65236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skhire.co.uk", true }, { "skhoop.cz", true }, { "skiblandford.com", true }, - { "skid-berlin.de", true }, { "skid.church", true }, { "skiddle.com", true }, { "skifairview.com", true }, @@ -64393,12 +65260,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skincare-note.com", true }, { "skincareagent.cf", true }, { "skincases.co", true }, - { "skincontracts.co", true }, { "sking.io", true }, { "skingame.co", true }, { "skingames.co", true }, { "skinmarket.co", true }, { "skinmodo.com", true }, + { "skinpet.com", true }, { "skinpwrd.com", true }, { "skinseries.cf", true }, { "skinstyleglobal.com", true }, @@ -64406,7 +65273,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skipbounce.com", true }, { "skipfault.com", true }, { "skipperinnovations.com", false }, - { "skippy.dog", true }, + { "skippy.dog", false }, + { "skiptadiabetes.com", true }, { "skipton.io", true }, { "skirts.tk", true }, { "skischule-wildewiese.de", true }, @@ -64495,6 +65363,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skynethk.com", true }, { "skynetnetwork.eu.org", true }, { "skynetstores.ae", true }, + { "skynetstores.net", true }, { "skynetz.tk", true }, { "skyntalent.com", true }, { "skyoy.com", true }, @@ -64565,6 +65434,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sleepmap.de", true }, { "sleeps.jp", true }, { "sleepstar.co.uk", true }, + { "sleepstar.com.mt", true }, { "sleepstar.de", true }, { "sleepstar.fr", true }, { "sleestak.net", true }, @@ -64601,7 +65471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slogan.tk", true }, { "sloneczni.pl", true }, { "slonep.net", true }, - { "slopeedge.com", true }, { "slopeedge.net", true }, { "slotarazzi.com", true }, { "slotcar.com", false }, @@ -64647,6 +65516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sm.link", true }, { "sm.ms", true }, { "sm2016.ch", true }, + { "sma-dev.de", true }, { "sma-gift.com", true }, { "smablo.com", true }, { "smackhappy.com", true }, @@ -64654,7 +65524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smakassen.no", true }, { "smakoszwegrzynka.pl", true }, { "smaksbanken.no", true }, - { "small-panda.com", true }, { "smallbytedesign.co", true }, { "smallchat.nl", true }, { "smallcloudsolutions.co.za", true }, @@ -64682,16 +65551,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smaltimentorifiuti.veneto.it", true }, { "smamunir.is", true }, { "smares.de", true }, + { "smarntrading.com", true }, { "smart-cloud.store", true }, { "smart-cp.jp", true }, { "smart-informatics.com", true }, { "smart-media-gmbh.de", true }, { "smart-wohnen.net", true }, { "smart.gov", true }, - { "smart.vet", true }, { "smartacademy.ge", true }, { "smartacademy.pro", true }, - { "smartairkey.com", true }, { "smartandcom.ch", false }, { "smartandhappychild.ro", false }, { "smartass.space", true }, @@ -64725,7 +65593,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartlogtower.com", true }, { "smartlybuy.com", true }, { "smartmachine.com", true }, - { "smartmail24.de", true }, { "smartmeal.ru", true }, { "smartmessages.net", true }, { "smartminibushire.co.uk", true }, @@ -64743,7 +65610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartpolicingplatform.com", true }, { "smartproductguide.com", true }, { "smartpti.net", true }, - { "smartresumeservices.com", true }, + { "smartrecruit.ro", true }, { "smartrise.us", true }, { "smartservices.nl", true }, { "smartshiftme.com", true }, @@ -64799,7 +65666,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smith.bz", true }, { "smith.co", false }, { "smith.is", true }, - { "smithandcanova.co.uk", false }, { "smithchung.eu", true }, { "smithcountytxtaxrates.gov", true }, { "smithf.red", true }, @@ -64865,6 +65731,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smys.uk", true }, { "sn0int.com", true }, { "snabbare-dator.se", true }, + { "snabbfoting.com", true }, + { "snabbfoting.se", true }, { "snabbit-support.nu", true }, { "snabbit-support.se", true }, { "snabblim.tk", true }, @@ -64906,6 +65774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snelbv.nl", true }, { "snelshops.nl", true }, { "snelwebshop.nl", true }, + { "snelwegzen.nl", true }, { "snelxboxlivegold.nl", true }, { "snerith.com", true }, { "snfdata.com", false }, @@ -64927,7 +65796,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snipermarkettiming.com", true }, { "snipl.io", true }, { "snippet.host", true }, - { "snippet.wiki", true }, + { "snippet.wiki", false }, { "snipr.gg", true }, { "snizl.com", true }, { "snj.pt", true }, @@ -64968,12 +65837,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snowy.land", true }, { "snowyluma.com", true }, { "snowyluma.me", true }, + { "snperformance.gr", true }, { "snroth.de", true }, { "snrub.co", true }, { "snsirius.cf", true }, { "sntravel.co.uk", true }, { "snuff.porn", true }, - { "snuverma.com", true }, { "snwsjz.com", true }, { "sny.no", true }, { "so.is-a-cpa.com", true }, @@ -64994,7 +65863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soblaznenie.ru", true }, { "soblaznenie2.ru", true }, { "soboleva-pr.com.ua", true }, - { "sobotkama.eu", true }, { "sobreporcentagem.com", true }, { "soc.net", true }, { "socal-babes.com", true }, @@ -65012,6 +65880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "social-media-strategy.org.uk", true }, { "social-work-colleges.com", true }, { "socialair.tk", true }, + { "socialblaze.com.au", true }, { "socialclimb.com", true }, { "socialdevelop.biz", false }, { "socialhams.net", true }, @@ -65019,6 +65888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "socializam.com", true }, { "socializam.ro", true }, { "sociallyunited.net", true }, + { "socialmark.mx", true }, { "socialmarketingday.nl", true }, { "socialmedia-manager.gr", true }, { "socialnitro.com", true }, @@ -65067,10 +65937,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sofialobocera.com", true }, { "sofiavanmoorsel.com", true }, { "sofiawestergren.com", true }, + { "sofidelshop.blog", true }, { "sofiesteinfeld.de", true }, { "sofoco.us", true }, { "sofortimplantate-muenchen.de", true }, { "soft41.ru", true }, + { "soft64.me", true }, { "softandbouncy.co.uk", true }, { "softanka.com", true }, { "softbit.pt", true }, @@ -65114,9 +65986,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soia.ca", true }, { "sointelcom.com.co", true }, { "soinvett.com", false }, - { "sojournindica.com", true }, { "sojournsaffairs.com", true }, - { "sokaissues.info", true }, { "sokak-sanati.tk", true }, { "soket.ee", true }, { "sokietech.com", true }, @@ -65142,6 +66012,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solarplan-berlin.de", true }, { "solarstrom.net", true }, { "solartrackerapp.com", true }, + { "solautoescuela.com", true }, { "soldarizona.ga", true }, { "solden.be", true }, { "soldesduck.be", true }, @@ -65150,7 +66021,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soldout-app.com", false }, { "sole-erdwaermetauscher.de", true }, { "soledadpenades.com", true }, - { "soleil.space", true }, { "solemare-hotel.it", true }, { "solentbasketball.co.uk", true }, { "solentbubblesandbounce.co.uk", true }, @@ -65175,6 +66045,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solit.systems", true }, { "solitairenetwork.com", true }, { "solitaryride.com", true }, + { "soliten.de", true }, { "sollevix.ovh", true }, { "solmek.co.uk", true }, { "sologoc.com", true }, @@ -65285,6 +66156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sonneundstrand.de", true }, { "sonodrom.tk", true }, { "sonofsunart.com", true }, + { "sonologic.nl", true }, { "sonomacounty.gov", true }, { "sonomacountywriterscamp.com", true }, { "sony-psvita.ru", true }, @@ -65293,6 +66165,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soolid.tech", true }, { "soomee.be", true }, { "soomee1.be", true }, + { "soon.lk", true }, { "soontm.de", true }, { "soontm.net", true }, { "soopure.nl", true }, @@ -65312,6 +66185,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soraharu.com", true }, { "soraiaschneider.com.br", true }, { "sorakumo.jp", true }, + { "sorblack.com", true }, { "sorcix.com", true }, { "sorellecollection.com.au", true }, { "soren.xyz", true }, @@ -65384,6 +66258,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soundforsound.co.uk", true }, { "soundgasm.net", true }, { "soundhunter.xyz", false }, + { "soundmoney.club", true }, + { "soundmoney.page", true }, + { "soundmoney.tech", true }, { "soundprotectionllc.com", true }, { "sounds-familiar.info", true }, { "soundscrate.com", true }, @@ -65399,6 +66276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "souqtajmeel.com", true }, { "sour.is", true }, { "sourcebox.be", true }, + { "sourcecode.hosting", true }, { "sourcecode.love", true }, { "sourcecode.tw", true }, { "sourcely.net", true }, @@ -65423,6 +66301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "southernmost.us", true }, { "southernsurgicalga.com", true }, { "southernutahinfluencers.com", true }, + { "southernviewmedia.com", true }, { "southflanewsletter.com", true }, { "southlakenissanparts.com", true }, { "southlandurology.com", true }, @@ -65463,6 +66342,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "space-y.cf", true }, { "spaceanimalnutrition.com", true }, { "spaceapi.io", true }, + { "spacebabies.nl", true }, { "spacebear.ee", true }, { "spacebestnews.tk", true }, { "spacecafe.org", true }, @@ -65551,6 +66431,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spdillini.com", true }, { "spe.org.co", true }, { "speak-polish.com", true }, + { "speaker-animateur.com", true }, { "speakersbusiness.com", true }, { "spearfishingmx.com", true }, { "specdrones.us", true }, @@ -65579,6 +66460,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "speeders.cf", true }, { "speeders.ga", true }, { "speederss.best", true }, + { "speedliner.com", true }, { "speedof.me", true }, { "speedracer.ca", true }, { "speeds.vip", true }, @@ -65698,6 +66580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spom.net", true }, { "sponc.de", true }, { "spongepowered.org", true }, + { "sponsor.software", true }, { "spontex.org", true }, { "spoofhaus.com", true }, { "spookbook.net", true }, @@ -65734,6 +66617,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sportsjaw.com", true }, { "sportsmanadvisor.com", false }, { "sportsmansblog.com", true }, + { "sportsmashup.com", true }, { "sportstreetstyle.com", true }, { "sportswear.by", true }, { "sportticino.ch", true }, @@ -65772,7 +66656,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spreed.me", true }, { "spreenauto.com", true }, { "spricknet.de", true }, - { "springboardsandmore.com", true }, { "springerundpartner.de", true }, { "springfield-ohio-post.com", true }, { "springfieldbricks.com", false }, @@ -65860,7 +66743,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "squareup.com", true }, { "squareupsandbox.com", true }, { "squattra.com", true }, - { "squawk.cc", true }, + { "squawk.cc", false }, { "squeakie.club", true }, { "squeezemetrics.com", true }, { "squido.ch", true }, @@ -65936,7 +66819,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ss9288.com", true }, { "ss9297.co", true }, { "ss9397.com", true }, - { "ss9721.com", true }, + { "ss9721.com", false }, { "ss9728.co", true }, { "ssa.gov", false }, { "ssab.gov", true }, @@ -65980,7 +66863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sslping.com", true }, { "sslpoint.com", true }, { "ssls.cz", true }, - { "sslsecurity.ooo", true }, { "sslsurvey.de", true }, { "ssmato.me", true }, { "ssmca.com", true }, @@ -66027,7 +66909,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stacktile.io", false }, { "stacktrace.sh", true }, { "stackunderflow.com", true }, - { "stacyscbdoil.com", true }, { "staddlestonesbowness.co.uk", true }, { "stadionmanager.com", true }, { "stadiumexperience.com", true }, @@ -66070,6 +66951,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stagespediatrics.com", true }, { "stagstickets.co.uk", true }, { "stahlfors.com", true }, + { "stail.eu", true }, { "stainedglass.net.au", true }, { "stainhaufen.de", true }, { "stainternational.com", true }, @@ -66106,6 +66988,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "standartgost.ru", true }, { "standheizung-shop.de", true }, { "stangeland.tk", true }, + { "stankingma.com", true }, + { "stankingma.nl", true }, { "stanmed24.pl", true }, { "stannri.org", true }, { "stanron.com", true }, @@ -66179,7 +67063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "startle.studio", true }, { "startlemusic.com", true }, { "startliste.info", true }, - { "startloop.org", true }, { "startmail.com", true }, { "startnowmakingmoneyonline.com", true }, { "startpage.com", true }, @@ -66198,11 +67081,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "starwatches.eu", true }, { "starwins.co.uk", true }, { "stasiniewicz.com", true }, - { "stassi.ch", true }, { "stastka.ch", true }, { "stat.ink", true }, { "state-of-body-and-mind.com", true }, { "statecollegemortgages.com", true }, + { "statelywork.com", true }, { "statgram.me", true }, { "static-692b8c32.de", true }, { "static-assets.io", true }, @@ -66218,6 +67101,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stationa.ch", false }, { "stationary-traveller.eu", true }, { "stationcharlie.co.za", true }, + { "statisticalsurveys.com", true }, { "statistician-online.com", false }, { "statistik-seminare.de", true }, { "statistikian.com", true }, @@ -66308,6 +67192,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stefan.de", true }, { "stefanbayer.de", true }, { "stefancosma.xyz", true }, + { "stefandepooter.com", true }, { "stefanengineering.com", true }, { "stefanfriedli.ch", true }, { "stefanknobel.ch", true }, @@ -66372,7 +67257,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steph3n.me", true }, { "stephan-matthiesen.de", true }, { "stephanao.tk", true }, - { "stephane-huc.net", false }, { "stephaniecalahan.com", true }, { "stephaniedeady.ie", true }, { "stephanieleonidasfan.tk", true }, @@ -66421,10 +67305,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sternplastic.com", true }, { "sternsinus.com", true }, { "sterohouse.com", true }, + { "sterz.io", true }, { "stesti.cz", true }, { "stetson.edu", true }, { "stetspa.it", true }, - { "steuer-voss.de", true }, { "steuerberater-bayreuth.com", true }, { "steuerberater-essen-steele.com", true }, { "steuerberater-hopfner.de", true }, @@ -66466,6 +67350,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stevesdrivingschooltyneside.com", true }, { "stevezheng.cf", true }, { "stevezheng.tk", true }, + { "steviate.com", true }, + { "steviate.de", true }, { "stewartswines.com", true }, { "stewonet.nl", true }, { "stewpolley.com", false }, @@ -66480,18 +67366,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sth.sh", true }, { "sthelensoregon.gov", true }, { "sthenryrc.org", true }, + { "sthpr.gr", true }, { "stian.net", true }, { "stichtingdemuziekkamer.nl", true }, { "stichtingliab.nl", true }, { "stichtingscholierenvervoerzeeland.nl", true }, { "stichtingsticky.nl", true }, + { "stick2bike.de", true }, { "stickandpoketattookit.com", true }, { "stickeramoi.com", true }, { "stickergiant.com", true }, { "stickerparadise.me", true }, { "stickertuningfetzt.de", true }, { "stickies.io", true }, - { "stickmanventures.com", true }, { "stickmy.cn", true }, { "stickstueb.de", true }, { "stickswag.cf", true }, @@ -66558,6 +67445,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stjustin.org", true }, { "stkevin-stbenedict.org", true }, { "stkildaosteopathy.com.au", true }, + { "stl.news", true }, { "stleonardmn.org", true }, { "stln.ml", true }, { "stlouisinsuranceco.com", true }, @@ -66615,7 +67503,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stolpi.is", false }, { "stomt.com", true }, { "stoneagehealth.com.au", true }, - { "stonearm.com", true }, { "stonechatjewellers.ie", true }, { "stonedwarf5.net", true }, { "stonedworms.de", false }, @@ -66638,7 +67525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stopbullying.gov", true }, { "stopforumspam.com", true }, { "stopfraud.gov", true }, - { "stopjunkmail.co.uk", true }, { "stoplossoff.tk", true }, { "stopoverconnections.com", true }, { "stoppage.cf", true }, @@ -66660,9 +67546,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "storiesbysign.com", true }, { "storillo.com", true }, { "storingdesk.com", true }, + { "storjar.com", true }, { "stormboost.cz", true }, { "stormhub.ml", true }, { "stormi.io", true }, + { "stormigrl.ca", true }, { "stormingbrain.com", true }, { "stormwatcher.org", true }, { "stormylegions.tk", true }, @@ -66682,6 +67570,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stoutassociates.com", true }, { "stouter.nl", true }, { "stoxford.com", true }, + { "stp-ip.com", true }, + { "stp-ip.net", true }, + { "stp.dev", true }, { "stpatrickbayshore.org", true }, { "stpatrickkennettsquare.org", true }, { "stpatrickri.org", true }, @@ -66689,6 +67580,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stpatsschool.org", true }, { "stpaulcatholicchurcheastnorriton.net", true }, { "stphilipneripreschool.com", true }, + { "stpip.com", true }, + { "stpip.net", true }, { "str8hd.com", true }, { "str92.com", true }, { "straat.net", true }, @@ -66743,10 +67636,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "streamblur.net", true }, { "streamchan.org", true }, { "streamelements.com", true }, - { "streaming-download.net", true }, { "streaminginternacional.net", true }, { "streamkit.gg", true }, - { "streamlineautogroup.com", true }, { "streampanel.net", true }, { "streampleasure.xyz", true }, { "streams.dyndns.org", true }, @@ -66771,7 +67662,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strengthinyoufitness.com", true }, { "strengthroots.com", true }, { "stretchmarkdestroyer.com", true }, - { "stretchmyan.us", true }, { "stretchpc.com", true }, { "striata.com", true }, { "striata.mobi", true }, @@ -66801,6 +67691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strobotti.com", true }, { "stroccounioncity.org", true }, { "stroeder.com", true }, + { "stroeder.de", true }, { "stroeerdigital.de", true }, { "stroginohelp.ru", true }, { "stroifenix.ru", true }, @@ -66812,7 +67703,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stromak.cz", true }, { "stromkomfort.cz", true }, { "stromzivota.sk", true }, - { "strongmail.de", true }, { "strongohio.gov", true }, { "strongpassword.club", true }, { "strongrandom.com", false }, @@ -66836,7 +67726,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strydom.me.uk", true }, { "stsolarenerji.com", true }, { "ststanislaus.com", true }, - { "ststanstrans.org", true }, { "stt.wiki", true }, { "sttammanyurology.com", true }, { "sttg.com.au", true }, @@ -66851,7 +67740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuartmorris.me", true }, { "stuartmorris.name", true }, { "stuartmorris.tel", true }, - { "stuckateur-bruno.de", true }, + { "stuckateur-bruno.de", false }, { "stucki-bagger.ch", true }, { "stuco.co", true }, { "stucydee.nl", true }, @@ -66896,6 +67785,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studioavvocato.roma.it", true }, { "studioavvocato24.it", true }, { "studiobrandano.com", true }, + { "studiodelbenessere.com", true }, + { "studiodentisticomasi.com", true }, { "studiodentisticosanmarco.it", true }, { "studiodewit.nl", true }, { "studiodoprazer.com.br", true }, @@ -66916,6 +67807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studiosql.ml", true }, { "studiostawki.com", true }, { "studiostudio.net", true }, + { "studiosuracidenunzio.it", true }, { "studiosus-gruppenreisen.com", true }, { "studiosus.com", true }, { "studiotheatrestains.fr", true }, @@ -66923,7 +67815,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studiovaud.com", false }, { "studiovictorialimited.com", true }, { "studioxii.com", true }, - { "studipad.de", true }, + { "studipad.de", false }, { "studipro-formation.fr", true }, { "studipro-marketing.fr", true }, { "studisys.net", true }, @@ -66942,6 +67834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuffi.fr", true }, { "stuffiwouldbuy.com", false }, { "stugor-danmark.com", true }, + { "stujay.com", true }, { "stuka-art.de", true }, { "stulda.cz", false }, { "stumeta.de", true }, @@ -66985,6 +67878,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "styloeart.com", true }, { "stypr.com", true }, { "su1ph3r.io", true }, + { "suachuanha365.com", true }, { "suaraangin.com", true }, { "suareforma.com", false }, { "suaudeau.fr", true }, @@ -66998,7 +67892,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "subdivider.tk", true }, { "subjektzentrisch.de", true }, { "sublimebits.com", true }, - { "sublimetours.com", true }, { "sublocale.com", true }, { "submedia.tv", true }, { "submelon.tech", true }, @@ -67038,6 +67931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sudo.ws", true }, { "sudocat.me", true }, { "sudokian.io", true }, + { "sudosaveclimate.com", true }, { "sudoschool.com", true }, { "sudosu.fr", true }, { "suecaunitedfc.tk", true }, @@ -67053,6 +67947,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sugarpiano.com", true }, { "sugarshin.net", true }, { "sugartownfarm.com", true }, + { "sugaru.pe", true }, { "sugatime.tk", true }, { "suggea.com", true }, { "suggestim.ch", false }, @@ -67088,7 +67983,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sumatriptan365.tk", true }, { "sumcrevillent.tk", true }, { "sumguy.com", true }, - { "sumiko.moe", true }, { "sumit.me", true }, { "sumitchahal.com", true }, { "summa.eu", false }, @@ -67147,9 +68041,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sunjiutuo.com", true }, { "sunlit.cloud", true }, { "sunn.ie", true }, - { "sunnibangla.com", true }, { "sunny.co.uk", true }, { "sunnylyx.com", true }, + { "sunnyside-jazzclub.com", true }, { "sunnysidechurchofchrist.org", true }, { "sunnysideups.co", true }, { "sunoikisis.org", true }, @@ -67234,6 +68128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "superservers.ml", true }, { "supersonnig-festival.de", true }, { "supersonnigfestival.de", true }, + { "superspeller.ng", true }, { "superstargossip.com", true }, { "superstarhost.tk", true }, { "supersteosbouncycastles.com", true }, @@ -67265,6 +68160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supportdesk.nu", true }, { "supportericking.org", true }, { "supportfan.gov", true }, + { "supportmeindia.com", true }, { "supra.tf", true }, { "supracube.com", true }, { "suprem.biz", false }, @@ -67326,6 +68222,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suspension-shop.com", true }, { "suspiciousdarknet.xyz", true }, { "sussexheart.com", true }, + { "sustain.software", true }, { "sustainability.gov", true }, { "sustainabilityknowledgegroup.com", true }, { "sustainabilitysociety.hk", true }, @@ -67343,6 +68240,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suv4.net", true }, { "suvidhaapay.com", true }, { "suzaku.xyz", false }, + { "suzannehines.org", true }, { "suzi3d.com", true }, { "suziekovner.com", true }, { "suzikogsm.tk", true }, @@ -67366,6 +68264,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "svc-sitec.com.mx", true }, { "svc-sitec.mx", true }, { "svc-sitec.org", true }, + { "svc.bike", true }, { "svc1.xyz", true }, { "svdb.co", false }, { "svdesign.su", true }, @@ -67456,7 +68355,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sweetspot.co.kr", true }, { "sweetvanilla.jp", true }, { "sweetydecor.ru", true }, - { "swehack.org", true }, { "sweharris.org", true }, { "swerve-media-testbed-03.co.uk", true }, { "swetrust.com", true }, @@ -67466,6 +68364,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swgenetx.com", true }, { "swhw.io", true }, { "swi.sytes.net", true }, + { "swiatpilki.com", true }, { "swid.co.uk", true }, { "swift-devedge.de", true }, { "swiftbonds.com", true }, @@ -67526,6 +68425,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swkdevserver.tk", true }, { "swktestserver.tk", true }, { "swlabs.org", true }, + { "swmcfcu.org", true }, { "swmlink.com", true }, { "swn-nec.de", true }, { "swo.re", true }, @@ -67565,6 +68465,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "syezd.com.au", true }, { "syha.org.uk", true }, { "sykepleien.no", false }, + { "sykorp.com", true }, { "sylaps.com", true }, { "syleam.in", true }, { "sylfie.net", true }, @@ -67594,8 +68495,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "symplexia.com.br", true }, { "sympmarc.com", true }, { "symposium.beer", true }, - { "sympraxisconsulting.com", true }, { "symptome-erklaert.de", true }, + { "syna.dev", true }, + { "syna.site", true }, { "synabi.com", true }, { "synack.uk", true }, { "synackrst.net", true }, @@ -67628,6 +68530,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "synfin.org", true }, { "synicalsyntax.com", true }, { "synony.me", true }, + { "synonymedeutsch.com", true }, + { "synonyymisanakirja.com", true }, { "synotna.eu", true }, { "synrestaccounting.com", true }, { "syntaxnightmare.com", true }, @@ -67648,6 +68552,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sysadmin.pm", false }, { "sysadmin.xyz", true }, { "sysadmins.ro", true }, + { "syscams.com", true }, { "syscoon.com", true }, { "sysctl.se", true }, { "sysdb.io", true }, @@ -67678,7 +68583,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "systemisbusy.info", true }, { "systemli.org", true }, { "systemnik.store", true }, - { "systemofabrown.com", true }, { "systemonthego.com", true }, { "systemspace.link", true }, { "systemups.com", true }, @@ -67733,7 +68637,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t-stonegroup.com", true }, { "t-unit.ru", true }, { "t.facebook.com", false }, - { "t00228.com", false }, + { "t00228.com", true }, { "t00ts.com", true }, { "t060.com", true }, { "t070.com", true }, @@ -67761,6 +68665,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t39.com", true }, { "t3hty.fr", true }, { "t3rror.net", true }, + { "t404.de", true }, { "t449.com", true }, { "t47.io", true }, { "t49.com", true }, @@ -67833,31 +68738,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t81365.com", true }, { "t82365.com", true }, { "t8250.com", true }, - { "t8803.com", false }, - { "t8805.com", false }, - { "t8807.com", false }, - { "t8809.com", false }, - { "t8815.com", false }, + { "t8803.com", true }, + { "t8805.com", true }, + { "t8807.com", true }, + { "t8809.com", true }, + { "t8815.com", true }, { "t8816.com", false }, - { "t8817.com", false }, - { "t8819.com", false }, - { "t8830.com", false }, + { "t8817.com", true }, + { "t8819.com", true }, + { "t8830.com", true }, { "t88gg.com", false }, - { "t88jj.com", false }, + { "t88jj.com", true }, { "t88kk.com", true }, { "t88ll.com", true }, - { "t88mm.com", false }, - { "t88nn.com", false }, - { "t88oo.com", false }, - { "t88ss.com", false }, - { "t88vip0.com", false }, - { "t88vip1.com", false }, - { "t88vip2.com", false }, - { "t88vip3.com", false }, - { "t88vip4.com", false }, - { "t88vip5.com", false }, - { "t88vip6.com", false }, - { "t88vip7.com", false }, + { "t88mm.com", true }, + { "t88nn.com", true }, + { "t88oo.com", true }, + { "t88ss.com", true }, + { "t88vip0.com", true }, + { "t88vip1.com", true }, + { "t88vip2.com", true }, + { "t88vip3.com", true }, + { "t88vip4.com", true }, + { "t88vip5.com", true }, + { "t88vip6.com", true }, + { "t88vip7.com", true }, { "t88ww.com", true }, { "t88yy.com", true }, { "t9297.co", true }, @@ -67873,6 +68778,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taalmeisje.nl", true }, { "taanishsaifu.gq", true }, { "taartbesteld.nl", true }, + { "taartenvanthea.nl", true }, { "tabacundo.tk", true }, { "tabarnak.ga", true }, { "tabegamisama.com", true }, @@ -67894,6 +68800,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tableturnrms.com", true }, { "tablotv.com", false }, { "taborsky.cz", true }, + { "tac-performance.net", true }, { "tac-volley.com", false }, { "tachi.uk", true }, { "tachyonapp.com", true }, @@ -67925,6 +68832,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taglioepiega.it", true }, { "tagnull.de", true }, { "tagpay.com", true }, + { "tagstationen.se", true }, { "tagtoys.com", true }, { "taguette.com", true }, { "taguette.fr", true }, @@ -67964,7 +68872,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taiwaniacapital.com", true }, { "taiwaniacapital.com.tw", true }, { "taiwaniacapital.tw", true }, - { "taiwantour.info", true }, + { "taiwantour.info", false }, { "taiyouko-hatuden.net", true }, { "taizegroep.nl", true }, { "tajper.pl", true }, @@ -67990,6 +68898,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "takkguitar.net", true }, { "tako-miyabi.xyz", true }, { "taktak.co.uk", true }, + { "taktransport.pl", true }, { "takuhai12.com", true }, { "takumi-s.net", true }, { "takusan.ru", true }, @@ -68012,6 +68921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talkaboutdesign.com", true }, { "talkgadget.google.com", true }, { "talking12.com", true }, + { "talkingband.org", true }, { "talkingmoose.net", true }, { "talkmojang.club", true }, { "talkreal.net", true }, @@ -68025,7 +68935,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tallinnsec.ee", true }, { "tallinnsex.ee", true }, { "tallship.cz", true }, - { "talltreeskv.com.au", true }, { "tallyfy.com", true }, { "talroo.com", true }, { "talsi.eu", true }, @@ -68035,7 +68944,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tam-moon.com", true }, { "tam-safe.com", true }, { "tamada.expert", true }, - { "tamaraboutique.com", true }, { "tamarimolhem.com", true }, { "tambayology.com", true }, { "tambo.es", true }, @@ -68053,7 +68961,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tampacific.vn", true }, { "tamposign.fr", true }, { "tamriel-rebuilt.org", true }, - { "tamsweb.de", true }, { "tamtowild.com", true }, { "tan90.tw", true }, { "tanacio.com", true }, @@ -68067,7 +68974,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tandem-trade.ru", false }, { "tandemexhibits.com", true }, { "tandempartnerships.com", true }, - { "tandk.com.vn", true }, { "tandoanh.vn", true }, { "tandzorg.link", true }, { "tangel.me", true }, @@ -68104,7 +69010,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tanveersingh.tk", true }, { "tanyanama.com", true }, { "tanyatate.xyz", true }, - { "tanz-kreativ.de", true }, + { "tanz-kreativ.de", false }, { "tanz.info", true }, { "tanzhijun.com", true }, { "tanzo.io", true }, @@ -68212,7 +69118,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taxedesejour-airbnb.fr", true }, { "taxhawk.com", true }, { "taxhunter.com.au", true }, - { "taxi-chamonix.fr", false }, + { "taxi-chamonix.fr", true }, { "taxi-collectif.ch", false }, { "taxi-domzale.tk", true }, { "taxi-edessas.gr", true }, @@ -68323,7 +69229,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teachwithouttears.com", true }, { "teahut.net", true }, { "tealdotsinanorangeworld.com", true }, - { "teallhaycock.com", true }, { "team-azerty.com", true }, { "team-bbd.com", true }, { "team-io.net", true }, @@ -68338,6 +69243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teambition.com", true }, { "teamdaylo.xyz", true }, { "teamfilm.tk", true }, + { "teamhinkleyc.com", true }, { "teamif.io", true }, { "teamkoncert.pl", true }, { "teamliquid.com", true }, @@ -68350,6 +69256,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teampaddymurphy.ie", true }, { "teamrevolution.tk", true }, { "teams.microsoft.com", true }, + { "teams.microsoft.us", true }, { "teamsimplythebest.com", true }, { "teamspeak-serverlist.xyz", true }, { "teamsuccess.io", true }, @@ -68384,9 +69291,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tech-blogger.net", true }, { "tech-clips.com", false }, { "tech-essential.com", true }, + { "tech-idea.com", true }, { "tech-info.jp", true }, { "tech-leaders.jp", true }, - { "tech-mfoda.com", true }, { "tech-ninja.de", true }, { "tech-professor.ir", true }, { "tech-rat.com", true }, @@ -68456,6 +69363,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techniclab.net", false }, { "techniclab.org", false }, { "techniclab.ru", true }, + { "technicwaladost.com", true }, + { "techniekutrecht.nl", true }, { "technifocal.com", true }, { "technik-boeckmann.de", true }, { "technistan.in", true }, @@ -68499,6 +69408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techtrader.io", true }, { "techunit.org", true }, { "techusers.de", true }, + { "techvalue.gr", true }, { "techvhow.com", true }, { "techview.link", true }, { "techviewforum.com", true }, @@ -68523,7 +69433,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tecnicoelettrodomestici.roma.it", true }, { "tecnicosenlineablanca.com", true }, { "tecnikan.com.ar", true }, - { "tecnimas.com.mx", true }, { "tecnoarea.com.ar", true }, { "tecnoblog.net", true }, { "tecnocomp-systems.com", true }, @@ -68533,7 +69442,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tecnologiasurbanas.com", true }, { "tecnopiniones.com", true }, { "tecon.co.at", true }, - { "tecyt.com", true }, { "ted.do", true }, { "tedb.us", true }, { "teddy.ch", true }, @@ -68541,6 +69449,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teddykatz.com", true }, { "teddylu.info", true }, { "teddyss.com", false }, + { "teddywayne.com", true }, { "tedsdivingsystem.com", true }, { "tedxyalesecondaryschool.com", true }, { "teeautomat-teemaschine.de", true }, @@ -68554,13 +69463,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teengirl.pub", true }, { "teenportal.net", true }, { "teenpussypornvid.com", true }, + { "teenringen.nl", true }, { "teensexgo.com", true }, { "teensybows.hu", true }, { "teeqq.com", true }, { "teetje-doko.de", true }, { "teetoptens.com", true }, { "teeworlds-friends.de", true }, - { "teextee.com", true }, { "tefek.cz", true }, { "teganlaw.ca", true }, { "teganlaw.com", true }, @@ -68584,7 +69493,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teknoforums.com", true }, { "teknogeek.id", true }, { "teknoroit.com", true }, - { "tekstschrijvers.net", true }, + { "tektoria.de", true }, { "tektouch.net", true }, { "tektuts.com", true }, { "telamon.eu", true }, @@ -68602,6 +69511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "telecharger-itunes.com", true }, { "telecharger-open-office.com", true }, { "telecharger-winrar.com", true }, + { "telecommutejobs.com", true }, { "telecomwestland.nl", true }, { "teledivi.com", true }, { "telefon.report", true }, @@ -68633,6 +69543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teleskell.org", true }, { "telestepina.ru", true }, { "telesto.online", true }, + { "teletaxe.fr", true }, { "teletexto.com", true }, { "teletxt.me", true }, { "televizeseznam.cz", true }, @@ -68711,6 +69622,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tentacletank.com", true }, { "tentations-voyages.com", false }, { "tentech.io", true }, + { "tenthirtyonepictures.com", true }, { "tenthousandcoffees.com", true }, { "tenyx.de", true }, { "tenzer.dk", true }, @@ -68736,7 +69648,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teraservice.eu", true }, { "terass.com", true }, { "terengganudaily.tk", true }, - { "terezalukasova.cz", true }, { "teriiphotography.com", true }, { "teriyakisecret.com", true }, { "termbackti.me", true }, @@ -68768,6 +69679,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terranova.fi", true }, { "terrapay.com", true }, { "terrasoverkappingvillage.be", true }, + { "terrasoverkappingvillage.nl", true }, { "terrastaffinggroup.com", false }, { "terraweb.net", true }, { "terrax.net", true }, @@ -68802,6 +69714,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "test-textbooks.com", true }, { "test.de", true }, { "test.support", true }, + { "test3-websiteboost.nl", true }, { "testadren.com", true }, { "testadron.com", true }, { "testbirds.cz", true }, @@ -68825,6 +69738,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "testosteronedetective.com", true }, { "testovaci.ml", true }, { "testpornsite.com", true }, + { "testpsicotecnicos.com.es", true }, + { "testspsicotecnicos.org", true }, { "testsuite.org", true }, { "testthis.cf", true }, { "testuje.net", true }, @@ -68838,7 +69753,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tetsai.net", true }, { "tetsugakunomichi.jp", true }, { "tetsumaki.net", true }, - { "teufel.dk", true }, { "teulon.eu", true }, { "teunstuinposters.nl", true }, { "teusink.eu", true }, @@ -68859,6 +69773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "texasvolunteerattorneys.org", true }, { "texaswinetrail.com", true }, { "texby.com", true }, + { "texhnolyze.net", true }, { "texiafinishing.com", true }, { "texier.mx", true }, { "text-shirt.com", false }, @@ -68902,24 +69817,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tgbabyzoo.com", true }, { "tgbyte.de", true }, { "tgexport.eu", true }, - { "tgo0000.com", false }, - { "tgo0088.com", false }, - { "tgo1111.com", false }, - { "tgo2222.com", false }, + { "tgo0000.com", true }, + { "tgo0088.com", true }, + { "tgo1111.com", true }, + { "tgo2222.com", true }, { "tgo3333.com", false }, { "tgo4444.com", false }, - { "tgo456.com", false }, + { "tgo456.com", true }, { "tgo5555.com", false }, - { "tgo58.com", false }, - { "tgo6688.com", false }, - { "tgo7777.com", false }, - { "tgo7788.com", false }, - { "tgo789.com", false }, - { "tgo8899.com", false }, - { "tgo9988.com", false }, - { "tgoaa.com", false }, - { "tgoall.com", false }, - { "tgoasia.com", false }, + { "tgo58.com", true }, + { "tgo6688.com", true }, + { "tgo7777.com", true }, + { "tgo7788.com", true }, + { "tgo789.com", true }, + { "tgo8899.com", true }, + { "tgo9988.com", true }, + { "tgoaa.com", true }, + { "tgoall.com", true }, + { "tgoasia.com", true }, { "tgod.co", true }, { "tgtv.tn", true }, { "tgtw.cc", true }, @@ -68958,7 +69873,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thalgott.net", false }, { "thalhammer.it", true }, { "thalia.nu", true }, - { "thalita-reload.com", true }, { "thallgordleyrealtor.com", true }, { "thalliman.com", true }, { "thallinger.me", true }, @@ -68995,7 +69909,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "the-finance-blog.com", true }, { "the-forgotten.net", true }, { "the-gist.io", true }, - { "the-hemingway-code.de", true }, + { "the-hemingway-code.de", false }, { "the-jeuxflash.com", true }, { "the-kuusatu.com", true }, { "the-medium-dolphore.com", false }, @@ -69009,7 +69923,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "the-trophy-company.com", true }, { "the-woods.org.uk", true }, { "the-zenti.de", true }, - { "the.ie", true }, { "the1way.net", true }, { "the2f.de", true }, { "the3musketeers.biz", true }, @@ -69034,7 +69947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thealonas.tk", true }, { "theandroidsoul.com", true }, { "theangelfishfoundation.org", true }, - { "theanticellulitediet.com", true }, { "theantisocialengineer.com", true }, { "theapplewiki.com", true }, { "theappliancedepot.co.uk", false }, @@ -69058,7 +69970,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebasebk.org", true }, { "thebasicstudio.com", true }, { "thebcm.co.uk", true }, - { "thebeachessportsphysio.com", true }, { "thebeardedrapscallion.com", true }, { "thebeginningviolinist.com", true }, { "theberries.tk", true }, @@ -69117,6 +70028,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecavalries.com", true }, { "thecellulitediet.com", true }, { "thechallenge.fit", true }, + { "thechandigarhcity.com", true }, { "thechargertimes.com", true }, { "thechavs.xyz", true }, { "thecherryship.ch", false }, @@ -69162,7 +70074,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thedinnerdetective.com", true }, { "thediscovine.com", true }, { "thedocumentrefinery.com", true }, - { "thedom.site", true }, { "thedreamtravelgroup.co.uk", true }, { "thedronechart.com", true }, { "thedroneely.com", true }, @@ -69178,8 +70089,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theel0ja.ovh", true }, { "theelectricguide.com", true }, { "theemasphere.com", true }, - { "theencounter.nu", true }, - { "theender.net", true }, { "theentertainmentcontractor.com", true }, { "theepankar.com", true }, { "theepiclounge.com", true }, @@ -69222,6 +70131,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thefurniturefamily.com", true }, { "thefusion.net.in", true }, { "thefussyeater.ie", true }, + { "thegadgetsuperstore.com", true }, { "thegarrowcompany.com", true }, { "thegatheringocala.com", true }, { "thegaucompany.healthcare", true }, @@ -69239,6 +70149,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thegreenmanpottery.com", true }, { "thegreenpark.co.uk", true }, { "thegreens.us", true }, + { "thegrio.com", true }, { "thegroovecartel.com", true }, { "thegrowhouse.ca", true }, { "thegvoffice.net", true }, @@ -69258,10 +70169,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thehonorguard.org", true }, { "thehookup.be", true }, { "thehopefuture.com", true }, + { "thehopper.io", true }, { "thehotfix.net", true }, { "thehotness.tech", true }, { "thehub.ai", false }, { "thehullbeekeeper.co.uk", true }, + { "thehunky.com", true }, { "theideaskitchen.com.au", true }, { "theidiotboard.com", true }, { "theig.co", true }, @@ -69280,6 +70193,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thejacksoninstitute.com.au", true }, { "thejimmyw.uk", true }, { "thejoneshub.com", true }, + { "thejonsey.com", true }, + { "thejsmodel.com", true }, { "thejunkfiles.com", true }, { "thekev.in", true }, { "thekeymusic.com", true }, @@ -69305,9 +70220,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thelifeofmala.com", true }, { "thelinuxspace.com", true }, { "thelinuxtree.net", true }, - { "thelittlecraft.com", true }, { "thelittlejewel.com", true }, { "thelittlepeartree.eu", true }, + { "thelivinggod.online", true }, { "thelocals.ru", true }, { "thelonelyones.co.uk", true }, { "thelonious.nl", true }, @@ -69318,6 +70233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themarshallproject.org", true }, { "themaster.site", true }, { "themasterplan.com.au", true }, + { "themathbehindthe.science", true }, { "themathscentre.com", true }, { "themattresswarehouse.co.za", true }, { "themeaudit.com", true }, @@ -69334,7 +70250,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themimitoof.fr", false }, { "theminiacs.com", true }, { "themist.cz", true }, - { "themoep.at", true }, { "themoneyconverter.com", true }, { "themonkeytrail.co.uk", true }, { "themonthly.com.au", true }, @@ -69374,6 +70289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theoldbrewhouse.info", true }, { "theolivetreerestaurants.com", true }, { "theologyz.com", true }, + { "theomg.co", true }, { "theonegroup.co.uk", true }, { "theonethaimassage.de", true }, { "theoosmetalart.nl", true }, @@ -69417,6 +70333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thepriorybandbsyresham.co.uk", true }, { "theprivacysolution.com", true }, { "theproject.cf", true }, + { "theprojectgroup.com", true }, { "theprojectx.tk", true }, { "thepromisemusic.com", true }, { "theptclist.tk", true }, @@ -69464,7 +70381,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "therworth.eu", true }, { "therworth.net", true }, { "therworth.org", true }, - { "thesage.cf", true }, { "thesalonthing.com", false }, { "thesandboxchicago.com", true }, { "thesanta.biz", true }, @@ -69501,13 +70417,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesishelp.net", true }, { "theskingym.co.uk", true }, { "thesled.net", true }, + { "thesleepdoctor.com", true }, { "thesmallbusinesswebsiteguy.com", true }, { "thesmokingcuban.com", true }, { "thesnellvilledentist.com", false }, { "thesocialmediacentral.com", true }, { "thesoundstageatstrangeland.com", true }, { "thesplashlab.com", true }, - { "thesslonline.com", true }, { "thesslstore.com", true }, { "thestatementjewelry.com", true }, { "thestationatwillowgrove.com", true }, @@ -69515,7 +70431,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesteins.org", false }, { "thestockoasis.com", true }, { "thestoneage.de", true }, - { "thestory.ie", true }, { "thestoryshack.com", true }, { "thestral.pro", true }, { "thestralbot.com", true }, @@ -69530,7 +70445,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theta.eu.org", true }, { "thetapirsmouth.com", true }, { "thetassos.com", true }, - { "thetechbasket.com", true }, { "thetechieflutist.com", true }, { "thethoughttrainer.com", true }, { "thethreadofhope.org", true }, @@ -69539,7 +70453,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thetiedyelab.com", true }, { "thetinylife.com", true }, { "thetipo01.tk", true }, - { "thetomatosoup.com", true }, { "thetomharling.com", true }, { "thetopmovie.gq", true }, { "thetorlock.com", true }, @@ -69550,6 +70463,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thetravelhack.com", true }, { "thetree.ro", true }, { "thetrendspotter.net", true }, + { "thetrustedzone.com", true }, { "thetuco.fr", true }, { "thetuxkeeper.de", false }, { "thetvtraveler.com", true }, @@ -69590,7 +70504,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thewoosh.me", true }, { "theworkingeye.nl", true }, { "theworld.tk", true }, - { "theworldbattle.com", true }, { "theworldexchange.com", true }, { "theworldexchange.net", true }, { "theworldexchange.org", true }, @@ -69602,10 +70515,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theycallmefox.net", true }, { "theyear199x.org", true }, { "theyearinpictures.co.uk", true }, - { "theyosh.nl", true }, + { "theyosh.nl", false }, { "theyourbittorrent.com", true }, { "thezero.org", true }, { "thezillersathenshotel.com", true }, + { "thgstardragon.com", true }, { "thiagohersan.com", true }, { "thibaultwalle.com", true }, { "thienteakee.com", true }, @@ -69617,6 +70531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thierrymazue.fr", true }, { "thietbithoathiem.net", true }, { "thietkegianhangtttm.com", true }, + { "thietkenoithatshop.com", true }, { "thijmenmathijs.nl", true }, { "thijs.amsterdam", true }, { "thijs.fr", true }, @@ -69648,7 +70563,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thinkindifferent.net", true }, { "thinkingandcomputing.com", true }, { "thinkingliberty.com", true }, - { "thinkingplanet.net", true }, { "thinkmarketing.ca", true }, { "thinkquality.nl", true }, { "thinkrealty.com", true }, @@ -69660,7 +70574,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thirdworld.moe", true }, { "thirtysixseventy.ml", true }, { "thiry-automobiles.net", false }, - { "this-server-will-be-the-death-of-me.com", true }, { "thisbrownman.com", true }, { "thiscloudiscrap.com", false }, { "thiscode.works", true }, @@ -69763,7 +70676,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "threit.de", true }, { "thriftdiving.com", true }, { "thrillernyc.com", true }, - { "thriveafterabuse.com", true }, { "thriveta.com", true }, { "thriveweb.com.au", true }, { "thrivewellnesshub.co.za", true }, @@ -69776,7 +70688,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thrw.ml", true }, { "thsc.us", true }, { "thscpac.org", true }, - { "thsecurity.cz", true }, { "thues.eu", true }, { "thuisverpleging-meerdael.be", true }, { "thullbery.com", true }, @@ -69872,10 +70783,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tiernanx.com", true }, { "tieronegraphics.com", true }, { "tierradeayala.com", true }, + { "tierschutz-niederrhein.de", true }, { "ties.com", true }, { "tiew.pl", true }, { "tifan.net", true }, { "tifaware.com", true }, + { "tiffany.life", true }, { "tiffanywatson.xyz", true }, { "tiffnix.com", true }, { "tiger21.com", true }, @@ -69901,6 +70814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tilde.link", true }, { "tildes.net", true }, { "tildesnyder.com", true }, + { "tilellit.pro", true }, { "tiles-for-facing.tk", true }, { "tilesbay.com", true }, { "tileyourvisit.pt", true }, @@ -69913,7 +70827,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tillwalldrug.com", true }, { "tilman.ninja", true }, { "tilosp.de", true }, - { "tilta.com", true }, + { "tiltedscalescollective.org", true }, { "tiltedwindmillcrafts.com", true }, { "tim-demisch.de", true }, { "timacdonald.me", true }, @@ -69976,7 +70890,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timonengelke.de", true }, { "timoso.de", true }, { "timothy.tk", true }, - { "timothysykes.com", true }, { "timowi.de", true }, { "timoxbrow.com", true }, { "timroes.de", true }, @@ -70008,6 +70921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinkerbeast.com", true }, { "tinkerboard.org", true }, { "tinkerers-trunk.co.za", true }, + { "tinkererstrunk.co.za", true }, { "tinkertry.com", true }, { "tinlc.org", true }, { "tinlook.com", true }, @@ -70051,12 +70965,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tipranks.com", true }, { "tips4india.tk", true }, { "tipsacademicos.com", true }, - { "tipsdebellezaysalud.com", true }, { "tipsmake.com", true }, { "tipsport.cz", true }, { "tipstersweb.com", true }, { "tipsypresent.com", true }, { "tipulnagish.co.il", true }, + { "tiqets.com", true }, { "tir-mauperthuis.fr", true }, { "tircentrale.net", true }, { "tirionnetwork.de", true }, @@ -70066,6 +70980,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tirteafuera.tk", true }, { "tirupatinightwear.co.in", true }, { "tis.ph", true }, + { "tischlerei-geher.at", true }, { "tischlerei-klettke.de", true }, { "tisgroup.com.my", true }, { "tishopsv.com", true }, @@ -70109,7 +71024,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tk-smart.ru", true }, { "tk2net.com", true }, { "tkacz.pro", true }, - { "tkanemoto.com", true }, + { "tkanemoto.com", false }, { "tkat.ch", true }, { "tkbuilders.net", true }, { "tkcafe.net", true }, @@ -70134,6 +71049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tlehseasyads.com", true }, { "tleng.de", true }, { "tlo.xyz", true }, + { "tloschinski.de", true }, { "tloxygen.com", true }, { "tls-proxy.de", true }, { "tls.blue", true }, @@ -70177,14 +71093,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tmpsantos.com.br", true }, { "tmsdiesel.com", true }, { "tmtopup.com", true }, - { "tn-bb.com", true }, { "tn0.club", true }, { "tnb-plattform.de", true }, { "tncentro.com", true }, { "tnd.com.ar", true }, { "tndentalwellness.com", true }, { "tniad.mil.id", false }, - { "tnl.cloud", true }, { "tnonline.net", true }, { "tnosha.gov", true }, { "tnrealid.gov", true }, @@ -70199,13 +71113,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "to-med.ru", true }, { "to-riktari.gr", true }, { "to2mbn.org", true }, - { "toabetteryou.org", true }, { "toad.ga", true }, { "toast.al", false }, { "tob-rulez.de", true }, { "tobacco.gov", true }, { "tobaccolocker.com", true }, { "tobbro-trans.de", true }, + { "tobdesignfirm.com", true }, { "tobedo.net", true }, { "tobefree.eu", true }, { "tober-cpag.de", true }, @@ -70224,7 +71138,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tobias-picha.de", true }, { "tobias-weidhase.de", true }, { "tobias.gr", true }, - { "tobias4.ddns.net", true }, + { "tobias4.ddns.net", false }, { "tobiasbergius.se", true }, { "tobiasbrunner.net", true }, { "tobiasconradi.com", true }, @@ -70294,6 +71208,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toeglhofer.at", true }, { "toeightycountries.com", true }, { "toekomstperspectief.be", true }, + { "toepferwerk.de", true }, { "toerschaatsenknsb.nl", true }, { "toerschaatsenoverijssel.nl", true }, { "toest.bg", true }, @@ -70370,7 +71285,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomahawk.ca", true }, { "tomandmara.com", true }, { "tomandshirley.com", true }, - { "tomandsonya.com", true }, { "tomandsonya.net", true }, { "tomandsonya.org", true }, { "tomarnarede.pt", true }, @@ -70424,6 +71338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tommyemo.com", true }, { "tommyemo.net", true }, { "tommymoya.tv", true }, + { "tommyphotographie.com", true }, { "tomnatt.com", true }, { "tomo.gr", false }, { "tomoradexpert.ro", true }, @@ -70567,6 +71482,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topeducationhelp.co", true }, { "topekafoundationpros.com", true }, { "topeng-emas.com", true }, + { "toperadigital.com", true }, { "topesb.com", true }, { "topferta.com", true }, { "topfivepercent.co.uk", true }, @@ -70616,6 +71532,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topwoodltd.co.uk", true }, { "topyachts-shop.com.ua", true }, { "topyachts.com.ua", true }, + { "tor.us", true }, { "tor2web.org", true }, { "toracon.org", true }, { "torbay.ga", true }, @@ -70701,7 +71618,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totalforcegym.com", false }, { "totalhomecareinc.com", true }, { "totalhost.gq", true }, - { "totallclean.com", true }, { "totallemaiildelivery.com", true }, { "totallemaildelivery.com", true }, { "totallylegitimatehosting.ru", true }, @@ -70713,6 +71629,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totalprint.hu", true }, { "totalsport-bg.com", true }, { "totaltriathlon.com", true }, + { "totalwebboost.nl", true }, { "totalwebmedia.nl", true }, { "totch.de", true }, { "totem-international.com", true }, @@ -70739,6 +71656,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tougetu.com", true }, { "tough.email", true }, { "toughlife.info", true }, + { "toughvps.com", true }, { "touhou.ac.cn", true }, { "touhou.fm", true }, { "touhou.tw", true }, @@ -70810,6 +71728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toyokawa-fan.com", true }, { "toyopac.com", true }, { "toyota-kinenkan.com", true }, + { "toypro.com", true }, { "toys-robots.cf", true }, { "toyschina.cf", true }, { "toysperiod.com", true }, @@ -70862,9 +71781,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trackify.tk", true }, { "tracking-app.tk", true }, { "tracking.best", true }, - { "trackingstream.com", true }, { "trackrecordpro.co.uk", true }, { "tracksa.com.ar", true }, + { "trackulo.us", true }, { "trackyourlogs.com", true }, { "tractorfan.nl", true }, { "tractorpumps.com", true }, @@ -70893,6 +71812,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trading-analytics.com", true }, { "tradinghelper.be", true }, { "tradingview.com", true }, + { "traditionalturk.com", true }, { "traditions.nl", true }, { "traditionskapperscollege.nl", true }, { "traditionsvivantesenimages.ch", true }, @@ -70922,6 +71842,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trainhornforums.com", true }, { "trainiac.com.au", true }, { "traininghamburg.de", true }, + { "trainingminds.nl", true }, { "trainingproviderresults.gov", true }, { "trainings-handschuhe-test.de", true }, { "trainingswiese.at", true }, @@ -70955,7 +71876,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traintimes.dk", true }, { "traintimes.fi", true }, { "traintimes.ie", true }, - { "traintimes.it", true }, { "traintimes.lu", true }, { "traintimes.nl", true }, { "traintimes.se", true }, @@ -70974,6 +71894,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trance-heal.de", true }, { "trance-heal.me", true }, { "trance.im", true }, + { "tranceattic.com", true }, { "tranceheal.com", true }, { "tranceheal.me", true }, { "trancehost.com", true }, @@ -71029,6 +71950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "transmisjeonline.pl", true }, { "transmithe.net", true }, { "transmitit.pl", true }, + { "transmutatie.nl", true }, { "transmute.review", true }, { "transnexus.com", true }, { "transoil.co.uk", true }, @@ -71071,6 +71993,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travel365.it", true }, { "travelamm.com", true }, { "travelarmenia.org", true }, + { "travelassist.us.com", true }, { "travelbuddiesperu.com", true }, { "traveleets.com", true }, { "travelemy.com", true }, @@ -71084,7 +72007,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traveling-thailand.info", true }, { "travelinsurance.co.nz", true }, { "travellers.dating", true }, - { "travelling.expert", true }, { "travellovers.fr", true }, { "travelmexico42.com", true }, { "travelogue.jp", true }, @@ -71109,6 +72031,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travisfranck.com", true }, { "travler.net", true }, { "travotion.com", true }, + { "tray.io", true }, { "trazodononline.gq", true }, { "trbanka.com", true }, { "trea98.org", true }, @@ -71124,7 +72047,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trebek.club", true }, { "trebnie.nl", true }, { "trechosemilhas.com.br", true }, - { "tredevlet.com", true }, { "tree0.xyz", true }, { "treebaglia.xyz", true }, { "treefelling-durban.co.za", true }, @@ -71136,7 +72058,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "treeoilpot.com", true }, { "treeschat.com", true }, { "treestarmarketing.com", true }, - { "treetopsecurity.com", true }, { "treeworkbyjtec.com", true }, { "treezone.net", true }, { "trefcon.cz", true }, @@ -71161,12 +72082,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trendparty.net", true }, { "trendreportdeals.com", true }, { "trendsettersre.com", true }, + { "trendsupplements.com", true }, { "trendus.no", true }, { "trendycrowds.com", true }, { "trendydips.com", true }, { "trendykids.cz", true }, { "trenorario.it", true }, { "trenta.io", true }, + { "trentinogenealogy.com", true }, { "trentonmakesnews.com", true }, { "trenztec.ml", true }, { "tresmaistres.com.br", true }, @@ -71210,12 +72133,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tributh.tk", true }, { "tricare.mil", true }, { "tricefy4.com", true }, + { "tricetirisad.me", true }, { "trichdanhay.com", true }, { "triciaree.com", true }, { "trickedguys.com", true }, { "trickgsm.com", true }, { "trickle.works", true }, { "trico-pigmentazione.it", true }, + { "tricotandopalavras.com.br", true }, { "tricountyathome.com", true }, { "triddi.com", true }, { "trident-online.de", true }, @@ -71239,6 +72164,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trindonball.com", true }, { "trineco.com", true }, { "trineco.fi", true }, + { "tringavillasyala.com", true }, { "trinitasgyor.hu", true }, { "trinitycore.org", true }, { "trinitycorporateservices.com", true }, @@ -71250,6 +72176,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "triozon.hu", true }, { "triphop.com", true }, { "triplecrossfarm.com", false }, + { "triplecrownoutfitters.com", true }, { "triplekeys.net", true }, { "triplethreatband.tk", true }, { "triplicate.gq", true }, @@ -71269,7 +72196,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trit.pro", true }, { "tritiumdisposal.com", true }, { "trix.pw", true }, - { "trix360.com", true }, { "trixati.org.ua", true }, { "trixexpressweb.nl", true }, { "trixiebooru.org", true }, @@ -71358,6 +72284,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "truly-madly-happiness.de", true }, { "trumanlibrary.gov", true }, { "trumanlibrary.org", true }, + { "trummer.xyz", true }, { "trumtrimun.com", true }, { "truncus-encephali.co.uk", true }, { "trungvien.vn", true }, @@ -71378,7 +72305,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "truthserum.co", true }, { "trutopoffer.com", true }, { "truvisory.com", true }, - { "truyencuoi.org", true }, { "truyenfull.net", true }, { "truyenfull.vn", true }, { "trw-reseller.com", true }, @@ -71420,7 +72346,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tsa-sucks.com", true }, { "tsab.moe", true }, { "tsachs.eu", true }, - { "tsai.com.de", true }, { "tsaro.io", true }, { "tsatestprep.com", true }, { "tschuermans.be", true }, @@ -71458,7 +72383,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tsutawal.com", true }, { "tsutsumi-kogyo.jp", true }, { "tsuyuzakihiroyuki.com", true }, - { "tsv-1894.de", true }, { "tszwww.com", true }, { "tt0766.com", false }, { "tt0966.com", false }, @@ -71503,7 +72427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ttuwiki.ee", true }, { "ttuwiki.org", true }, { "ttwoee.com", true }, - { "ttwt.com", true }, + { "ttwt.com", false }, { "tty.space", true }, { "tty1.net", true }, { "ttyystudio.com", true }, @@ -71596,6 +72520,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tupianku.com", true }, { "tupizm.com", true }, { "tuppenceworth.ie", true }, + { "turalt.com", true }, + { "turbohost.co.mz", true }, { "turbomag.pl", true }, { "turbosuflantecluj.ro", true }, { "turdnagel.com", true }, @@ -71604,7 +72530,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "turigum.com", true }, { "turiscar.pt", true }, { "turismodubrovnik.com", true }, - { "turismonochile.com", true }, { "turismonochile.com.br", true }, { "turkey-portal.tk", true }, { "turkface.tk", true }, @@ -71616,7 +72541,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "turkmistress.tk", true }, { "turkrock.com", true }, { "turl.pl", true }, - { "turm-umzuege.de", true }, { "turn-sticks.com", true }, { "turnaroundforum.de", true }, { "turncircles.com", true }, @@ -71627,6 +72551,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "turnout.rocks", true }, { "turpinpesage.fr", true }, { "tursiae.org", true }, + { "turtlearmy.net", true }, { "turtleduckstudios.com", true }, { "turtlepay.io", true }, { "turtlepwr.com", true }, @@ -71657,6 +72582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuts4you.com", true }, { "tuttimundi.org", false }, { "tutu.green", true }, + { "tutu.ro", true }, { "tuversionplus.com", true }, { "tuwaner.com", true }, { "tuxcloud.net", true }, @@ -71701,6 +72627,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tvoysad.ru", true }, { "tvplusiptv.com", true }, { "tvquot.es", true }, + { "tvrestyler.eu", true }, { "tvs-virtual.cz", true }, { "tvseries.info", true }, { "tvsheerenhoek.nl", true }, @@ -71770,6 +72697,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twohuo.com", true }, { "twojapogoda.pl", true }, { "twojfaktum.pl", true }, + { "twolinesmedia.eu", true }, { "tworaz.net", true }, { "twotube.ie", true }, { "twtimmy.com", true }, @@ -71786,12 +72714,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "txlrs.org", true }, { "txm.pl", true }, { "txpi.nsupdate.info", true }, + { "txtd.io", true }, + { "txtdirect.com", true }, + { "txtdirect.dev", true }, + { "txtdirect.io", true }, + { "txtdirect.link", true }, + { "txtdirect.me", true }, + { "txtdirect.org", true }, { "txtecho.com", true }, { "txtfile.eu", true }, { "txurologist.com", true }, - { "ty2u.com", true }, { "ty513.com", true }, - { "ty525.com", true }, { "ty529.com", true }, { "ty561.com", true }, { "ty562.com", true }, @@ -71809,7 +72742,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ty716.com", true }, { "ty723.com", true }, { "ty736.com", true }, - { "ty737.com", true }, { "ty739.com", true }, { "ty750.com", true }, { "ty756.com", true }, @@ -71842,6 +72774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyil.work", true }, { "tykeplay.com", true }, { "tykoon.com", true }, + { "tyl.io", true }, { "tyler.rs", true }, { "tylerdavies.net", true }, { "tylerharcourt.net", true }, @@ -71887,6 +72820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyuo-keibi.co.jp", true }, { "tyva.gq", true }, { "tyva.ml", true }, + { "tz02.com", true }, { "tzermias.gr", true }, { "tzifas.com", true }, { "tziyona.net", true }, @@ -71949,7 +72883,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uatgootax.ru", false }, { "ub3rk1tten.com", false }, { "ub889.com", true }, - { "ubanquity.com", true }, + { "ubanquity.com", false }, { "ubcani.com", true }, { "uberactivist.com", true }, { "uberboxen.net", true }, @@ -71959,7 +72893,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ubermail.me", true }, { "uberpromocodes.us", true }, { "ubertt.org", true }, - { "uberwald.de", true }, { "uberwald.ws", true }, { "ubezpieczenia-poznan.com", true }, { "ubezpieczeniepsa.com", true }, @@ -71967,7 +72900,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ubicaciones-vitamina.cl", true }, { "ubicv.com", true }, { "ubiminds.com", true }, - { "ubineering.de", true }, { "ubis.company", true }, { "ubis.group", true }, { "ubiurbe.com", true }, @@ -72008,6 +72940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "udbhav.me", true }, { "udbina.tk", true }, { "uddate-linthdcp-567app.com", true }, + { "uddi.ng", true }, { "uddin.io", true }, { "udid.fyi", true }, { "udien.tk", true }, @@ -72038,6 +72971,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ufo-blogger.com", true }, { "ufob.edu.br", true }, { "ufocentre.com", true }, + { "ufopaedia.org", true }, { "ufplanets.com", true }, { "ufroo.com", true }, { "ugamyd-p1rosd2jcoeg3edh5o1y.com", true }, @@ -72077,10 +73011,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uk.search.yahoo.com", false }, { "ukari.hokkaido.jp", true }, { "ukas.com", false }, + { "ukb.sch.id", false }, { "ukbc.london", true }, { "ukchemicalresearch.org", false }, { "ukclimbing.com", true }, { "ukdefencejournal.org.uk", true }, + { "ukeuniverse.co.uk", true }, { "ukhas.net", true }, { "ukhillwalking.com", true }, { "ukitbs.com", true }, @@ -72128,6 +73064,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ultimatebabyshowergifts.ga", true }, { "ultimatemafia.net", true }, { "ultimatepaleoguide.com", true }, + { "ultra.group", true }, { "ultrabeautycream.com", true }, { "ultrafine.cf", true }, { "ultramax.biz", true }, @@ -72142,7 +73079,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ultrautoparts.com.au", true }, { "ultravip.com.br", true }, { "ultrixus.rocks", true }, - { "ultspo.net", true }, { "ulys.ch", true }, { "um-sachsen-pictures.de", true }, { "umail2.com", true }, @@ -72214,6 +73150,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unboundmoney.com", true }, { "unboxed.cf", true }, { "unboxforteams.work", true }, + { "unboxyou.com", true }, { "uncarved.com", true }, { "unccelearn.org", true }, { "uncensoreddns.dk", true }, @@ -72221,6 +73158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unclebens-specials.gr", true }, { "undeadbrains.de", true }, { "undeadpirates.net", true }, + { "undeadwalking.com", true }, { "undecidable.de", true }, { "undeductive.media", true }, { "undef.in", false }, @@ -72253,9 +73191,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ungaeuropeer.se", true }, { "ungegamere.dk", true }, { "unghie.com", true }, - { "unhurriedluxury.com", true }, { "uni2share.com", true }, { "unibag.cl", true }, + { "unibev.net", true }, { "unibo.com", true }, { "unibolsit.com", true }, { "unibusreputation.com", true }, @@ -72300,13 +73238,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uniformebateriasheliar.com.br", true }, { "unijob.com.br", true }, { "unik.bg", true }, - { "unikalo.com", true }, { "unikoingold.com", true }, { "unikrn.com", true }, { "unikrn.space", true }, { "unila.edu.br", true }, { "unimbalr.com", true }, - { "uninutri.com.br", true }, + { "uniondeterapeutas.com", true }, { "unionlife-net.com", true }, { "unionplat.ru", true }, { "unionreports.gov", true }, @@ -72347,6 +73284,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "univeril.com", false }, { "univerkeys.com", true }, { "univerpack.net", true }, + { "universal-edge.com", true }, { "universal-happiness.com", true }, { "universal-tutorial.com", true }, { "universal-village.org", true }, @@ -72357,6 +73295,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "universe.horse", true }, { "universeinform.com", true }, { "universeit.mx", true }, + { "universellafredsdanser.se", true }, { "universidadcatolica.tk", true }, { "universidadperu.com", true }, { "universityhousemates.co.uk", true }, @@ -72374,6 +73313,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unixforum.org", true }, { "unixfox.eu", true }, { "unixhost.ga", true }, + { "unixteam.de", true }, { "unixtime.date", true }, { "unkn0wncat.net", true }, { "unknown-player.com", true }, @@ -72404,6 +73344,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unosconotros.com", true }, { "unp.me", true }, { "unpaismejor.es", true }, + { "unpause.io", true }, { "unpkg.com", true }, { "unpleasant.tk", true }, { "unpluggedjuice.dk", true }, @@ -72477,6 +73418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "upgamerengine.net", true }, { "upgauged.com", true }, { "upgradedpoints.com", true }, + { "upgradeguru.de", true }, { "upguard.com", true }, { "uphabit.io", true }, { "upholsterycleanerslondon.co.uk", true }, @@ -72495,10 +73437,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "upmchealthsecurity.us", true }, { "upmon.com", true }, { "upnext.io", true }, + { "uponsel.com", true }, { "upperbeaconsfield.org.au", true }, { "uppercap.com", true }, { "upperroommission.ca", true }, - { "uppfinnarenc.tk", true }, { "upplay.com.br", true }, { "upplevelse.com", true }, { "upr.com.ua", true }, @@ -72510,10 +73452,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "upsettunnel.com", true }, { "upsiteseo.com", true }, { "upstart.com", true }, + { "uptime.fm", true }, { "uptimed.com", true }, { "uptodateinteriors.com", true }, { "uptoon.jp", true }, { "uptoplay.ovh", true }, + { "uptownbabe.com", true }, { "uptownlocators.com", true }, { "uptownvintagecafe.com", true }, { "uptrends.com", true }, @@ -72572,7 +73516,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urcentral.org", true }, { "ureka.org", true }, { "urep.us", true }, - { "urfix.com", true }, { "urgences-valais.ch", true }, { "urgentcaresouthaven.com", true }, { "urion.com.br", true }, @@ -72596,6 +73539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urltodomain.com", true }, { "urnes.org", true }, { "urologyoklahoma.com", true }, + { "uropenn.se", true }, { "urown.net", true }, { "urrestarazuserranoabogados.com", true }, { "ursa-minor-beta.org", true }, @@ -72613,6 +73557,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usa-greencard.eu", true }, { "usa-reisetipps.net", true }, { "usa-viagra.com", true }, + { "usa.gov", true }, { "usa250.gov", true }, { "usaa.com", false }, { "usaautoaz.com", true }, @@ -72624,9 +73569,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usage.be", true }, { "usagexchange.com", true }, { "usagm.gov", true }, + { "usagov.gov", true }, { "usajobs.com", true }, { "usajobs.gov", true }, - { "usakitchensandflooring.com", true }, { "usalearning.gov", true }, { "usamdt.com", true }, { "usamultimeters.com", true }, @@ -72655,6 +73600,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usebean.com", true }, { "usedu.us", true }, { "user-agent.ga", true }, + { "userbase.com", true }, { "usercompare.tk", true }, { "username.nz", true }, { "userra.gov", true }, @@ -72712,7 +73658,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utdsgda.com", true }, { "uteasybooki.com", true }, { "utensil.org", true }, - { "utepils.de", true }, { "utevai.tk", true }, { "utgifter.no", true }, { "utiars.com", true }, @@ -72731,10 +73676,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utopianhomespa.com", true }, { "utopianrealms.org", true }, { "utopicestudios.com", true }, + { "utorg.com.ua", true }, { "utox.io", true }, { "utrace.me", true }, { "utrantor.org", true }, { "utterberry.io", true }, + { "uttnetgroup.fr", true }, { "utugnn.ru", true }, { "utw.me", true }, { "utwente.io", true }, @@ -72767,7 +73714,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uwmarktspecialist.nl", true }, { "uwsoftware.be", true }, { "uwu.lgbt", true }, - { "uwusergdatasystems.com", true }, { "uwvloereruit.nl", true }, { "ux-designers.nl", true }, { "ux-solution.de", true }, @@ -72842,6 +73788,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v55510.com", false }, { "v55520.com", false }, { "v55530.com", false }, + { "v55565.com", false }, { "v55569.com", false }, { "v55580.com", false }, { "v55590.com", false }, @@ -72872,6 +73819,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v68777.com", true }, { "v6957.co", true }, { "v700a.com", true }, + { "v700b.com", true }, { "v700bb.com", true }, { "v700cc.com", true }, { "v700dd.com", true }, @@ -73045,7 +73993,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vandalfsen.me", true }, { "vandam.io", true }, { "vandenbroeck-usedcars.be", false }, - { "vandeput.be", true }, { "vanderbiltcisa.org", true }, { "vanderkley.it", true }, { "vanderkrieken.org", true }, @@ -73067,6 +74014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vaneurology.com", true }, { "vangoghcoaching.nl", true }, { "vanhaos.com", true }, + { "vanhatten.com", true }, { "vanhoudt-usedcars.be", false }, { "vanhoutte.be", false }, { "vanhove.biz", true }, @@ -73075,6 +74023,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vanmalland.com", true }, { "vannaos.com", true }, { "vannaos.net", true }, + { "vannoordgouda.nl", true }, { "vanohaker.ru", true }, { "vanouwerkerk.net", true }, { "vanspa.vn", true }, @@ -73089,7 +74038,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vanwertcountyohio.gov", true }, { "vanwoensel.xyz", true }, { "vanwunnik.com", true }, - { "vap.llc", true }, { "vape-hit.in", true }, { "vapecom-shop.com", true }, { "vapecrunch.com", true }, @@ -73113,7 +74061,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vareillefoundation.fr", false }, { "vareillefoundation.org", false }, { "varela-electricite.fr", true }, - { "varenzeeland.nl", true }, + { "vargaslatten.se", true }, { "varghese.de", true }, { "variable.agency", false }, { "variable.dk", true }, @@ -73139,6 +74087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vase-eroticke-povidky.cz", true }, { "vasel.de", true }, { "vasel.eu", true }, + { "vaselineoel.de", true }, { "vashel.us", true }, { "vasheradio.tk", true }, { "vasileruscior.ro", true }, @@ -73209,7 +74158,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vdcomp.cz", false }, { "vdemuzere.be", true }, { "vdesc.com", true }, - { "vdio.com", true }, { "vdisk24.de", true }, { "vdlp.nl", true }, { "vdmeij.com", true }, @@ -73227,7 +74175,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vecozo.nl", true }, { "vectomatic.org", true }, { "vector.solutions", true }, - { "vectordtg.com", true }, { "vectormagnetics.com", true }, { "vectortrack.com.au", true }, { "vectorwish.com", true }, @@ -73241,6 +74188,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vegalitarian.org", true }, { "vegan-pratique.fr", true }, { "vegane-proteine.com", true }, + { "veganenumbers.com", true }, { "vegangaymer.blog", true }, { "veganism.co.uk", true }, { "veganism.com", true }, @@ -73248,6 +74196,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veganrecipereviews.com", true }, { "vegasluxuryestates.com", true }, { "vegavio.com", true }, + { "vegculinary.com", true }, { "vegekoszyk.pl", true }, { "vegepa.com", true }, { "vegetalvalley.org", true }, @@ -73268,6 +74217,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veil-framework.com", true }, { "veilofsecurity.com", true }, { "veincenterbrintonlake.com", true }, + { "veinexpertspa.com", true }, { "veit.zone", true }, { "vejersferie.de", true }, { "vejersferie.dk", true }, @@ -73331,7 +74281,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "venzocrm.com", false }, { "veply.com", true }, { "ver.ma", true }, - { "veramagazine.jp", true }, + { "veramagazine.jp", false }, { "verasani.ch", true }, { "verasani.com", true }, { "verata.co", true }, @@ -73370,6 +74320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veriomed.com", true }, { "veritafineviolins.com", true }, { "veritas-data.de", true }, + { "veritashomeschoolers.org", true }, { "veritasinvestmentwealth.com", true }, { "verizonconnect.com", false }, { "verizonguidelines.com", true }, @@ -73487,6 +74438,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vgatest.nl", true }, { "vgchat.us", true }, { "vgcheat.com", true }, + { "vgeek.guru", true }, { "vgerak.com", true }, { "vglist.co", true }, { "vgolos.zt.ua", true }, @@ -73510,7 +74462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viajaramsterdam.com", true }, { "viaje-a-china.com", true }, { "vialorran.com", true }, - { "viantours.com", true }, { "viaprinto.de", true }, { "viasinc.com", false }, { "viato.fr", true }, @@ -73561,6 +74512,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "victornet.de", true }, { "victorpelletmill.com", true }, { "victorricemill.com", true }, + { "victorrivera.org", true }, { "victorunix.com", true }, { "victory.radio", true }, { "victoryalliance.us", true }, @@ -73584,7 +74536,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "video-adult-clips-mobile.com", true }, { "videobola.win", true }, { "videobrochuresmarketing.com", true }, - { "videodrome.me", true }, { "videogamecoupons.com", true }, { "videogamer.com", true }, { "videogamesartwork.com", true }, @@ -73611,7 +74562,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "videozv.tk", true }, { "vidiobokep.xyz", true }, { "vidiproject.com", true }, - { "vidister.de", true }, + { "vidister.de", false }, { "vidkovaomara.si", true }, { "vidlyoficial.com", true }, { "vidracariaespelhosbh.com.br", true }, @@ -73631,6 +74582,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vietnam-lifer.com", true }, { "vietnam-tours.tk", true }, { "vietnamese.dating", true }, + { "vietnamesetyping.com", true }, + { "vietnamguide.co.kr", true }, { "vietnamhost.vn", false }, { "vietnamluxurytravelagency.com", true }, { "vietnamphotoblog.com", false }, @@ -73644,8 +74597,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viewing.nyc", true }, { "viewmythoughts.com", true }, { "viewsea.com", true }, - { "viflores.com", true }, - { "vifranco.cl", true }, { "vifsoft.com", true }, { "viga.me", true }, { "vigilanciatotal.com", true }, @@ -73697,11 +74648,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "villablino.tk", true }, { "villach.at", true }, { "villadelprado.tk", true }, + { "villagebridalbyomnibus.com", true }, { "villagecardshop.co.uk", true }, { "villagecenterpediatrics.com", true }, { "villagemagazines.co.uk", true }, { "villagenscamuria.it", true }, - { "villagephysicians.com", true }, + { "villagephysicians.com", false }, { "villagockel.de", true }, { "villainsclothing.com.au", true }, { "villakarma.at", true }, @@ -73750,6 +74702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vinetech.co.nz", true }, { "vingt.me", true }, { "vinicius.sl", true }, + { "vinicuncatours.com", true }, { "vinifriuli.sk", true }, { "vinigas.com", true }, { "vinilosdecorativos.net", true }, @@ -73764,6 +74717,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vinodoc.cz", true }, { "vinokurov.tk", true }, { "vinolli.de", true }, + { "vinorossoconero.com", true }, { "vinoshipper.com", true }, { "vinovum.net", true }, { "vinsation.com", true }, @@ -73793,11 +74747,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vip-moda.ga", true }, { "vip-ssl.com", true }, { "vip.de", true }, - { "vip00228.com", false }, - { "vip11018.com", false }, + { "vip00228.com", true }, + { "vip11018.com", true }, { "vip2132.com", true }, - { "vip22884.com", false }, - { "vip22994.com", false }, + { "vip22884.com", true }, + { "vip22994.com", true }, { "vip33138.com", true }, { "vip4553.com", true }, { "vip5132.com", true }, @@ -73805,12 +74759,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vip5424.com", true }, { "vip6132.com", true }, { "vip7337.com", true }, - { "vip77018.com", false }, + { "vip77018.com", true }, { "vip8522.com", true }, { "vip918.net", true }, { "vipam8.com", true }, { "vipcards.top", true }, - { "vipcp.me", true }, { "vipd88.net", true }, { "vipesball.cc", true }, { "vipesball.info", true }, @@ -73860,12 +74813,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viraltube.my", true }, { "viralvids.gq", true }, { "virgontech.tk", true }, - { "virgopolymer.com", true }, { "viridis-milites.cz", true }, { "viris.si", true }, { "virite.net", true }, { "virostack.com", true }, { "virtit.fr", true }, + { "virtual.hk", false }, { "virtualbrands.com", true }, { "virtualbrestby.tk", true }, { "virtualcitehuallaga.com", true }, @@ -73907,6 +74860,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viseum.co.uk", true }, { "visibox.nl", true }, { "visikom.de", true }, + { "vision-painting.com", false }, { "visionarymedia.nl", true }, { "visiondetails.ru", true }, { "visiondigitalsog.com", true }, @@ -73920,6 +74874,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visionthroughknowledge.com", true }, { "visiontree-beta.eu", true }, { "visionxcreative.gq", true }, + { "visit-montenegro.com", true }, { "visit-thailand.tk", true }, { "visitbeulah.com", true }, { "visitcambridgeshirefens.org", true }, @@ -73931,13 +74886,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visitrainscounty.com", true }, { "vismaconnect.nl", true }, { "visor.ph", true }, - { "vista-calculator.ru", false }, { "vista-research-group.com", true }, { "vistacampus.gov", true }, { "vistastylebuilder.com", false }, { "vistb.me", true }, { "vistec-support.de", true }, { "visto.cl", true }, + { "vistodeturista.com.br", true }, { "visual-cockpit.com", true }, { "visual-concept.net", true }, { "visual-design.cf", true }, @@ -73985,6 +74940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vitrade.de", true }, { "vitrado.de", true }, { "vitsoft.by", true }, + { "viva.ua", true }, { "viva2000.com", true }, { "vivaio.roma.it", true }, { "vivaiocolombo.com", true }, @@ -74018,6 +74974,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivoitaliankitchen.com", true }, { "vivoregularizafacil.com.br", true }, { "vivy.com", true }, + { "viwsec.com.br", true }, { "vixonline.com.br", true }, { "vixrapedia.org", true }, { "viyf.org", true }, @@ -74077,6 +75034,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vm0.eu", true }, { "vmagz.ir", true }, { "vmautorajkot.com", true }, + { "vmcsubastas.com", true }, { "vmf365.tk", true }, { "vmgirls.com", true }, { "vmhydro.ru", false }, @@ -74090,21 +75048,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vnd.cloud", true }, { "vndb.org", true }, { "vneftekamske.tk", true }, + { "vnetboard.com", true }, { "vnfs-team.com", true }, { "vnministries.org", true }, { "vnology.com", true }, { "vnovosibirske.tk", true }, { "vns168.vip", true }, - { "vns377a.com", false }, - { "vns377b.com", false }, - { "vns377c.com", false }, - { "vns377d.com", false }, - { "vns377e.com", false }, - { "vns377f.com", false }, - { "vns377g.com", false }, - { "vns377h.com", false }, - { "vns377i.com", false }, - { "vns377j.com", false }, + { "vns377a.com", true }, + { "vns377b.com", true }, + { "vns377c.com", true }, + { "vns377d.com", true }, + { "vns377e.com", true }, + { "vns377f.com", true }, + { "vns377g.com", true }, + { "vns377h.com", true }, + { "vns377i.com", true }, + { "vns377j.com", true }, { "vns3780.com", true }, { "vns5020.com", true }, { "vns5151.com", false }, @@ -74127,7 +75086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vns68722.com", true }, { "vns6969.com", false }, { "vns89386.com", true }, - { "vnsr112233.com", false }, + { "vnsr112233.com", true }, { "vnvisa.center", true }, { "vnvisa.ru", true }, { "vocab.guru", true }, @@ -74141,6 +75100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "voda.org.ru", true }, { "vodb.me", true }, { "vodb.org", true }, + { "voddinteriors.com", true }, { "vodicak.info", true }, { "vodicaknapocitac.sk", true }, { "vodpay.com", true }, @@ -74171,7 +75131,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "voidpay.org", true }, { "voidptr.eu", true }, { "voids.org", true }, - { "voidshift.com", true }, { "voidx.top", true }, { "voipdigit.nl", true }, { "voipsun.com", true }, @@ -74198,7 +75157,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volchara.tk", true }, { "volga.us", true }, { "volgavibes.ru", false }, - { "voliere-info.nl", false }, { "volker-gropp.de", true }, { "volkergropp.de", true }, { "volkerwesselstransfer.nl", false }, @@ -74213,10 +75171,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volto.io", true }, { "volubilisplus.fr", true }, { "volunteeringmatters.org.uk", true }, + { "volunteersindia.org", false }, { "volvipress.gr", true }, { "volvoconnect.com", true }, { "vomitb.in", true }, { "vonauw.com", false }, + { "vongerlach.at", true }, { "vonimus.com", true }, { "vonkuenheim.de", true }, { "vonniehudson.com", true }, @@ -74308,6 +75268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vpsdream.dk", true }, { "vpsou.com", true }, { "vpsport.ch", true }, + { "vpsproj.dynu.net", true }, { "vpsrussia.com", true }, { "vpsvz.cloud", true }, { "vpsvz.co.uk", true }, @@ -74410,6 +75371,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vubey.yt", true }, { "vucdn.com", true }, { "vuelacaruru.com", true }, + { "vugt.me", true }, { "vuilelakens.be", true }, { "vulcancycling.ga", true }, { "vuldb.com", true }, @@ -74417,7 +75379,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vuljespaarpot.nl", true }, { "vullriede-multimedia.de", false }, { "vulndetect.com", true }, - { "vulnerabilities.io", true }, { "vulnerability.ch", true }, { "vulners.com", true }, { "vulns.sexy", true }, @@ -74488,7 +75449,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w-w-auto.de", true }, { "w-ws.ga", true }, { "w.wiki", true }, - { "w000999.com", false }, + { "w000999.com", true }, { "w00228.com", true }, { "w0102.com", true }, { "w0118.com", true }, @@ -74499,17 +75460,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w0191.com", true }, { "w0195.com", true }, { "w0198.com", true }, + { "w0250.com", true }, { "w045w.com", true }, { "w052w.com", true }, { "w1010w.com", true }, { "w10club.com", false }, - { "w123123.com", false }, + { "w123123.com", true }, { "w1515w.com", true }, { "w158w.com", true }, { "w1717w.com", true }, { "w1n73r.de", true }, { "w233w.com", true }, - { "w234234.com", false }, + { "w234234.com", true }, { "w2929w.com", true }, { "w2design.eu", true }, { "w2n.me", true }, @@ -74532,7 +75494,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w4.no", true }, { "w4040w.com", true }, { "w4141w.com", true }, - { "w456456.com", false }, + { "w456456.com", true }, { "w4b.in", true }, { "w4eg.de", true }, { "w4nvu.org", true }, @@ -74542,13 +75504,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w5050w.com", true }, { "w51365.com", true }, { "w5197.co", true }, - { "w555.com", false }, + { "w555.com", true }, { "w556w.com", true }, - { "w567567.com", false }, + { "w567567.com", true }, { "w5858w.com", true }, { "w5gfe.org", true }, { "w61516.com", true }, { "w61518.com", true }, + { "w61611.net", true }, { "w61616.com", true }, { "w6363w.com", true }, { "w66001.com", true }, @@ -74571,7 +75534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w663w.com", true }, { "w6648.com", true }, { "w666.ag", true }, - { "w666.com", false }, + { "w666.com", true }, { "w66655.com", true }, { "w6671.com", true }, { "w6673.com", true }, @@ -74589,10 +75552,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w66938.com", true }, { "w6698.com", true }, { "w66hao.net", true }, - { "w66w66.com", false }, + { "w66w66.com", true }, { "w6729.co", true }, { "w6729.com", true }, - { "w678678.com", false }, + { "w678678.com", true }, { "w6803.com", true }, { "w6805.com", true }, { "w6808.com", true }, @@ -74609,7 +75572,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w696w.com", true }, { "w7355.com", true }, { "w7474w.com", true }, - { "w789789.com", false }, + { "w789789.com", true }, { "w7k.de", true }, { "w80010.com", true }, { "w8093.com", true }, @@ -74628,14 +75591,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w8659.com", true }, { "w888.ag", true }, { "w888011.com", true }, - { "w888022.com", false }, - { "w888033.com", false }, - { "w888044.com", false }, + { "w888022.com", true }, + { "w888033.com", true }, + { "w888044.com", true }, { "w888055.com", true }, - { "w888066.com", false }, - { "w888077.com", false }, - { "w888088.com", false }, - { "w888099.com", false }, + { "w888066.com", true }, + { "w888077.com", true }, + { "w888088.com", true }, + { "w888099.com", true }, { "w889-line.com", true }, { "w889-line.net", true }, { "w889889.com", true }, @@ -74661,7 +75624,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w97app3.com", true }, { "w97bb.com", true }, { "w97cc.com", true }, - { "w99w99.com", false }, + { "w99w99.com", true }, { "wa-stromerzeuger.de", false }, { "wa.io", true }, { "wa.me", true }, @@ -74750,12 +75713,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wallabies.org", true }, { "wallace-group.net", true }, { "wallacehigh.org.uk", true }, + { "walldisplaysapp.com", true }, { "wallet.google.com", true }, { "wallet.pp.ua", true }, { "walletconnector.cz", true }, { "wallethub.com", false }, { "walletnames.com", true }, - { "wallinger-online.at", false }, { "wallingford.cc", true }, { "wallis-inside.ch", true }, { "wallisch.pro", true }, @@ -74764,7 +75727,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wallpapers.pub", false }, { "wallpaperup.com", true }, { "walls.de", true }, - { "walls.io", true }, { "wallsauce.com", true }, { "walltime.info", true }, { "wallumai.com.au", true }, @@ -74808,7 +75770,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wangbangyu.gq", true }, { "wangbangyu.ml", true }, { "wangbangyu.tk", true }, - { "wanghongfuli.com", true }, { "wangjiatun.com.tw", true }, { "wangjun.me", true }, { "wangqiliang.cn", true }, @@ -74859,6 +75820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "warekon.com", true }, { "warekon.dk", true }, { "warenits.at", false }, + { "warenmedia.com", true }, { "warezoom.com", true }, { "warfield.org.uk", true }, { "wargameexclusive.com", true }, @@ -74944,6 +75906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waterschaplimburg.nl", true }, { "waterside-residents.org.uk", true }, { "waterslide-austria.at", true }, + { "watersview.co.uk", true }, { "watertorenstraat.tk", true }, { "watertrails.io", true }, { "watervillewomenscare.com", true }, @@ -74986,7 +75949,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wbca.ca", true }, { "wbcasaverde.co", true }, { "wbci.us", false }, - { "wbcme.co.uk", true }, + { "wbcme.co.uk", false }, { "wbinnssmith.com", true }, { "wblautomotive.com", true }, { "wblinks.com", true }, @@ -75002,6 +75965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wby.tw", true }, { "wca.link", true }, { "wcbook.ru", false }, + { "wcei.com.au", true }, { "wck.com", true }, { "wcn.life", false }, { "wcosmeticsurgery.com", true }, @@ -75047,7 +76011,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weareincognito.org", true }, { "wearepapermill.co", true }, { "wearepapermill.com", true }, - { "wearesouthafricans.com", true }, + { "wearethreebears.co.uk", true }, { "wearetuzag.com", true }, { "wearewithyou.org", true }, { "wearvr.com", true }, @@ -75066,7 +76030,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web-format.tk", true }, { "web-hotel.gr", true }, { "web-jive.com", true }, - { "web-kouza.com", true }, { "web-mail.info", true }, { "web-odyssey.com", true }, { "web-redacteuren.nl", true }, @@ -75100,11 +76063,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webart-factory.de", true }, { "webartex.ru", true }, { "webarxsecurity.com", true }, + { "webauthnlogin.com", true }, { "webbhuset.se", false }, { "webbiz.co.uk", true }, { "webbricks.ru", true }, { "webbson.net", false }, { "webcam-model.tk", true }, + { "webcams4date.com", true }, { "webcamtoy.com", true }, { "webcaptive.com", true }, { "webcaptive.net", true }, @@ -75121,7 +76086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webconverge.nl", true }, { "webcookies.org", true }, { "webcreativa.tk", true }, - { "webcreatortool.com", true }, + { "webcreatortool.com", false }, { "webcrm.com", true }, { "webcurtaincall.com", true }, { "webdemaestrias.com", true }, @@ -75154,6 +76119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webfilings-mirror-hrd.appspot.com", true }, { "webfilings.appspot.com", true }, { "webfixers.nl", true }, + { "webforsales.ru", true }, { "webgaff.com", true }, { "webgap.io", false }, { "webgarten.ch", true }, @@ -75246,7 +76212,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webseitenserver.com", true }, { "websenat.de", true }, { "webservertalk.com", true }, - { "webshan.ir", true }, { "webshaped.de", true }, { "websharks.org", true }, { "website-engineering.co.za", true }, @@ -75255,7 +76220,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "websitecyber.com", true }, { "websitedesignersmalappuram.ga", true }, { "websitedesignprice.ga", true }, - { "websiteenergizers.com", true }, + { "websiteenergizers.com", false }, { "websiteforstudents.com", true }, { "websiteguider.com", true }, { "websitelia.com", true }, @@ -75282,6 +76247,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webstore.be", false }, { "webstu.be", true }, { "webstudio-n.com", true }, + { "webstudioswest.com", true }, { "webstylemedia.com", true }, { "websvetaines.lt", true }, { "webtasarim.pw", true }, @@ -75295,7 +76261,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webtrees.net", true }, { "webtrek.ch", true }, { "webtrh.cz", true }, - { "webtropia.com", false }, { "webukhost.com", true }, { "webutils.io", true }, { "webwednesday.nl", true }, @@ -75309,7 +76274,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webyazilimankara.com", true }, { "webz.one", true }, { "webzanem.com", true }, - { "webzoly.com", true }, { "wecanvisit.com", true }, { "wechatify.com", true }, { "wecho.net", true }, @@ -75330,10 +76294,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wedovapes.co.uk", true }, { "wedplay.host", true }, { "weebl.me", true }, + { "weeblez.com", true }, { "weeblr.com", true }, { "weecarepreschool.ca", true }, { "weed.ren", true }, - { "weedelec.pl", true }, { "weedlife.com", true }, { "weednews.co", false }, { "weedupdate.com", true }, @@ -75381,7 +76345,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weiling.clinic", true }, { "weils.net", true }, { "weiltoast.de", true }, - { "weimaraner.com.br", true }, { "weimz.com", true }, { "wein.cc", true }, { "wein.co.kr", true }, @@ -75402,11 +76365,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weitsolutions.nl", true }, { "weixiaojun.org", false }, { "weizenke.im", true }, + { "wejdmark.com", true }, { "wekibe.de", true }, { "weknowhowtodoit.com", true }, { "welches-kinderfahrrad.de", true }, { "welcome-werkstatt.com", true }, - { "welcome-werkstatt.de", true }, { "welcome26.ch", false }, { "welcomehelp.de", true }, { "welcomescuba.com", true }, @@ -75436,6 +76399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "welovecatsandkittens.com", true }, { "weloveliving.it", true }, { "welovemail.com", true }, + { "welovemaira.com", true }, { "welp-mail.de", true }, { "welpo.me", true }, { "welsh.com.br", true }, @@ -75501,6 +76465,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "werken-bij-inwork.nl", true }, { "werkenbijdfzs.nl", true }, { "werkenbijsherpa.nl", true }, + { "werkenbijvanderventions.com", true }, + { "werkenbijvanderventions.nl", true }, { "werkenbijwierda.nl", true }, { "werkeninwesterveld.nl", true }, { "werkenvoorphiladelphia.nl", true }, @@ -75616,7 +76582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wg-smue.de", true }, { "wg-steubenstrasse.de", true }, { "wg-tools.de", true }, - { "wg3k.us", false }, + { "wg3k.us", true }, { "wgcaobgyn.com", true }, { "wgcp.com", true }, { "wgdp.gov", true }, @@ -75648,9 +76614,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whatismyip.net", false }, { "whatismyipaddress.ca", true }, { "whatismyipv6.info", true }, - { "whatismypublicip.com", true }, { "whatisthe.cloud", true }, - { "whatisthebestflag.com", true }, { "whatnext.limited", true }, { "whatnot.ai", true }, { "whatsahoy.com", true }, @@ -75714,6 +76678,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whitealps.net", false }, { "whitebear.cloud", true }, { "whitebirdclinic.org", true }, + { "whitecleatbeat.com", true }, { "whitefm.ch", false }, { "whitehathackers.com.br", true }, { "whitehats.nl", true }, @@ -75749,6 +76714,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whizzzbang.co.uk", true }, { "whm.gc.ca", true }, { "whmcs.hosting", true }, + { "whnpa.org", true }, { "who-calledme.com", true }, { "who.pm", true }, { "whoami.eu.org", true }, @@ -75819,6 +76785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "widmer.bz", true }, { "widoj.gov", true }, { "widsl.de", true }, + { "widwap.net", true }, { "wiebel.org", true }, { "wiebetaaltdat.nl", true }, { "wieckiewicz.org", true }, @@ -75860,6 +76827,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wiki-books.ga", true }, { "wiki-play.ru", true }, { "wiki.python.org", true }, + { "wiki24.ru", true }, { "wikibooks.org", true }, { "wikibulz.com", true }, { "wikibuy.com", true }, @@ -75886,6 +76854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wikimediafoundation.org", true }, { "wikimilk.org", true }, { "wikinews.org", true }, + { "wikipedia-mirror.org", true }, { "wikipedia.com", true }, { "wikipedia.org", true }, { "wikipiedi.it", true }, @@ -75920,6 +76889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wilderky.gov", true }, { "wildewood.ca", true }, { "wildfirechain.xyz", true }, + { "wildfirexpeditions.com", true }, { "wildfoxlady.com", true }, { "wildfoxosteopathy.com", true }, { "wildlifeadaptationstrategy.gov", true }, @@ -75929,6 +76899,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wildwind.world", true }, { "wildzoopark.co.uk", true }, { "wildzoopark.com", true }, + { "wilf1rst.com", true }, { "wilfrid-calixte.fr", false }, { "wilgo.ga", true }, { "wilhelm-nathan.de", true }, @@ -75997,6 +76968,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wincasinowin.click", true }, { "winch-center.de", true }, { "winckelmann2020.com", true }, + { "wind.moe", false }, { "windelnkaufen24.de", true }, { "windforme.com", true }, { "windictus.net", true }, @@ -76070,10 +77042,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wire.com", true }, { "wiredcut.com", true }, { "wiredmedia.co.uk", true }, - { "wireframesoftware.com", true }, { "wireheading.com", true }, { "wirekeep.com", true }, { "wireless-emergency-stop.com", true }, + { "wireless4now.com.au", true }, { "wireshark.org", true }, { "wireshocks.com", true }, { "wiretime.de", true }, @@ -76137,6 +77109,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wittywomaniyaa.com", true }, { "witway.nl", false }, { "wivoc.nl", true }, + { "wiwi.nl", true }, { "wiz.at", true }, { "wiz.biz", true }, { "wiz.farm", true }, @@ -76190,6 +77163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wmccancercenter.com", true }, { "wmcns.net", true }, { "wmcroboticsurgery.com", true }, + { "wmcuk.net", true }, { "wmfusercontent.org", true }, { "wmkowa.de", true }, { "wmnrj.com", true }, @@ -76253,14 +77227,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wolfpa.ws", true }, { "wolfram.io", true }, { "wolfsden.cz", true }, + { "wolfshoehle.eu", true }, { "wolfshuegelturm.de", true }, { "wolftain.com", true }, { "wolfteam.tk", true }, + { "wolfvideoproductions.com", true }, { "wolfwings.us", true }, { "wolfy.design", true }, { "wolfy1339.com", true }, { "wolke7.wtf", true }, - { "wolkenbauer.com", true }, { "wolkenspeicher.org", true }, { "wolkjehosting.nl", true }, { "wolkoopjes.nl", true }, @@ -76314,6 +77289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "woodcoin.org", true }, { "woodcountywi.gov", true }, { "woodenson.com", true }, + { "woodenwindowco.com", true }, { "woodev.us", true }, { "woodfordcountyky.gov", true }, { "woodinvillesepticservice.net", true }, @@ -76353,6 +77329,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worcesterpethydrotherapy.com", true }, { "worcestervets.co.uk", true }, { "worcestervetsreferrals.com", true }, + { "word-grabber.com", true }, { "wordadmin.com", true }, { "wordcounter.net", true }, { "wordfence.com", true }, @@ -76395,6 +77372,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worklizard.com", true }, { "workmart.mx", true }, { "worknrby.com", true }, + { "workoptions.com", true }, { "workplace.com", true }, { "workplace.tools", true }, { "workraw.com", true }, @@ -76418,6 +77396,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worlddeafarchitecture.com", true }, { "worldessays.com", true }, { "worldeventscalendars.com", true }, + { "worldfoodfestival.nl", true }, + { "worldhairtrends.com", true }, { "worldix.ml", true }, { "worldmeetings.com", true }, { "worldofarganoil.com", true }, @@ -76426,7 +77406,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worldofparties.co.uk", true }, { "worldofvnc.net", true }, { "worldofwobble.co.uk", true }, - { "worldonwheels.com.au", true }, { "worldpeacetechnology.com", true }, { "worldrecipes.eu", true }, { "worldsfree4u.ga", true }, @@ -76441,12 +77420,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worldwaterprojects.com", true }, { "wormate.io", true }, { "wormbytes.ca", true }, + { "wormdisk.net", true }, { "wormhol.org", true }, { "wormholevpn.net", true }, { "wormincorporated.tk", true }, { "wormpress.com", true }, { "worongarymedical.com.au", true }, { "worst.horse", false }, + { "wort-suchen.de", true }, { "wort.lu", true }, { "worthygo.com", true }, { "woshiluo.com", true }, @@ -76462,7 +77443,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "woudenberg.nl", false }, { "woudenbergsedrukkerij.nl", true }, { "wound-doc.co.uk", true }, - { "wouterbruijning.nl", true }, { "woutergeraedts.nl", true }, { "wouterslop.com", true }, { "wouterslop.eu", true }, @@ -76472,6 +77452,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wow-screenshots.net", true }, { "wowaffixes.info", true }, { "wowbouncycastles.co.uk", true }, + { "wowede.com", true }, { "wowgenial.com", true }, { "wowhelp.it", true }, { "wowi-ffo.de", true }, @@ -76485,7 +77466,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wozalapha.com", true }, { "wp-cloud.fi", false }, { "wp-fastsearch.de", true }, - { "wp-france.com", true }, { "wp-master.org", true }, { "wp-mix.com", true }, { "wp-securehosting.com", true }, @@ -76496,8 +77476,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpandup.org", true }, { "wpbeter.nl", true }, { "wpboot.com", true }, - { "wpbox.cc", true }, - { "wpcanban.com", false }, + { "wpcanban.com", true }, { "wpcc.io", true }, { "wpccu-cdn.org", true }, { "wpcdn.bid", true }, @@ -76505,7 +77484,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpcs.pro", true }, { "wpdivitheme.nl", true }, { "wpdublin.com", true }, - { "wpenhance.com", true }, { "wpexplorer.com", true }, { "wpfast.net", true }, { "wpformation.com", true }, @@ -76515,6 +77493,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wphlive.tv", true }, { "wphosting.ovh", true }, { "wphostingblog.nl", true }, + { "wpinter.com", true }, + { "wpjakarta.com", true }, { "wpldn.uk", true }, { "wplibrary.net", true }, { "wplistings.pro", true }, @@ -76536,6 +77516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpsnelheid.nl", true }, { "wpsono.com", true }, { "wpthaiuser.com", true }, + { "wpthemearchive.com", true }, { "wptorium.com", true }, { "wptotal.com", true }, { "wpwebshop.com", true }, @@ -76556,7 +77537,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wristreview.com", true }, { "write-right.net", true }, { "writeandedit-for-you.com", true }, - { "writecustomessay.com", true }, { "writemyessay.today", true }, { "writemyessays.com", true }, { "writemyestimate.com", true }, @@ -76584,6 +77564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wsadek.ovh", true }, { "wsave.be", true }, { "wsb-immo.at", true }, + { "wsb-immobilien.at", true }, { "wsb.pl", true }, { "wsbhvac.com", true }, { "wscales.com", false }, @@ -76599,7 +77580,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wso01.com", true }, { "wsp-center.com", true }, { "wss.com.ve", true }, - { "wsspalluto.de", true }, { "wssv.ch", true }, { "wstudio.ch", false }, { "wstx.com", true }, @@ -76624,6 +77604,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wug.fun", true }, { "wug.jp", true }, { "wug.news", true }, + { "wuifan.com", true }, { "wuji.cz", true }, { "wulala.us", true }, { "wulfrun-invicta.tk", true }, @@ -76658,7 +77639,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wvv-8522.com", true }, { "wvw-8522.com", true }, { "ww-design.ch", true }, - { "ww00228.com", false }, + { "ww00228.com", true }, { "ww0512.com", true }, { "ww5197.co", true }, { "ww6729.co", true }, @@ -76669,7 +77650,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ww9728.co", true }, { "wwbsb.xyz", true }, { "wwc.ren", true }, - { "wweforums.net", true }, + { "wweforums.net", false }, { "wweichen.com.cn", true }, { "wwgc2011.se", true }, { "wwin818.com", true }, @@ -76734,7 +77715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.heliosnet.com", true }, { "www.history.pe", true }, { "www.honeybadger.io", false }, - { "www.hyatt.com", false }, + { "www.hyatt.com", true }, { "www.icann.org", false }, { "www.irccloud.com", false }, { "www.linode.com", false }, @@ -76765,16 +77746,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.wepay.com", false }, { "www.wordpress.com", false }, { "www.zdnet.com", true }, - { "www00228a.com", false }, - { "www00228b.com", false }, - { "www00228c.com", false }, - { "www00228d.com", false }, - { "www00228e.com", false }, + { "www00228a.com", true }, + { "www00228b.com", true }, + { "www00228c.com", true }, + { "www00228d.com", true }, + { "www00228e.com", true }, { "www63605.com", true }, { "www68277.com", true }, { "wwweb.be", true }, { "wwwindows.co.uk", true }, - { "wwwn888.com", false }, + { "wwwn888.com", true }, { "wwwpheromone.com", true }, { "wwwrailto.com", true }, { "wwww.is", true }, @@ -76822,7 +77803,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wyzphoto.nl", true }, { "wyzwaniemilosci.com", true }, { "wzilverschoon.nl", true }, - { "wzp.ovh", true }, { "wzrd.in", true }, { "wzxaini9.com", true }, { "wzyboy.org", true }, @@ -76834,39 +77814,39 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x.io", true }, { "x.st", true }, { "x001.org", true }, - { "x00228.com", false }, + { "x00228.com", true }, { "x00701.com", true }, { "x00708.com", true }, { "x00738.com", true }, { "x00776.com", true }, { "x00786.com", true }, { "x0r.be", true }, - { "x10006.com", false }, - { "x10007.com", false }, - { "x10008.com", false }, + { "x10006.com", true }, + { "x10007.com", true }, + { "x10008.com", true }, { "x13.com", true }, { "x1616.tk", true }, { "x17.cafe", true }, { "x23.eu", false }, - { "x2816.com", false }, + { "x2816.com", true }, { "x2d2.de", false }, { "x30365.com", true }, - { "x3515.com", false }, + { "x3515.com", true }, { "x3618.com", false }, { "x36533.com", true }, { "x36594.com", true }, { "x378.ch", true }, - { "x3789.com", false }, - { "x3801.com", false }, - { "x3802.com", false }, - { "x3803.com", false }, - { "x3804.com", false }, - { "x3805.com", false }, - { "x3807.com", false }, - { "x3815.com", false }, - { "x3816.com", false }, - { "x3828.com", false }, - { "x3927.com", false }, + { "x3789.com", true }, + { "x3801.com", true }, + { "x3802.com", true }, + { "x3803.com", true }, + { "x3804.com", true }, + { "x3805.com", true }, + { "x3807.com", true }, + { "x3815.com", true }, + { "x3816.com", true }, + { "x3828.com", true }, + { "x3927.com", true }, { "x509.io", true }, { "x5197.co", true }, { "x58e.com", true }, @@ -76906,26 +77886,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x6729.co", true }, { "x69.biz", true }, { "x6957.co", true }, - { "x69x.net", true }, { "x6r3p2yjg1g6x7iu.myfritz.net", true }, - { "x7008.com", false }, - { "x7713.com", false }, + { "x7008.com", true }, + { "x7713.com", true }, { "x7718.com", true }, - { "x7719.com", false }, - { "x7782.com", false }, - { "x7785.com", false }, - { "x7795.com", false }, - { "x77dd.com", false }, + { "x7719.com", true }, + { "x7782.com", true }, + { "x7785.com", true }, + { "x7795.com", true }, + { "x77dd.com", true }, { "x77ee.com", false }, - { "x77hh.com", false }, - { "x77jj.com", false }, - { "x77kk.com", false }, - { "x77mm.com", false }, - { "x77nn.com", false }, - { "x77pp.com", false }, - { "x77qq.com", false }, - { "x77tt.com", false }, - { "x77ww.com", false }, + { "x77hh.com", true }, + { "x77jj.com", true }, + { "x77kk.com", true }, + { "x77mm.com", true }, + { "x77nn.com", true }, + { "x77pp.com", true }, + { "x77qq.com", true }, + { "x77tt.com", true }, + { "x77ww.com", true }, { "x7plus.com", true }, { "x8100000.com", true }, { "x8111111.com", true }, @@ -76964,12 +77943,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x81yy.com", true }, { "x81zz.com", true }, { "x82365.com", true }, - { "x9015.com", false }, + { "x9015.com", true }, { "x9016.com", true }, - { "x9017.com", false }, + { "x9017.com", true }, { "x9297.co", true }, - { "x9701.com", false }, - { "x9718.com", false }, + { "x9701.com", true }, + { "x9718.com", true }, { "x9728.co", true }, { "x98d.com", true }, { "x98e.com", true }, @@ -76995,18 +77974,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x998.com", true }, { "xa.search.yahoo.com", false }, { "xa1.uk", true }, - { "xab123.com", false }, + { "xab123.com", true }, { "xab199.com", true }, - { "xab4.com", false }, - { "xab456.com", false }, - { "xab678.com", false }, - { "xab678a.com", false }, - { "xab678b.com", false }, - { "xab678c.com", false }, - { "xab678d.com", false }, - { "xab789.com", false }, - { "xab799.com", false }, - { "xab899.com", false }, + { "xab4.com", true }, + { "xab456.com", true }, + { "xab678.com", true }, + { "xab678a.com", true }, + { "xab678b.com", true }, + { "xab678c.com", true }, + { "xab678d.com", true }, + { "xab789.com", true }, + { "xab799.com", true }, + { "xab899.com", true }, { "xaba.tk", true }, { "xacker.tk", true }, { "xaffit.com", true }, @@ -77043,7 +78022,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xb201.com", true }, { "xb3008.com", true }, { "xb306.com", true }, - { "xb3636.com", true }, { "xb380.com", true }, { "xb3888.com", true }, { "xb6008.com", true }, @@ -77182,7 +78160,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xbyl91.com", true }, { "xc9988.cc", true }, { "xceedgaming.com", true }, - { "xcentricmold.com", true }, { "xchangeinfo.com", true }, { "xcharge.uk", true }, { "xcler8.com", true }, @@ -77195,6 +78172,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xd.gov", true }, { "xda.im", false }, { "xdawn.cn", true }, + { "xdb.be", true }, { "xdeftor.com", true }, { "xdos.io", true }, { "xdown.org", true }, @@ -77237,6 +78215,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xfcy.me", true }, { "xfd3.de", true }, { "xferion.com", false }, + { "xfive.de", true }, { "xfix.pw", true }, { "xfrag-networks.com", true }, { "xfzhao.com", true }, @@ -77283,7 +78262,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xiangweiqing.co.uk", true }, { "xiangwenquan.me", true }, { "xianjianruishiyouyiyuan.com", true }, - { "xiaobude.cn", true }, { "xiaocg.xyz", true }, { "xiaohui.love", true }, { "xiaojicdn.com", true }, @@ -77297,10 +78275,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xiaomionline24.pl", true }, { "xiaoneijun.cn", true }, { "xiaoneimao.cn", true }, - { "xiaowu.xyz", true }, { "xiaowutou.com", true }, { "xiaoxia.li", true }, - { "xiaoyu.net", true }, { "xiashali.me", true }, { "xiaxuejin.cn", true }, { "xiazhanjian.com", false }, @@ -77314,6 +78290,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xier.ch", true }, { "xif.at", true }, { "xifrem.com", true }, + { "xigaoli.com", true }, { "xight.org", true }, { "xignsys.com", true }, { "xilef.org", true }, @@ -77598,6 +78575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--bucheckernl-0fb.de", true }, { "xn--c1adqibibm8i.com", true }, { "xn--c1aehtaetb.xn--p1ai", true }, + { "xn--c5w032d4vi.xn--fiqs8s", true }, { "xn--c5w27q.ml", true }, { "xn--cck4ax91r.com", true }, { "xn--cck7f515h.com", true }, @@ -77636,7 +78614,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--eebao6b.net", true }, { "xn--ehqw04eq6e.jp", true }, { "xn--elsignificadodesoar-c4b.com", true }, - { "xn--eo5aaa.eu.org", true }, { "xn--erban-e9b.ro", true }, { "xn--erklderbarenben-slbh.dk", true }, { "xn--et8h.cf", false }, @@ -77661,7 +78638,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--hfk-allgu-schwaben-stb.de", true }, { "xn--hgbk4a00a.com", true }, { "xn--hibiskusbltentee-szb.de", true }, - { "xn--hllrigl-90a.at", true }, + { "xn--hllrigl-90a.at", false }, { "xn--hmdiseoweb-y9a.com.ar", true }, { "xn--i2ru8q2qg.com", true }, { "xn--ikketenkpdet-1cb.no", true }, @@ -77671,6 +78648,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--ionunica-29c.ro", true }, { "xn--irr.xn--fiqs8s", true }, { "xn--is8h6d.gq", false }, + { "xn--j1afcdm4f.xn--p1ai", true }, { "xn--j1aoca.xn--p1ai", true }, { "xn--j4h.cf", true }, { "xn--j8se.com", true }, @@ -77708,9 +78686,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--mgbbh2a9fub.xn--ngbc5azd", false }, { "xn--mgbmmp7eub.com", true }, { "xn--mgbpkc7fz3awhe.com", true }, + { "xn--mgbqq.com", true }, { "xn--mgbuq0c.net", true }, { "xn--mgi-qla.life", true }, { "xn--mhringen-65a.de", true }, + { "xn--mntsamling-0cb.dk", true }, { "xn--myrepubic-wub.net", true }, { "xn--myrepublc-x5a.net", true }, { "xn--n8j7dygrbu0c31a5861bq8qb.com", true }, @@ -77773,7 +78753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--t8jo9k1b.com", true }, { "xn--tagungssttte-usedom-owb.de", true }, { "xn--tagungssttte-zinnowitz-84b.de", true }, - { "xn--tda.ml", true }, + { "xn--tgstationen-x8a.se", true }, { "xn--thorme-6uaf.ca", true }, { "xn--tigreray-i1a.org", true }, { "xn--trdler-xxa.xyz", true }, @@ -77784,6 +78764,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--u9jv84l7ea468b.com", true }, { "xn--u9jy16ncfao19mo8i.nagoya", true }, { "xn--uasacrilicas-9gb.net", true }, + { "xn--uist1idrju3i.jp", true }, { "xn--uisz44m.online", true }, { "xn--ukasik-2db.pl", true }, { "xn--underux-0za.eu", true }, @@ -77853,35 +78834,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xpj000666.com", true }, { "xpj090.com", true }, { "xpj100.com", true }, - { "xpj567088.com", false }, - { "xpj567288.com", false }, - { "xpj567388.com", false }, - { "xpj567888.com", false }, + { "xpj567088.com", true }, + { "xpj567288.com", true }, + { "xpj567388.com", true }, + { "xpj567888.com", true }, { "xpj678678.com", true }, { "xpj90.com", true }, - { "xpj909.cc", false }, - { "xpj909.com", false }, - { "xpj909.in", false }, + { "xpj909.cc", true }, + { "xpj909.com", true }, + { "xpj909.in", true }, { "xpj909.me", true }, - { "xpj909.vip", false }, - { "xpj919.in", false }, - { "xpj919.me", false }, - { "xpj919.vip", false }, - { "xpjab.com", false }, + { "xpj909.vip", true }, + { "xpj919.in", true }, + { "xpj919.me", true }, + { "xpj919.vip", true }, + { "xpjab.com", true }, { "xpjbeting.com", true }, - { "xpjce.com", false }, + { "xpjce.com", true }, { "xpjcs.com", true }, - { "xpjcu.com", false }, - { "xpjdi.com", false }, - { "xpjei.com", false }, - { "xpjfan.com", false }, + { "xpjcu.com", true }, + { "xpjdi.com", true }, + { "xpjei.com", true }, + { "xpjfan.com", true }, { "xpjiosapp.com", true }, - { "xpjmd.com", false }, - { "xpjtop.com", false }, - { "xpjwa.com", false }, - { "xpjwb.com", false }, - { "xpjwc.com", false }, - { "xpjwd.com", false }, + { "xpjmd.com", true }, + { "xpjtop.com", true }, + { "xpjwa.com", true }, + { "xpjwb.com", true }, + { "xpjwc.com", true }, + { "xpjwd.com", true }, { "xpletus.nl", true }, { "xpoc.pro", true }, { "xpods.sg", true }, @@ -77901,7 +78882,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xrp.pp.ua", true }, { "xrptoolkit.com", true }, { "xrwracing-france.com", true }, - { "xs00228.com", false }, + { "xs00228.com", true }, { "xs2a.no", true }, { "xs74.com", true }, { "xsapp.co", true }, @@ -77910,8 +78891,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xserownia.com.pl", true }, { "xserownia.eu", true }, { "xserownia.net", true }, + { "xserownia.pl", true }, { "xslim.com.br", true }, { "xsmobile.de", true }, + { "xsole.net", true }, { "xss.name", true }, { "xss.sk", true }, { "xssi.uk", true }, @@ -77937,8 +78920,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtom.com.de", true }, { "xtom.com.ee", true }, { "xtom.com.hk", true }, + { "xtom.cy", true }, { "xtom.cz", true }, { "xtom.de", true }, + { "xtom.dk", true }, { "xtom.ee", true }, { "xtom.es", true }, { "xtom.eu", true }, @@ -77946,6 +78931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtom.fo", true }, { "xtom.fr", true }, { "xtom.ge", true }, + { "xtom.gg", true }, { "xtom.gmbh", true }, { "xtom.gr", true }, { "xtom.hr", true }, @@ -77971,6 +78957,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtom.nu", true }, { "xtom.paris", true }, { "xtom.pl", true }, + { "xtom.pt", true }, { "xtom.ro", true }, { "xtom.ru", true }, { "xtom.si", true }, @@ -77987,7 +78974,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtremecoatingtechnologies.com", true }, { "xtremegaming.it", true }, { "xtrememidlife.nl", true }, - { "xtremeperformance.co.in", false }, { "xtronics.com", true }, { "xts.bike", true }, { "xts3636.net", true }, @@ -78004,6 +78990,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xuehao.net.cn", true }, { "xuehao.tech", true }, { "xuehuang666.cn", true }, + { "xuexi.icu", true }, { "xujan.com", true }, { "xuming.studio", true }, { "xun3708855.com", true }, @@ -78035,6 +79022,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xxxoopz.com", true }, { "xxxred.net", true }, { "xxxsuper.net", true }, + { "xxxuno.com", true }, { "xy1919.com", true }, { "xy366.cc", true }, { "xy369.cc", true }, @@ -78065,46 +79053,46 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y09a.com", false }, { "y09app.com", false }, { "y09app.vip", false }, - { "y09c.com", false }, - { "y09e.com", false }, - { "y09f.com", false }, - { "y09g.com", false }, - { "y09h.com", false }, - { "y09i.com", false }, - { "y09j.com", false }, - { "y09k.com", false }, - { "y09l.com", false }, - { "y09m.com", false }, - { "y09n.com", false }, - { "y09o.com", false }, - { "y09p.com", false }, - { "y09q.com", false }, - { "y09r.com", false }, - { "y09s.com", false }, - { "y09t.com", false }, - { "y09u.com", false }, - { "y09v.com", false }, - { "y09w.com", false }, - { "y09x.com", false }, + { "y09c.com", true }, + { "y09e.com", true }, + { "y09f.com", true }, + { "y09g.com", true }, + { "y09h.com", true }, + { "y09i.com", true }, + { "y09j.com", true }, + { "y09k.com", true }, + { "y09l.com", true }, + { "y09m.com", true }, + { "y09n.com", true }, + { "y09o.com", true }, + { "y09p.com", true }, + { "y09q.com", true }, + { "y09r.com", true }, + { "y09s.com", true }, + { "y09t.com", true }, + { "y09u.com", true }, + { "y09v.com", true }, + { "y09w.com", true }, + { "y09x.com", true }, { "y0bet.com", true }, { "y11n.net", true }, - { "y1992.com", false }, - { "y2212.com", false }, - { "y2232.com", false }, - { "y2242.com", false }, - { "y2252.com", false }, - { "y2272.com", false }, + { "y1992.com", true }, + { "y2212.com", true }, + { "y2232.com", true }, + { "y2242.com", true }, + { "y2252.com", true }, + { "y2272.com", true }, { "y2bet.com", true }, { "y2g.me", true }, { "y30365.com", true }, - { "y3343.com", false }, - { "y3353.com", false }, + { "y3343.com", true }, + { "y3353.com", true }, { "y3451.com", true }, { "y3650.com", true }, { "y36500.com", true }, { "y3651.com", true }, { "y36511.com", true }, - { "y365188.com", false }, + { "y365188.com", true }, { "y3653.com", true }, { "y36533.com", true }, { "y3654.com", true }, @@ -78114,7 +79102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y3bet.com", true }, { "y4bet.com", true }, { "y5197.co", true }, - { "y5545.com", false }, + { "y5545.com", true }, { "y5bet.com", true }, { "y6180.com", true }, { "y6729.co", true }, @@ -78158,66 +79146,66 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y81365.com", true }, { "y82365.com", true }, { "y888.ag", true }, - { "y890000.com", false }, - { "y891111.com", false }, - { "y892222.com", false }, - { "y893333.com", false }, - { "y894444.com", false }, - { "y895555.com", false }, - { "y896666.com", false }, - { "y897777.com", false }, - { "y898888.com", false }, - { "y89a.com", false }, - { "y89a.net", false }, - { "y89aaa.com", false }, - { "y89b.com", false }, - { "y89b.net", false }, - { "y89bbb.com", false }, - { "y89c.com", false }, - { "y89c.net", false }, - { "y89ccc.com", false }, - { "y89d.com", false }, - { "y89d.net", false }, - { "y89dd.com", false }, - { "y89ddd.com", false }, - { "y89e.com", false }, - { "y89e.net", false }, - { "y89ee.com", false }, + { "y890000.com", true }, + { "y891111.com", true }, + { "y892222.com", true }, + { "y893333.com", true }, + { "y894444.com", true }, + { "y895555.com", true }, + { "y896666.com", true }, + { "y897777.com", true }, + { "y898888.com", true }, + { "y89a.com", true }, + { "y89a.net", true }, + { "y89aaa.com", true }, + { "y89b.com", true }, + { "y89b.net", true }, + { "y89bbb.com", true }, + { "y89c.com", true }, + { "y89c.net", true }, + { "y89ccc.com", true }, + { "y89d.com", true }, + { "y89d.net", true }, + { "y89dd.com", true }, + { "y89ddd.com", true }, + { "y89e.com", true }, + { "y89e.net", true }, + { "y89ee.com", true }, { "y89eee.com", true }, - { "y89f.com", false }, - { "y89f.net", false }, - { "y89fff.com", false }, - { "y89g.com", false }, - { "y89g.net", false }, - { "y89gg.com", false }, - { "y89h.net", false }, - { "y89hh.com", false }, - { "y89hhh.com", false }, - { "y89i.com", false }, - { "y89i.net", false }, - { "y89ii.com", false }, - { "y89iii.com", false }, - { "y89j.com", false }, - { "y89j.net", false }, - { "y89jj.com", false }, - { "y89jjj.com", false }, - { "y89k.com", false }, - { "y89kk.com", false }, - { "y89l.com", false }, - { "y89ll.com", false }, - { "y89m.com", false }, - { "y89n.com", false }, - { "y89o.com", false }, - { "y89p.com", false }, - { "y89q.com", false }, - { "y89r.com", false }, - { "y89s.com", false }, - { "y89t.com", false }, - { "y89u.com", false }, - { "y89v.com", false }, - { "y89ww.com", false }, - { "y89z.com", false }, - { "y89zz.com", false }, + { "y89f.com", true }, + { "y89f.net", true }, + { "y89fff.com", true }, + { "y89g.com", true }, + { "y89g.net", true }, + { "y89gg.com", true }, + { "y89h.net", true }, + { "y89hh.com", true }, + { "y89hhh.com", true }, + { "y89i.com", true }, + { "y89i.net", true }, + { "y89ii.com", true }, + { "y89iii.com", true }, + { "y89j.com", true }, + { "y89j.net", true }, + { "y89jj.com", true }, + { "y89jjj.com", true }, + { "y89k.com", true }, + { "y89kk.com", true }, + { "y89l.com", true }, + { "y89ll.com", true }, + { "y89m.com", true }, + { "y89n.com", true }, + { "y89o.com", true }, + { "y89p.com", true }, + { "y89q.com", true }, + { "y89r.com", true }, + { "y89s.com", true }, + { "y89t.com", true }, + { "y89u.com", true }, + { "y89v.com", true }, + { "y89ww.com", true }, + { "y89z.com", true }, + { "y89zz.com", true }, { "y9297.co", true }, { "y9721.com", true }, { "y9728.co", true }, @@ -78244,6 +79232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yagoda-malina.tk", true }, { "yahan.tv", true }, { "yaharu.ru", true }, + { "yahav.co.il", true }, { "yahoo.ax", true }, { "yahvehyireh.com", true }, { "yak-host.tk", true }, @@ -78280,7 +79269,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yamilafeinart.de", true }, { "yamm.io", true }, { "yan.lt", true }, - { "yan68d88vip.com", true }, { "yana-co.ir", true }, { "yanaduday.com", true }, { "yanbao.xyz", true }, @@ -78292,8 +79280,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yangmaodang.org", true }, { "yangmi.blog", true }, { "yangruixin.com", true }, - { "yangshangzhen.com", false }, { "yanik.info", true }, + { "yanjicg.com", true }, { "yann.tw", true }, { "yanngraf.ch", false }, { "yanngraf.com", false }, @@ -78315,35 +79303,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yao-in.net", true }, { "yao28.com", true }, { "yap26.cc", true }, - { "yapan008.com", false }, - { "yapan1.com", false }, - { "yapan10.com", false }, - { "yapan11.com", false }, - { "yapan2.com", false }, - { "yapan22.com", false }, - { "yapan222.com", false }, - { "yapan3.com", false }, - { "yapan33.com", false }, - { "yapan333.com", false }, - { "yapan365.net", false }, - { "yapan4.com", false }, - { "yapan44.com", false }, - { "yapan444.com", false }, - { "yapan5.com", false }, - { "yapan55.com", false }, - { "yapan555.com", false }, - { "yapan6.com", false }, - { "yapan66.com", false }, - { "yapan666.com", false }, - { "yapan7.com", false }, + { "yapan008.com", true }, + { "yapan1.com", true }, + { "yapan10.com", true }, + { "yapan11.com", true }, + { "yapan2.com", true }, + { "yapan22.com", true }, + { "yapan222.com", true }, + { "yapan3.com", true }, + { "yapan33.com", true }, + { "yapan333.com", true }, + { "yapan365.net", true }, + { "yapan4.com", true }, + { "yapan44.com", true }, + { "yapan444.com", true }, + { "yapan5.com", true }, + { "yapan55.com", true }, + { "yapan555.com", true }, + { "yapan6.com", true }, + { "yapan66.com", true }, + { "yapan666.com", true }, + { "yapan7.com", true }, { "yapan77.com", true }, - { "yapan777.com", false }, + { "yapan777.com", true }, { "yapan8.com", true }, - { "yapan888.com", false }, - { "yapan9.com", false }, - { "yapan99.com", false }, - { "yapan999.com", false }, - { "yapanwang.com", false }, + { "yapan888.com", true }, + { "yapan9.com", true }, + { "yapan99.com", true }, + { "yapan999.com", true }, + { "yapanwang.com", true }, { "yapbreak.fr", true }, { "yapeal.ch", true }, { "yappy.com", true }, @@ -78358,6 +79346,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yaseminuzumcu.com", true }, { "yashik.tv", true }, { "yashinstore.com", true }, + { "yasic.net", true }, { "yassine-ayari.com", true }, { "yatai18.com", true }, { "yatesun.com", true }, @@ -78459,7 +79448,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yenpape.com", true }, { "yep-pro.ch", false }, { "yepbitcoin.com", true }, - { "yephy.com", false }, + { "yephy.com", true }, { "yepmom.com", false }, { "yeptechnology.store", true }, { "yerbasbuenas.tk", true }, @@ -78536,7 +79525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yinglinda.love", true }, { "yingyj.com", true }, { "yinlei.org", true }, - { "yinulo.com", true }, { "yipingguo.com", true }, { "yiyuanzhong.com", true }, { "yiyueread.com", true }, @@ -78552,6 +79540,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yl369.cc", true }, { "yl8.com", true }, { "ylde.de", true }, + { "ylilauta.org", true }, { "ylinternal.com", true }, { "ylk.io", true }, { "ym039.com", true }, @@ -78679,6 +79668,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yougot.pw", true }, { "youhacked.me", true }, { "youhavewords.com", true }, + { "youhs.top", true }, { "youhua.ru", true }, { "youjizz.bz", true }, { "youkaryote.com", true }, @@ -78705,6 +79695,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youngvoicesmatter.org", true }, { "younl.net", true }, { "youpark.no", true }, + { "youpickfarms.org", true }, { "your-dns.run", true }, { "your-erotic-stories.com", true }, { "your-forum.tk", true }, @@ -78731,6 +79722,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourconscious.life", true }, { "yourcopywriter.it", true }, { "yourdailyalerts.net", true }, + { "yourdomain.host", false }, { "youreallyneedthis.co", true }, { "youregeeks.com", true }, { "youreward.ga", true }, @@ -78740,7 +79732,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourfuturestrategy.com.au", true }, { "yourgadget.ro", true }, { "yourgames.tv", true }, - { "youri.me", true }, + { "yourhair.net", true }, { "yourikeakitcheninstaller.com", true }, { "yourkrabivilla.com", true }, { "yourlanguages.de", true }, @@ -78761,6 +79753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourticketbooking.com", true }, { "yourtime.tv", true }, { "youruseragent.info", true }, + { "yourwatchdesign.co.uk", true }, { "yourznc.com", true }, { "yousei.ne.jp", true }, { "youshouldbealiberal.com", true }, @@ -78790,6 +79783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yqjf68.com", true }, { "yr166166.com", true }, { "yr8.com", true }, + { "yrcc878.com", true }, { "yrx.me", true }, { "yryz.net", true }, { "ys633.cc", true }, @@ -78901,7 +79895,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yuisyo.ml", true }, { "yuka.one", true }, { "yukari.cafe", true }, - { "yukari.cloud", true }, { "yukbeli.id", true }, { "yuki-nagato.com", true }, { "yuki.xyz", true }, @@ -78919,7 +79912,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yulaiz.com", true }, { "yule.hk", true }, { "yuleyule88game.com", true }, - { "yulliaschool.co.il", true }, { "yulsn.com", true }, { "yum.beer", true }, { "yum0.cn", true }, @@ -78977,6 +79969,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yvonnethomet.ch", true }, { "yvonnewilhelmi.com", true }, { "ywyz.tech", true }, + { "yxbet43.com", true }, { "yxt521.com", true }, { "yxzero.xyz", true }, { "yy-s.net", true }, @@ -79017,7 +80010,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z-vector.com", true }, { "z.ai", true }, { "z.tl", true }, - { "z00228.com", false }, + { "z00228.com", true }, { "z0rro.net", true }, { "z1.ag", true }, { "z10.ag", true }, @@ -79292,7 +80285,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zabbix.tips", true }, { "zabszk.net", true }, { "zabukovnik.net", true }, - { "zacadam.com", true }, { "zacarias.com.ar", true }, { "zacchaeus.co.uk", true }, { "zacco.site", true }, @@ -79326,7 +80318,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zahnarzt-duempten.de", true }, { "zahnarzt-hofer.de", true }, { "zahnarzt-kramer.ch", true }, - { "zahnarztpraxis-rusch.de", true }, { "zahnmedizinzentrum.com", true }, { "zahrowski.com", true }, { "zaidan.de", true }, @@ -79404,6 +80395,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zarfinakber.com", true }, { "zargescases.co.uk", true }, { "zaruhi.ml", true }, + { "zary.me", true }, { "zatsepin.by", true }, { "zaufanatrzeciastrona.pl", true }, { "zavec.com.ec", false }, @@ -79435,6 +80427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd0505.com", true }, { "zd0606.com", true }, { "zd0808.com", true }, + { "zd1010.com", true }, { "zd1313.com", true }, { "zd1515.com", true }, { "zd1616.com", true }, @@ -79451,6 +80444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd236.com", true }, { "zd237.com", true }, { "zd239.com", true }, + { "zd2424.com", true }, { "zd252.com", true }, { "zd253.com", true }, { "zd257.com", true }, @@ -79484,10 +80478,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd3434.com", true }, { "zd3535.com", true }, { "zd3939.com", true }, + { "zd4646.com", true }, { "zd4747.com", true }, { "zd4848.com", true }, { "zd5050.com", true }, { "zd5252.com", true }, + { "zd5353.com", true }, { "zd6.ag", true }, { "zd6161.com", true }, { "zd623.com", true }, @@ -79535,6 +80531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd732.com", true }, { "zd735.com", true }, { "zd736.com", true }, + { "zd7373.com", true }, { "zd739.com", true }, { "zd7474.com", true }, { "zd752.com", true }, @@ -79578,6 +80575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd8858.com", true }, { "zd8859.com", true }, { "zd8863.com", true }, + { "zd8865.com", true }, { "zd8869.com", true }, { "zd8878.com", true }, { "zd8882.com", true }, @@ -79597,6 +80595,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zdravotnikurzy.cz", true }, { "zdrojak.cz", true }, { "zdymak.by", true }, + { "ze-com.com", true }, { "ze3kr.com", true }, { "zeadaniel.com", true }, { "zeal-and.jp", true }, @@ -79624,6 +80623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zeidlertechnik.de", true }, { "zeihsel.com", true }, { "zeilenmethans.nl", true }, + { "zeilenvoorondernemers.nl", true }, { "zeilenwind.com", true }, { "zeilles.nu", true }, { "zeit.co", true }, @@ -79658,6 +80658,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zenlogic.com", true }, { "zenluxuryliving.com", true }, { "zenmate.com.tr", true }, + { "zenmod.in.rs", true }, { "zeno-dev.com", true }, { "zenofa.co.id", true }, { "zenown.com", true }, @@ -79669,7 +80670,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zenways.io", true }, { "zenycosta.com", true }, { "zeocax.com", false }, - { "zeparadox.com", true }, { "zephyrbk.com", true }, { "zephyrbookkeeping.com", true }, { "zephyretcoraline.com", true }, @@ -79678,6 +80678,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zepter.gq", true }, { "zer0-day.pw", true }, { "zer0.de", false }, + { "zercutie.com", true }, { "zermatterhof.ch", true }, { "zero-knigi.ml", true }, { "zero-sum.xyz", true }, @@ -79745,6 +80746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhang.nz", true }, { "zhangcheng.org", true }, { "zhangfangzhou.com", true }, + { "zhangge.net", true }, { "zhanghao.me", true }, { "zhanghao.org", true }, { "zhangheda.cf", true }, @@ -79795,7 +80797,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhongxigo.com", true }, { "zhongzicili.ws", true }, { "zhost.io", true }, - { "zhou28d88vip.com", true }, { "zhouba.cz", true }, { "zhoujiashu.com", true }, { "zhoushuo.me", false }, @@ -79825,6 +80826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zigottos.fr", true }, { "zigzagmart.com", true }, { "zihao.me", false }, + { "zihari.com", true }, { "zihun.club", true }, { "zii.bz", true }, { "ziin.de", true }, @@ -79846,6 +80848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zimtoel.de", true }, { "zinabnews.tk", true }, { "zinchenko.gq", true }, + { "zindaa.mn", true }, { "zindan.tk", true }, { "zindec.com", true }, { "zingarastore.com", true }, @@ -79885,7 +80888,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zivyruzenec.cz", true }, { "zixiao.wang", true }, { "zixin.com", true }, - { "zixo.sk", true }, { "ziz.exchange", false }, { "zizcollections.com", true }, { "zizibook.ml", true }, @@ -79899,6 +80901,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zk.gd", true }, { "zk9.nl", true }, { "zkd.me", true }, + { "zklcdc.top", true }, { "zklokotskehory.cz", true }, { "zkontrolujsiauto.cz", true }, { "zkwolf.top", true }, @@ -79935,8 +80938,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl1010.com", true }, { "zl1038.com", true }, { "zl1212.com", true }, + { "zl1515.com", true }, { "zl1616.com", true }, { "zl16h.com", true }, + { "zl178.vip", true }, + { "zl187.vip", true }, { "zl200.vip", true }, { "zl2020.com", true }, { "zl2020.vip", true }, @@ -79958,16 +80964,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl3737.com", true }, { "zl3782.com", true }, { "zl3838.com", true }, + { "zl3939.com", true }, + { "zl4040.com", true }, { "zl4231.com", true }, { "zl4290.com", true }, { "zl4454.com", true }, { "zl4538.com", true }, + { "zl500.vip", true }, { "zl5050.com", true }, { "zl5151.com", true }, { "zl5656.com", true }, + { "zl5757.com", true }, { "zl6.ag", true }, + { "zl600.vip", true }, { "zl6060.com", true }, { "zl6161.com", true }, + { "zl6262.com", true }, { "zl6363.com", true }, { "zl638.com", true }, { "zl6464.com", true }, @@ -79979,18 +80991,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl6868.com", true }, { "zl6969.com", true }, { "zl6xw.com", true }, + { "zl700.vip", true }, { "zl7070.com", true }, + { "zl7077.com", true }, { "zl7171.com", true }, { "zl7272.com", true }, { "zl7373.com", true }, { "zl738.com", true }, { "zl7393.com", true }, + { "zl7575.com", true }, { "zl760.com", true }, { "zl7615.com", true }, { "zl7979.com", true }, { "zl8.ag", true }, + { "zl800.vip", true }, { "zl8181.com", true }, { "zl8282.com", true }, + { "zl8383.com", true }, { "zl8484.com", true }, { "zl850.com", true }, { "zl8585.com", true }, @@ -80018,6 +81035,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl9191.com", true }, { "zl9292.com", true }, { "zl9372.com", true }, + { "zl9393.com", true }, { "zl969.com", true }, { "zl9696.com", true }, { "zl9797.com", true }, @@ -80058,7 +81076,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zmartagroup.fi", true }, { "zmartagroup.no", true }, { "zmartagroup.se", true }, - { "zmessages.com", true }, { "zmiguel.me", true }, { "zmk.fr", false }, { "zmy.im", true }, @@ -80088,7 +81105,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zodiacohouses.com", true }, { "zodian-research.ro", true }, { "zoedale.co.uk", true }, - { "zoeller.me", true }, { "zoepolitics.cf", true }, { "zof.kh.ua", true }, { "zofran-medication.cf", true }, @@ -80096,9 +81112,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zofranprice.ga", true }, { "zofrex.com", false }, { "zoftbaby.com", true }, + { "zohair.xyz", true }, { "zohar.wang", true }, { "zohra.ninja", true }, - { "zoi.jp", true }, { "zoigl.club", true }, { "zoisfinefood.com", true }, { "zoisfinefood.fr", true }, @@ -80147,6 +81163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zoom.earth", true }, { "zoomcar.pro", true }, { "zoomek.com", true }, + { "zoomteb.ir", true }, { "zooom.azurewebsites.net", true }, { "zooom2.azurewebsites.net", true }, { "zoop.ml", false }, @@ -80185,7 +81202,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zravypapir.cz", true }, { "zrhdwz.cn", true }, { "zrinski.tk", true }, - { "zrkr.de", false }, + { "zrkhosting.com", true }, + { "zrkr.de", true }, { "zrn.in", false }, { "zrniecka-pre-sny.sk", true }, { "zrnieckapresny.sk", true }, @@ -80204,6 +81222,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zsq.im", true }, { "zsrbcs.com", true }, { "zstgmnachod.cz", true }, + { "zsyaolong.com", true }, { "zten.org", true }, { "ztickerz.nl", true }, { "ztk.im", true }, @@ -80224,6 +81243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuiacg.com", true }, { "zuim.de", true }, { "zuitaotu.com", true }, + { "zuiverjegeest.nl", true }, { "zukix.com", true }, { "zula.africa", true }, { "zulu.ro", true }, @@ -80253,6 +81273,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuviel.space", true }, { "zuzannastrycharska.pl", true }, { "zuzumba.es", true }, + { "zvejonys.lt", true }, { "zverskij-site.tk", true }, { "zvps.uk", true }, { "zvxr.net", true }, @@ -80261,7 +81282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zwergenfeste.ch", true }, { "zwergenfreiheit.at", true }, { "zwerimex.com", true }, - { "zwierslanguagetraining.nl", true }, { "zwilla.de", true }, { "zwk.de", true }, { "zwollemag.nl", true }, @@ -80293,7 +81313,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zyria.de", true }, { "zyrillezuno.com", true }, { "zyul.ddns.net", true }, - { "zyx.im", false }, { "zyzardx.com", true }, { "zyzsdy.com", true }, { "zz017.com", true },