summaryrefslogtreecommitdiff
path: root/chromium/net/http
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-03-12 09:13:00 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-03-16 09:58:26 +0000
commit03561cae90f1d99b5c54b1ef3be69f10e882b25e (patch)
treecc5f0958e823c044e7ae51cc0117fe51432abe5e /chromium/net/http
parentfa98118a45f7e169f8846086dc2c22c49a8ba310 (diff)
downloadqtwebengine-chromium-03561cae90f1d99b5c54b1ef3be69f10e882b25e.tar.gz
BASELINE: Update Chromium to 88.0.4324.208
Change-Id: I3ae87d23e4eff4b4a469685658740a213600c667 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/http')
-rw-r--r--chromium/net/http/bidirectional_stream.cc21
-rw-r--r--chromium/net/http/bidirectional_stream.h13
-rw-r--r--chromium/net/http/bidirectional_stream_impl.h9
-rw-r--r--chromium/net/http/bidirectional_stream_unittest.cc38
-rw-r--r--chromium/net/http/http_auth_controller.cc2
-rw-r--r--chromium/net/http/http_auth_controller.h26
-rw-r--r--chromium/net/http/http_auth_handler.cc2
-rw-r--r--chromium/net/http/http_auth_handler_basic.cc10
-rw-r--r--chromium/net/http/http_auth_handler_basic_unittest.cc32
-rw-r--r--chromium/net/http/http_auth_handler_factory_unittest.cc54
-rw-r--r--chromium/net/http/http_auth_handler_negotiate.cc13
-rw-r--r--chromium/net/http/http_auth_preferences.h9
-rw-r--r--chromium/net/http/http_cache.cc64
-rw-r--r--chromium/net/http/http_cache.h19
-rw-r--r--chromium/net/http/http_cache_lookup_manager.cc6
-rw-r--r--chromium/net/http/http_cache_transaction.cc24
-rw-r--r--chromium/net/http/http_cache_unittest.cc74
-rw-r--r--chromium/net/http/http_cache_writers.cc2
-rw-r--r--chromium/net/http/http_network_session.cc119
-rw-r--r--chromium/net/http/http_network_session.h2
-rw-r--r--chromium/net/http/http_network_transaction.cc23
-rw-r--r--chromium/net/http/http_network_transaction_unittest.cc47
-rw-r--r--chromium/net/http/http_proxy_client_socket.cc1
-rw-r--r--chromium/net/http/http_request_headers.cc16
-rw-r--r--chromium/net/http/http_request_info.cc6
-rw-r--r--chromium/net/http/http_request_info.h22
-rw-r--r--chromium/net/http/http_response_headers.cc6
-rw-r--r--chromium/net/http/http_response_info.cc1
-rw-r--r--chromium/net/http/http_response_info.h4
-rw-r--r--chromium/net/http/http_server_properties.cc27
-rw-r--r--chromium/net/http/http_server_properties.h6
-rw-r--r--chromium/net/http/http_server_properties_manager.cc281
-rw-r--r--chromium/net/http/http_server_properties_manager.h27
-rw-r--r--chromium/net/http/http_server_properties_manager_unittest.cc323
-rw-r--r--chromium/net/http/http_server_properties_unittest.cc8
-rw-r--r--chromium/net/http/http_stream_factory_job.cc22
-rw-r--r--chromium/net/http/http_stream_factory_job_controller.cc26
-rw-r--r--chromium/net/http/http_stream_factory_job_controller_unittest.cc7
-rw-r--r--chromium/net/http/http_stream_factory_unittest.cc31
-rw-r--r--chromium/net/http/http_stream_parser.cc10
-rw-r--r--chromium/net/http/partial_data.cc2
-rw-r--r--chromium/net/http/transport_security_persister.cc113
-rw-r--r--chromium/net/http/transport_security_state.cc71
-rw-r--r--chromium/net/http/transport_security_state.h4
-rw-r--r--chromium/net/http/transport_security_state_static.json3282
-rw-r--r--chromium/net/http/transport_security_state_unittest.cc101
46 files changed, 3780 insertions, 1226 deletions
diff --git a/chromium/net/http/bidirectional_stream.cc b/chromium/net/http/bidirectional_stream.cc
index fc7ca5518ff..eb318f090ba 100644
--- a/chromium/net/http/bidirectional_stream.cc
+++ b/chromium/net/http/bidirectional_stream.cc
@@ -37,24 +37,25 @@ namespace net {
namespace {
-base::Value NetLogHeadersParams(const spdy::SpdyHeaderBlock* headers,
+base::Value NetLogHeadersParams(const spdy::Http2HeaderBlock* headers,
NetLogCaptureMode capture_mode) {
- base::DictionaryValue dict;
- dict.SetKey("headers", ElideSpdyHeaderBlockForNetLog(*headers, capture_mode));
- return std::move(dict);
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetKey("headers",
+ ElideHttp2HeaderBlockForNetLog(*headers, capture_mode));
+ return dict;
}
base::Value NetLogParams(const GURL& url,
const std::string& method,
const HttpRequestHeaders* headers,
NetLogCaptureMode capture_mode) {
- base::DictionaryValue dict;
- dict.SetString("url", url.possibly_invalid_spec());
- dict.SetString("method", method);
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetStringKey("url", url.possibly_invalid_spec());
+ dict.SetStringKey("method", method);
std::string empty;
base::Value headers_param(headers->NetLogParams(empty, capture_mode));
dict.SetKey("headers", std::move(headers_param));
- return std::move(dict);
+ return dict;
}
} // namespace
@@ -237,7 +238,7 @@ void BidirectionalStream::OnStreamReady(bool request_headers_sent) {
}
void BidirectionalStream::OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) {
+ const spdy::Http2HeaderBlock& response_headers) {
HttpResponseInfo response_info;
if (!SpdyHeadersToHttpResponse(response_headers, &response_info)) {
DLOG(WARNING) << "Invalid headers";
@@ -310,7 +311,7 @@ void BidirectionalStream::OnDataSent() {
}
void BidirectionalStream::OnTrailersReceived(
- const spdy::SpdyHeaderBlock& trailers) {
+ const spdy::Http2HeaderBlock& trailers) {
if (net_log_.IsCapturing()) {
net_log_.AddEvent(NetLogEventType::BIDIRECTIONAL_STREAM_RECV_TRAILERS,
[&](NetLogCaptureMode capture_mode) {
diff --git a/chromium/net/http/bidirectional_stream.h b/chromium/net/http/bidirectional_stream.h
index e92da4ea164..6fcf3888e18 100644
--- a/chromium/net/http/bidirectional_stream.h
+++ b/chromium/net/http/bidirectional_stream.h
@@ -21,15 +21,12 @@
#include "net/http/http_stream_factory.h"
#include "net/http/http_stream_request.h"
#include "net/log/net_log_with_source.h"
+#include "net/third_party/quiche/src/spdy/core/spdy_header_block.h"
namespace base {
class OneShotTimer;
} // namespace base
-namespace spdy {
-class SpdyHeaderBlock;
-} // namespace spdy
-
namespace net {
class HttpAuthController;
@@ -70,7 +67,7 @@ class NET_EXPORT BidirectionalStream : public BidirectionalStreamImpl::Delegate,
// call BidirectionalStream::SendData to send data,
// or call BidirectionalStream::Cancel to cancel the stream.
virtual void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) = 0;
+ const spdy::Http2HeaderBlock& response_headers) = 0;
// Called when a pending read is completed asynchronously.
// |bytes_read| specifies how much data is read.
@@ -90,7 +87,7 @@ class NET_EXPORT BidirectionalStream : public BidirectionalStreamImpl::Delegate,
// are received, which can happen before a read completes.
// The delegate is able to continue reading if there is no pending read and
// EOF has not been received, or to send data if there is no pending send.
- virtual void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) = 0;
+ virtual void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) = 0;
// Called when an error occurred. Do not call into the stream after this
// point. No other delegate functions will be called after this.
@@ -188,10 +185,10 @@ class NET_EXPORT BidirectionalStream : public BidirectionalStreamImpl::Delegate,
// BidirectionalStreamImpl::Delegate implementation:
void OnStreamReady(bool request_headers_sent) override;
void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) override;
+ const spdy::Http2HeaderBlock& response_headers) override;
void OnDataRead(int bytes_read) override;
void OnDataSent() override;
- void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) override;
+ void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) override;
void OnFailed(int error) override;
// HttpStreamRequest::Delegate implementation:
diff --git a/chromium/net/http/bidirectional_stream_impl.h b/chromium/net/http/bidirectional_stream_impl.h
index 2a3306fc690..afa7f64da31 100644
--- a/chromium/net/http/bidirectional_stream_impl.h
+++ b/chromium/net/http/bidirectional_stream_impl.h
@@ -15,16 +15,13 @@
#include "net/base/load_timing_info.h"
#include "net/base/net_export.h"
#include "net/socket/next_proto.h"
+#include "net/third_party/quiche/src/spdy/core/spdy_header_block.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
namespace base {
class OneShotTimer;
} // namespace base
-namespace spdy {
-class SpdyHeaderBlock;
-} // namespace spdy
-
namespace net {
class IOBuffer;
@@ -60,7 +57,7 @@ class NET_EXPORT_PRIVATE BidirectionalStreamImpl {
// reading, call BidirectionalStreamImpl::SendData to send data,
// or call BidirectionalStreamImpl::Cancel to cancel the stream.
virtual void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) = 0;
+ const spdy::Http2HeaderBlock& response_headers) = 0;
// Called when read is completed asynchronously. |bytes_read| specifies how
// much data is available.
@@ -80,7 +77,7 @@ class NET_EXPORT_PRIVATE BidirectionalStreamImpl {
// are received, which can happen before a read completes.
// The delegate is able to continue reading if there is no pending read and
// EOF has not been received, or to send data if there is no pending send.
- virtual void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) = 0;
+ virtual void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) = 0;
// Called when an error occurred. Do not call into the stream after this
// point. No other delegate functions will be called after this.
diff --git a/chromium/net/http/bidirectional_stream_unittest.cc b/chromium/net/http/bidirectional_stream_unittest.cc
index 70e734b168d..2f1470c3adf 100644
--- a/chromium/net/http/bidirectional_stream_unittest.cc
+++ b/chromium/net/http/bidirectional_stream_unittest.cc
@@ -127,7 +127,7 @@ class TestDelegateBase : public BidirectionalStream::Delegate {
}
void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) override {
+ const spdy::Http2HeaderBlock& response_headers) override {
CHECK(!not_expect_callback_);
response_headers_ = response_headers.Clone();
@@ -152,7 +152,7 @@ class TestDelegateBase : public BidirectionalStream::Delegate {
++on_data_sent_count_;
}
- void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) override {
+ void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) override {
CHECK(!not_expect_callback_);
trailers_ = trailers.Clone();
@@ -263,10 +263,10 @@ class TestDelegateBase : public BidirectionalStream::Delegate {
// Const getters for internal states.
const std::string& data_received() const { return data_received_; }
int error() const { return error_; }
- const spdy::SpdyHeaderBlock& response_headers() const {
+ const spdy::Http2HeaderBlock& response_headers() const {
return response_headers_;
}
- const spdy::SpdyHeaderBlock& trailers() const { return trailers_; }
+ const spdy::Http2HeaderBlock& trailers() const { return trailers_; }
int on_data_read_count() const { return on_data_read_count_; }
int on_data_sent_count() const { return on_data_sent_count_; }
@@ -291,8 +291,8 @@ class TestDelegateBase : public BidirectionalStream::Delegate {
std::unique_ptr<base::OneShotTimer> timer_;
std::string data_received_;
std::unique_ptr<base::RunLoop> loop_;
- spdy::SpdyHeaderBlock response_headers_;
- spdy::SpdyHeaderBlock trailers_;
+ spdy::Http2HeaderBlock response_headers_;
+ spdy::Http2HeaderBlock trailers_;
NextProto next_proto_;
int64_t received_bytes_;
int64_t sent_bytes_;
@@ -326,7 +326,7 @@ class DeleteStreamDelegate : public TestDelegateBase {
~DeleteStreamDelegate() override = default;
void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) override {
+ const spdy::Http2HeaderBlock& response_headers) override {
TestDelegateBase::OnHeadersReceived(response_headers);
if (phase_ == ON_HEADERS_RECEIVED) {
DeleteStream();
@@ -348,7 +348,7 @@ class DeleteStreamDelegate : public TestDelegateBase {
}
}
- void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) override {
+ void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) override {
if (phase_ == ON_HEADERS_RECEIVED || phase_ == ON_DATA_READ) {
NOTREACHED();
return;
@@ -653,7 +653,7 @@ TEST_F(BidirectionalStreamTest, ClientAuthRequestIgnored) {
ASSERT_FALSE(client_cert);
ASSERT_FALSE(client_private_key);
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ(1, delegate->on_data_read_count());
EXPECT_EQ(0, delegate->on_data_sent_count());
@@ -733,7 +733,7 @@ TEST_F(BidirectionalStreamTest, TestReadDataAfterClose) {
rv = delegate->ReadData();
EXPECT_THAT(rv, IsOk()); // EOF.
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ(1, delegate->on_data_read_count());
@@ -760,7 +760,7 @@ TEST_F(BidirectionalStreamTest, TestNetLogContainEntries) {
spdy::SpdySerializedFrame response_body_frame2(
spdy_util_.ConstructSpdyDataFrame(1, false));
- spdy::SpdyHeaderBlock trailers;
+ spdy::Http2HeaderBlock trailers;
trailers["foo"] = "bar";
spdy::SpdySerializedFrame response_trailers(
spdy_util_.ConstructSpdyResponseHeaders(1, std::move(trailers), true));
@@ -1199,7 +1199,7 @@ TEST_F(BidirectionalStreamTest, TestBuffering) {
EXPECT_EQ(kUploadDataSize * 3,
static_cast<int>(delegate->data_received().size()));
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ(0, delegate->on_data_sent_count());
@@ -1222,7 +1222,7 @@ TEST_F(BidirectionalStreamTest, TestBufferingWithTrailers) {
spdy::SpdySerializedFrame body_frame(
spdy_util_.ConstructSpdyDataFrame(1, false));
- spdy::SpdyHeaderBlock trailers;
+ spdy::Http2HeaderBlock trailers;
trailers["foo"] = "bar";
spdy::SpdySerializedFrame response_trailers(
spdy_util_.ConstructSpdyResponseHeaders(1, std::move(trailers), true));
@@ -1272,7 +1272,7 @@ TEST_F(BidirectionalStreamTest, TestBufferingWithTrailers) {
EXPECT_EQ(1, delegate->on_data_read_count());
EXPECT_EQ(kUploadDataSize * 3,
static_cast<int>(delegate->data_received().size()));
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ("bar", delegate->trailers().find("foo")->second);
@@ -1511,7 +1511,7 @@ TEST_F(BidirectionalStreamTest, DeleteStreamDuringOnHeadersReceived) {
delegate->Start(std::move(request_info), http_session_.get());
// Makes sure delegate does not get called.
base::RunLoop().RunUntilIdle();
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ(0u, delegate->data_received().size());
@@ -1566,7 +1566,7 @@ TEST_F(BidirectionalStreamTest, DeleteStreamDuringOnDataRead) {
delegate->Start(std::move(request_info), http_session_.get());
// Makes sure delegate does not get called.
base::RunLoop().RunUntilIdle();
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ(kUploadDataSize * 1,
@@ -1598,7 +1598,7 @@ TEST_F(BidirectionalStreamTest, DeleteStreamDuringOnTrailersReceived) {
spdy::SpdySerializedFrame response_body_frame(
spdy_util_.ConstructSpdyDataFrame(1, false));
- spdy::SpdyHeaderBlock trailers;
+ spdy::Http2HeaderBlock trailers;
trailers["foo"] = "bar";
spdy::SpdySerializedFrame response_trailers(
spdy_util_.ConstructSpdyResponseHeaders(1, std::move(trailers), true));
@@ -1626,7 +1626,7 @@ TEST_F(BidirectionalStreamTest, DeleteStreamDuringOnTrailersReceived) {
delegate->Start(std::move(request_info), http_session_.get());
// Makes sure delegate does not get called.
base::RunLoop().RunUntilIdle();
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ("header-value", response_headers.find("header-name")->second);
EXPECT_EQ("bar", delegate->trailers().find("foo")->second);
@@ -1731,7 +1731,7 @@ TEST_F(BidirectionalStreamTest, TestHonorAlternativeServiceHeader) {
delegate->SetRunUntilCompletion(true);
delegate->Start(std::move(request_info), http_session_.get());
- const spdy::SpdyHeaderBlock& response_headers = delegate->response_headers();
+ const spdy::Http2HeaderBlock& response_headers = delegate->response_headers();
EXPECT_EQ("200", response_headers.find(":status")->second);
EXPECT_EQ(alt_svc_header_value, response_headers.find("alt-svc")->second);
EXPECT_EQ(0, delegate->on_data_sent_count());
diff --git a/chromium/net/http/http_auth_controller.cc b/chromium/net/http/http_auth_controller.cc
index fc335665bc1..85ca36eaf41 100644
--- a/chromium/net/http/http_auth_controller.cc
+++ b/chromium/net/http/http_auth_controller.cc
@@ -7,7 +7,7 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/metrics/histogram_macros.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
diff --git a/chromium/net/http/http_auth_controller.h b/chromium/net/http/http_auth_controller.h
index 3a47c430589..318527af6e5 100644
--- a/chromium/net/http/http_auth_controller.h
+++ b/chromium/net/http/http_auth_controller.h
@@ -49,14 +49,14 @@ class NET_EXPORT_PRIVATE HttpAuthController
//
// * |target| is either PROXY or SERVER and determines the authentication
// headers to use ("WWW-Authenticate"/"Authorization" vs.
- // "Proxy-Authenticate","Proxy-Authorization") and how ambient
+ // "Proxy-Authenticate"/"Proxy-Authorization") and how ambient
// credentials are used.
//
// * |auth_url| specifies the target URL. The origin of the URL identifies the
// target host. The path (hierarchical part defined in RFC 3986 section
// 3.3) of the URL is used by HTTP basic authentication to determine
// cached credentials can be used to preemptively send an authorization
- // header. See RFC 7627 section 2.2 (Reusing Credentials) for details.
+ // header. See RFC 7617 section 2.2 (Reusing Credentials) for details.
// If |target| is PROXY, then |auth_url| should have no hierarchical
// part since that is meaningless.
//
@@ -71,8 +71,8 @@ class NET_EXPORT_PRIVATE HttpAuthController
// authentication is stateful across requests. So the |http_auth_cache|
// is also used to maintain state for this authentication scheme.
//
- // * |http_auth_handler_factory| is used to contruct instances of
- // HttpAuthHandler subclass to handle scheme specific authentication
+ // * |http_auth_handler_factory| is used to construct instances of
+ // HttpAuthHandler subclasses to handle scheme-specific authentication
// logic. The |http_auth_handler_factory| is also responsible for
// determining whether the authentication stack should use a specific
// authentication scheme or not.
@@ -158,7 +158,7 @@ class NET_EXPORT_PRIVATE HttpAuthController
// cache entry's data and returns true.
bool SelectPreemptiveAuth(const NetLogWithSource& caller_net_log);
- // Invalidates the current handler. If |action| is
+ // Invalidates the current handler. If |action| is
// INVALIDATE_HANDLER_AND_CACHED_CREDENTIALS, then also invalidate
// the cached credentials used by the handler.
void InvalidateCurrentHandler(InvalidateHandlerAction action);
@@ -167,7 +167,7 @@ class NET_EXPORT_PRIVATE HttpAuthController
// The identity that was rejected is |identity_|.
void InvalidateRejectedAuthFromCache();
- // Allows reusing last used identity source. If the authentication handshake
+ // Allows reusing last used identity source. If the authentication handshake
// breaks down halfway, then the controller needs to restart it from the
// beginning and resue the same identity.
void PrepareIdentityForReuse();
@@ -191,17 +191,17 @@ class NET_EXPORT_PRIVATE HttpAuthController
// Indicates if this handler is for Proxy auth or Server auth.
HttpAuth::Target target_;
- // Holds the {scheme, host, path, port} for the authentication target.
+ // Holds the {scheme, host, port, path} for the authentication target.
const GURL auth_url_;
// Holds the {scheme, host, port} for the authentication target.
const GURL auth_origin_;
// The absolute path of the resource needing authentication.
- // For proxy authentication the path is empty.
+ // For proxy authentication, the path is empty.
const std::string auth_path_;
- // NetworkIsolationKey assocaied with the request.
+ // NetworkIsolationKey associated with the request.
const NetworkIsolationKey network_isolation_key_;
// |handler_| encapsulates the logic for the particular auth-scheme.
@@ -209,9 +209,9 @@ class NET_EXPORT_PRIVATE HttpAuthController
// associated auth handler.
std::unique_ptr<HttpAuthHandler> handler_;
- // |identity_| holds the credentials that should be used by
- // the handler_ to generate challenge responses. This identity can come from
- // a number of places (url, cache, prompt).
+ // |identity_| holds the credentials that should be used by the handler_ to
+ // generate challenge responses. This identity can come from a number of
+ // places (url, cache, prompt).
HttpAuth::Identity identity_;
// |auth_token_| contains the opaque string to pass to the proxy or
@@ -231,7 +231,7 @@ class NET_EXPORT_PRIVATE HttpAuthController
bool default_credentials_used_;
// These two are owned by the HttpNetworkSession/IOThread, which own the
- // objects which reference |this|. Therefore, these raw pointers are valid
+ // objects which reference |this|. Therefore, these raw pointers are valid
// for the lifetime of this object.
HttpAuthCache* const http_auth_cache_;
HttpAuthHandlerFactory* const http_auth_handler_factory_;
diff --git a/chromium/net/http/http_auth_handler.cc b/chromium/net/http/http_auth_handler.cc
index 4d2164e47df..f24d222c691 100644
--- a/chromium/net/http/http_auth_handler.cc
+++ b/chromium/net/http/http_auth_handler.cc
@@ -7,7 +7,7 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/check_op.h"
#include "net/base/net_errors.h"
#include "net/http/http_auth_challenge_tokenizer.h"
diff --git a/chromium/net/http/http_auth_handler_basic.cc b/chromium/net/http/http_auth_handler_basic.cc
index 4692c02b248..61fb629cbb3 100644
--- a/chromium/net/http/http_auth_handler_basic.cc
+++ b/chromium/net/http/http_auth_handler_basic.cc
@@ -14,6 +14,7 @@
#include "net/dns/host_resolver.h"
#include "net/http/http_auth.h"
#include "net/http/http_auth_challenge_tokenizer.h"
+#include "net/http/http_auth_preferences.h"
#include "net/http/http_auth_scheme.h"
namespace net {
@@ -84,7 +85,9 @@ int HttpAuthHandlerBasic::GenerateAuthTokenImpl(
CompletionOnceCallback callback,
std::string* auth_token) {
DCHECK(credentials);
- // TODO(eroman): is this the right encoding of username/password?
+ // Firefox, Safari and Chromium all use UTF-8 encoding; IE uses iso-8859-1.
+ // RFC7617 does not specify a default encoding, but UTF-8 is the only allowed
+ // value for the optional charset parameter on the challenge.
std::string base64_username_password;
base::Base64Encode(base::UTF16ToUTF8(credentials->username()) + ":" +
base::UTF16ToUTF8(credentials->password()),
@@ -120,6 +123,11 @@ int HttpAuthHandlerBasic::Factory::CreateAuthHandler(
const NetLogWithSource& net_log,
HostResolver* host_resolver,
std::unique_ptr<HttpAuthHandler>* handler) {
+ if (http_auth_preferences() &&
+ !http_auth_preferences()->basic_over_http_enabled() &&
+ origin.SchemeIs(url::kHttpScheme)) {
+ return ERR_UNSUPPORTED_AUTH_SCHEME;
+ }
// TODO(cbentzel): Move towards model of parsing in the factory
// method and only constructing when valid.
std::unique_ptr<HttpAuthHandler> tmp_handler(new HttpAuthHandlerBasic());
diff --git a/chromium/net/http/http_auth_handler_basic_unittest.cc b/chromium/net/http/http_auth_handler_basic_unittest.cc
index 9754d230684..8e391d1514b 100644
--- a/chromium/net/http/http_auth_handler_basic_unittest.cc
+++ b/chromium/net/http/http_auth_handler_basic_unittest.cc
@@ -15,6 +15,7 @@
#include "net/base/test_completion_callback.h"
#include "net/dns/mock_host_resolver.h"
#include "net/http/http_auth_challenge_tokenizer.h"
+#include "net/http/http_auth_preferences.h"
#include "net/http/http_request_info.h"
#include "net/log/net_log_with_source.h"
#include "net/ssl/ssl_info.h"
@@ -22,6 +23,7 @@
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
+using net::test::IsError;
using net::test::IsOk;
namespace net {
@@ -215,4 +217,34 @@ TEST(HttpAuthHandlerBasicTest, InitFromChallenge) {
}
}
+// Test that when Basic is configured to forbid HTTP, attempting to create a
+// Basic auth handler for a HTTP context is rejected.
+TEST(HttpAuthHandlerBasicTest, BasicAuthRequiresHTTPS) {
+ GURL nonsecure_origin("http://www.example.com");
+ HttpAuthHandlerBasic::Factory factory;
+ HttpAuthPreferences http_auth_preferences;
+ http_auth_preferences.set_basic_over_http_enabled(false);
+ factory.set_http_auth_preferences(&http_auth_preferences);
+
+ std::string challenge = "Basic realm=\"Atlantis\"";
+ SSLInfo null_ssl_info;
+ auto host_resolver = std::make_unique<MockHostResolver>();
+ std::unique_ptr<HttpAuthHandler> basic;
+
+ // Ensure that HTTP is disallowed.
+ EXPECT_THAT(factory.CreateAuthHandlerFromString(
+ challenge, HttpAuth::AUTH_SERVER, null_ssl_info,
+ NetworkIsolationKey(), nonsecure_origin, NetLogWithSource(),
+ host_resolver.get(), &basic),
+ IsError(ERR_UNSUPPORTED_AUTH_SCHEME));
+
+ // Ensure that HTTPS is allowed.
+ GURL secure_origin("https://www.example.com");
+ EXPECT_THAT(factory.CreateAuthHandlerFromString(
+ challenge, HttpAuth::AUTH_SERVER, null_ssl_info,
+ NetworkIsolationKey(), secure_origin, NetLogWithSource(),
+ host_resolver.get(), &basic),
+ IsOk());
+}
+
} // namespace net
diff --git a/chromium/net/http/http_auth_handler_factory_unittest.cc b/chromium/net/http/http_auth_handler_factory_unittest.cc
index 6e8b6a40fba..e4182163ddd 100644
--- a/chromium/net/http/http_auth_handler_factory_unittest.cc
+++ b/chromium/net/http/http_auth_handler_factory_unittest.cc
@@ -212,6 +212,60 @@ TEST(HttpAuthHandlerFactoryTest, DefaultFactory) {
}
}
+TEST(HttpAuthHandlerFactoryTest, BasicFactoryRespectsHTTPEnabledPref) {
+ std::unique_ptr<HostResolver> host_resolver(new MockHostResolver());
+ std::unique_ptr<HttpAuthHandlerRegistryFactory> http_auth_handler_factory(
+ HttpAuthHandlerFactory::CreateDefault());
+
+ // Set the Preference that blocks Basic Auth over HTTP on all of the
+ // factories. It shouldn't impact any behavior except for the Basic factory.
+ MockAllowHttpAuthPreferences http_auth_preferences;
+ http_auth_preferences.set_basic_over_http_enabled(false);
+ http_auth_handler_factory->SetHttpAuthPreferences(kBasicAuthScheme,
+ &http_auth_preferences);
+ http_auth_handler_factory->SetHttpAuthPreferences(kDigestAuthScheme,
+ &http_auth_preferences);
+ http_auth_handler_factory->SetHttpAuthPreferences(kNtlmAuthScheme,
+ &http_auth_preferences);
+ http_auth_handler_factory->SetHttpAuthPreferences(kNegotiateAuthScheme,
+ &http_auth_preferences);
+
+ GURL nonsecure_origin("http://www.example.com");
+ GURL secure_origin("https://www.example.com");
+ SSLInfo null_ssl_info;
+
+ const HttpAuth::Target kTargets[] = {HttpAuth::AUTH_SERVER,
+ HttpAuth::AUTH_PROXY};
+ struct TestCase {
+ int expected_net_error;
+ const GURL origin;
+ const char* challenge;
+ } const kTestCases[] = {
+ // Challenges that result in success results.
+ {OK, secure_origin, "Basic realm=\"FooBar\""},
+ {OK, secure_origin, "Digest realm=\"FooBar\", nonce=\"xyz\""},
+ {OK, nonsecure_origin, "Digest realm=\"FooBar\", nonce=\"xyz\""},
+ {OK, secure_origin, "Ntlm"},
+ {OK, nonsecure_origin, "Ntlm"},
+#if BUILDFLAG(USE_KERBEROS) && !defined(OS_ANDROID)
+ {OK, secure_origin, "Negotiate"},
+ {OK, nonsecure_origin, "Negotiate"},
+#endif
+ // Challenges that result in error results.
+ {ERR_UNSUPPORTED_AUTH_SCHEME, nonsecure_origin, "Basic realm=\"FooBar\""},
+ };
+
+ for (const auto target : kTargets) {
+ for (const TestCase& test_case : kTestCases) {
+ std::unique_ptr<HttpAuthHandler> handler;
+ int rv = http_auth_handler_factory->CreateAuthHandlerFromString(
+ test_case.challenge, target, null_ssl_info, NetworkIsolationKey(),
+ test_case.origin, NetLogWithSource(), host_resolver.get(), &handler);
+ EXPECT_THAT(rv, IsError(test_case.expected_net_error));
+ }
+ }
+}
+
TEST(HttpAuthHandlerFactoryTest, LogCreateAuthHandlerResults) {
std::unique_ptr<HostResolver> host_resolver(new MockHostResolver());
std::unique_ptr<HttpAuthHandlerRegistryFactory> http_auth_handler_factory(
diff --git a/chromium/net/http/http_auth_handler_negotiate.cc b/chromium/net/http/http_auth_handler_negotiate.cc
index 281e62f6185..c68cbef391e 100644
--- a/chromium/net/http/http_auth_handler_negotiate.cc
+++ b/chromium/net/http/http_auth_handler_negotiate.cc
@@ -7,7 +7,7 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
@@ -36,14 +36,13 @@ namespace {
base::Value NetLogParameterChannelBindings(
const std::string& channel_binding_token,
NetLogCaptureMode capture_mode) {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
if (!NetLogCaptureIncludesSocketBytes(capture_mode))
- return std::move(dict);
+ return dict;
- dict.Clear();
- dict.SetString("token", base::HexEncode(channel_binding_token.data(),
- channel_binding_token.size()));
- return std::move(dict);
+ dict.SetStringKey("token", base::HexEncode(channel_binding_token.data(),
+ channel_binding_token.size()));
+ return dict;
}
// Uses |negotiate_auth_system_factory| to create the auth system, otherwise
diff --git a/chromium/net/http/http_auth_preferences.h b/chromium/net/http/http_auth_preferences.h
index f59c36aa8a2..f25b15e8fcd 100644
--- a/chromium/net/http/http_auth_preferences.h
+++ b/chromium/net/http/http_auth_preferences.h
@@ -63,6 +63,14 @@ class NET_EXPORT HttpAuthPreferences {
negotiate_enable_port_ = negotiate_enable_port;
}
+ // Return |true| if the browser should allow attempts to use HTTP Basic auth
+ // on non-secure HTTP connections.
+ bool basic_over_http_enabled() const { return basic_over_http_enabled_; }
+
+ void set_basic_over_http_enabled(bool allow_http) {
+ basic_over_http_enabled_ = allow_http;
+ }
+
#if defined(OS_POSIX) || defined(OS_FUCHSIA)
void set_ntlm_v2_enabled(bool ntlm_v2_enabled) {
ntlm_v2_enabled_ = ntlm_v2_enabled;
@@ -92,6 +100,7 @@ class NET_EXPORT HttpAuthPreferences {
bool delegate_by_kdc_policy_ = false;
bool negotiate_disable_cname_lookup_ = false;
bool negotiate_enable_port_ = false;
+ bool basic_over_http_enabled_ = true;
DefaultCredentials allow_default_credentials_ = ALLOW_DEFAULT_CREDENTIALS;
diff --git a/chromium/net/http/http_cache.cc b/chromium/net/http/http_cache.cc
index 3a1346d0539..8f28470953a 100644
--- a/chromium/net/http/http_cache.cc
+++ b/chromium/net/http/http_cache.cc
@@ -8,9 +8,10 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
#include "base/callback.h"
+#include "base/callback_helpers.h"
#include "base/compiler_specific.h"
+#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/format_macros.h"
#include "base/location.h"
@@ -56,8 +57,18 @@
namespace net {
+namespace {
+// True if any HTTP cache has been initialized.
+bool g_init_cache = false;
+
+// True if split cache is enabled by default. Must be set before any HTTP cache
+// has been initialized.
+bool g_enable_split_cache = false;
+} // namespace
+
const char HttpCache::kDoubleKeyPrefix[] = "_dk_";
const char HttpCache::kDoubleKeySeparator[] = " ";
+const char HttpCache::kSubframeDocumentResourcePrefix[] = "s_";
HttpCache::DefaultBackend::DefaultBackend(CacheType type,
BackendType backend_type,
@@ -245,7 +256,9 @@ HttpCache::HttpCache(HttpNetworkSession* session,
bool is_main_cache)
: HttpCache(std::make_unique<HttpNetworkLayer>(session),
std::move(backend_factory),
- is_main_cache) {}
+ is_main_cache) {
+ g_init_cache = true;
+}
HttpCache::HttpCache(std::unique_ptr<HttpTransactionFactory> network_layer,
std::unique_ptr<BackendFactory> backend_factory,
@@ -259,6 +272,7 @@ HttpCache::HttpCache(std::unique_ptr<HttpTransactionFactory> network_layer,
mode_(NORMAL),
network_layer_(std::move(network_layer)),
clock_(base::DefaultClock::GetInstance()) {
+ g_init_cache = true;
HttpNetworkSession* session = network_layer_->GetSession();
// Session may be NULL in unittests.
// TODO(mmenke): Seems like tests could be changed to provide a session,
@@ -360,7 +374,8 @@ void HttpCache::CloseIdleConnections(const char* net_log_reason_utf8) {
void HttpCache::OnExternalCacheHit(
const GURL& url,
const std::string& http_method,
- const NetworkIsolationKey& network_isolation_key) {
+ const NetworkIsolationKey& network_isolation_key,
+ bool is_subframe_document_resource) {
if (!disk_cache_.get() || mode_ == DISABLE)
return;
@@ -368,6 +383,8 @@ void HttpCache::OnExternalCacheHit(
request_info.url = url;
request_info.method = http_method;
request_info.network_isolation_key = network_isolation_key;
+ request_info.is_subframe_document_resource = is_subframe_document_resource;
+
std::string key = GenerateCacheKey(&request_info);
disk_cache_->OnExternalCacheHit(key);
}
@@ -455,6 +472,29 @@ std::string HttpCache::GenerateCacheKeyForTest(const HttpRequestInfo* request) {
return GenerateCacheKey(request);
}
+// static
+void HttpCache::SplitCacheFeatureEnableByDefault() {
+ CHECK(!g_enable_split_cache && !g_init_cache);
+ if (!base::FeatureList::GetInstance()->IsFeatureOverridden(
+ "SplitCacheByNetworkIsolationKey")) {
+ g_enable_split_cache = true;
+ }
+}
+
+// static
+bool HttpCache::IsSplitCacheEnabled() {
+ return base::FeatureList::IsEnabled(
+ features::kSplitCacheByNetworkIsolationKey) ||
+ g_enable_split_cache;
+}
+
+// static
+void HttpCache::ClearGlobalsForTesting() {
+ // Reset these so that unit tests can work.
+ g_init_cache = false;
+ g_enable_split_cache = false;
+}
+
//-----------------------------------------------------------------------------
net::Error HttpCache::CreateAndSetWorkItem(ActiveEntry** entry,
@@ -532,16 +572,18 @@ int HttpCache::GetBackendForTransaction(Transaction* transaction) {
std::string HttpCache::GenerateCacheKey(const HttpRequestInfo* request) {
std::string isolation_key;
- if (base::FeatureList::IsEnabled(
- features::kSplitCacheByNetworkIsolationKey)) {
+ if (IsSplitCacheEnabled()) {
// Prepend the key with |kDoubleKeyPrefix| = "_dk_" to mark it as
// double-keyed (and makes it an invalid url so that it doesn't get
// confused with a single-keyed entry). Separate the origin and url
// with invalid whitespace character |kDoubleKeySeparator|.
DCHECK(request->network_isolation_key.IsFullyPopulated());
- isolation_key = base::StrCat({kDoubleKeyPrefix,
- request->network_isolation_key.ToString(),
- kDoubleKeySeparator});
+ std::string subframe_document_resource_prefix =
+ request->is_subframe_document_resource ? kSubframeDocumentResourcePrefix
+ : "";
+ isolation_key = base::StrCat(
+ {kDoubleKeyPrefix, subframe_document_resource_prefix,
+ request->network_isolation_key.ToString(), kDoubleKeySeparator});
}
// Strip out the reference, username, and password sections of the URL and
@@ -622,7 +664,8 @@ int HttpCache::AsyncDoomEntry(const std::string& key,
}
void HttpCache::DoomMainEntryForUrl(const GURL& url,
- const NetworkIsolationKey& isolation_key) {
+ const NetworkIsolationKey& isolation_key,
+ bool is_subframe_document_resource) {
if (!disk_cache_)
return;
@@ -630,6 +673,7 @@ void HttpCache::DoomMainEntryForUrl(const GURL& url,
temp_info.url = url;
temp_info.method = "GET";
temp_info.network_isolation_key = isolation_key;
+ temp_info.is_subframe_document_resource = is_subframe_document_resource;
std::string key = GenerateCacheKey(&temp_info);
// Defer to DoomEntry if there is an active entry, otherwise call
@@ -1455,6 +1499,8 @@ void HttpCache::OnBackendCreated(int result, PendingOp* pending_op) {
backend_factory_.reset(); // Reclaim memory.
if (result == OK) {
disk_cache_ = std::move(pending_op->backend);
+ UMA_HISTOGRAM_MEMORY_KB("HttpCache.MaxFileSizeOnInit",
+ disk_cache_->MaxFileSize() / 1024);
}
}
diff --git a/chromium/net/http/http_cache.h b/chromium/net/http/http_cache.h
index 9351e11aaff..1b2da60f460 100644
--- a/chromium/net/http/http_cache.h
+++ b/chromium/net/http/http_cache.h
@@ -225,7 +225,8 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory {
// referred to by |url| and |http_method| and |network_isolation_key|.
void OnExternalCacheHit(const GURL& url,
const std::string& http_method,
- const NetworkIsolationKey& network_isolation_key);
+ const NetworkIsolationKey& network_isolation_key,
+ bool is_subframe_document_resource);
// Causes all transactions created after this point to simulate lock timeout
// and effectively bypass the cache lock whenever there is lock contention.
@@ -272,6 +273,18 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory {
// Function to generate cache key for testing.
static std::string GenerateCacheKeyForTest(const HttpRequestInfo* request);
+ // Enable split cache feature if not already overridden in the feature list.
+ // Should only be invoked during process initialization before the HTTP
+ // cache is initialized.
+ static void SplitCacheFeatureEnableByDefault();
+
+ // Returns true if split cache is enabled either by default or by other means
+ // like command line or field trials.
+ static bool IsSplitCacheEnabled();
+
+ // Resets g_init_cache and g_enable_split_cache for tests.
+ static void ClearGlobalsForTesting();
+
private:
// Types --------------------------------------------------------------------
@@ -440,7 +453,8 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory {
// Dooms the entry associated with a GET for a given url and network
// isolation key.
void DoomMainEntryForUrl(const GURL& url,
- const NetworkIsolationKey& isolation_key);
+ const NetworkIsolationKey& isolation_key,
+ bool is_subframe_document_resource);
// Closes a previously doomed entry.
void FinalizeDoomedEntry(ActiveEntry* entry);
@@ -638,6 +652,7 @@ class NET_EXPORT HttpCache : public HttpTransactionFactory {
// Used when generating and accessing keys if cache is split.
static const char kDoubleKeyPrefix[];
static const char kDoubleKeySeparator[];
+ static const char kSubframeDocumentResourcePrefix[];
// Variables ----------------------------------------------------------------
diff --git a/chromium/net/http/http_cache_lookup_manager.cc b/chromium/net/http/http_cache_lookup_manager.cc
index 1e71a417ef9..b3774cdebfc 100644
--- a/chromium/net/http/http_cache_lookup_manager.cc
+++ b/chromium/net/http/http_cache_lookup_manager.cc
@@ -17,10 +17,10 @@ namespace net {
base::Value NetLogPushLookupTransactionParams(
const NetLogSource& net_log,
const ServerPushDelegate::ServerPushHelper* push_helper) {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
net_log.AddToEventParameters(&dict);
- dict.SetString("push_url", push_helper->GetURL().possibly_invalid_spec());
- return std::move(dict);
+ dict.SetStringKey("push_url", push_helper->GetURL().possibly_invalid_spec());
+ return dict;
}
HttpCacheLookupManager::LookupTransaction::LookupTransaction(
diff --git a/chromium/net/http/http_cache_transaction.cc b/chromium/net/http/http_cache_transaction.cc
index 663677c5865..3ee8cba9c78 100644
--- a/chromium/net/http/http_cache_transaction.cc
+++ b/chromium/net/http/http_cache_transaction.cc
@@ -16,7 +16,7 @@
#include "base/auto_reset.h"
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/compiler_specific.h"
#include "base/format_macros.h"
#include "base/location.h"
@@ -485,6 +485,11 @@ const HttpResponseInfo* HttpCache::Transaction::GetResponseInfo() const {
}
LoadState HttpCache::Transaction::GetLoadState() const {
+ // If there's no pending callback, the ball is not in the
+ // HttpCache::Transaction's court, whatever else may be going on.
+ if (!callback_)
+ return LOAD_STATE_IDLE;
+
LoadState state = GetWriterLoadState();
if (state != LOAD_STATE_WAITING_FOR_CACHE)
return state;
@@ -1831,10 +1836,10 @@ int HttpCache::Transaction::DoSuccessfulSendRequest() {
// invalidate in the cache.
if (!(effective_load_flags_ & LOAD_DISABLE_CACHE) && method_ == "POST" &&
NonErrorResponse(new_response_->headers->response_code()) &&
- (!base::FeatureList::IsEnabled(
- net::features::kSplitCacheByNetworkIsolationKey) ||
+ (!HttpCache::IsSplitCacheEnabled() ||
request_->network_isolation_key.IsFullyPopulated())) {
- cache_->DoomMainEntryForUrl(request_->url, request_->network_isolation_key);
+ cache_->DoomMainEntryForUrl(request_->url, request_->network_isolation_key,
+ request_->is_subframe_document_resource);
}
RecordNoStoreHeaderHistogram(request_->load_flags, new_response_);
@@ -2441,8 +2446,7 @@ bool HttpCache::Transaction::ShouldPassThrough() {
// again. Also, if the request does not have a top frame origin, bypass the
// cache otherwise resources from different pages could share a cached entry
// in such cases.
- else if (base::FeatureList::IsEnabled(
- features::kSplitCacheByNetworkIsolationKey) &&
+ else if (HttpCache::IsSplitCacheEnabled() &&
request_->network_isolation_key.IsTransient()) {
cacheable = false;
} else if (method_ == "GET" || method_ == "HEAD") {
@@ -3439,12 +3443,10 @@ void HttpCache::Transaction::RecordHistograms() {
// Given that cache_entry_status_ is not ENTRY_UNDEFINED, the request must
// have started and so request_ should exist.
DCHECK(request_);
- if (!request_->network_isolation_key.IsEmpty()) {
- const url::Origin& top_frame_origin =
- request_->network_isolation_key.GetTopFrameOrigin().value();
+ if (request_->possibly_top_frame_origin) {
url::Origin request_origin = url::Origin::Create(request_->url);
-
- is_third_party = !top_frame_origin.IsSameOriginWith(request_origin);
+ is_third_party =
+ !request_origin.IsSameOriginWith(*request_->possibly_top_frame_origin);
}
std::string mime_type;
diff --git a/chromium/net/http/http_cache_unittest.cc b/chromium/net/http/http_cache_unittest.cc
index bbe4f6ff2b0..2d207f9e352 100644
--- a/chromium/net/http/http_cache_unittest.cc
+++ b/chromium/net/http/http_cache_unittest.cc
@@ -12,7 +12,7 @@
#include <vector>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/files/scoped_temp_dir.h"
#include "base/format_macros.h"
#include "base/macros.h"
@@ -2458,7 +2458,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationDifferentRanges) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// 2nd transaction requests ranges 30-39.
@@ -2611,7 +2611,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationCacheLockTimeout) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// Cache lock timeout will lead to dooming the entry since the transaction may
@@ -2706,7 +2706,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationCouldntConditionalize) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// 2nd transaction requests a range.
@@ -2794,7 +2794,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationCouldConditionalize) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// 2nd transaction requests a range.
@@ -2870,7 +2870,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationOverlappingRanges) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// 2nd transaction requests ranges 30-49.
@@ -2973,7 +2973,7 @@ TEST_F(HttpCacheTest, RangeGET_ParallelValidationRestartDoneHeaders) {
std::string data_read(buffer->data(), kBufferSize);
first_read = data_read;
- EXPECT_EQ(LOAD_STATE_READING_RESPONSE, c->trans->GetLoadState());
+ EXPECT_EQ(LOAD_STATE_IDLE, c->trans->GetLoadState());
}
// 2nd transaction requests ranges 30-59.
@@ -10567,6 +10567,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyCSS) {
// Requesting with the same top-frame origin should not count as third-party
// but should still be recorded as CSS
trans_info.network_isolation_key = NetworkIsolationKey(origin_a, origin_a);
+ trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10578,6 +10579,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyCSS) {
// Requesting with a different top-frame origin should count as third-party
// and recorded as CSS
trans_info.network_isolation_key = NetworkIsolationKey(origin_b, origin_b);
+ trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10602,6 +10604,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyJavaScript) {
// Requesting with the same top-frame origin should not count as third-party
// but should still be recorded as JavaScript
trans_info.network_isolation_key = NetworkIsolationKey(origin_a, origin_a);
+ trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10613,6 +10616,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyJavaScript) {
// Requesting with a different top-frame origin should count as third-party
// and recorded as JavaScript
trans_info.network_isolation_key = NetworkIsolationKey(origin_b, origin_b);
+ trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10637,6 +10641,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyFont) {
// Requesting with the same top-frame origin should not count as third-party
// but should still be recorded as a font
trans_info.network_isolation_key = NetworkIsolationKey(origin_a, origin_a);
+ trans_info.possibly_top_frame_origin = origin_a;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10648,6 +10653,7 @@ TEST_F(HttpCacheTest, HttpCacheProfileThirdPartyFont) {
// Requesting with a different top-frame origin should count as third-party
// and recorded as a font
trans_info.network_isolation_key = NetworkIsolationKey(origin_b, origin_b);
+ trans_info.possibly_top_frame_origin = origin_b;
RunTransactionTestWithRequest(cache.http_cache(), transaction, trans_info,
&response);
@@ -10703,6 +10709,19 @@ TEST_F(HttpCacheTest, SplitCache) {
trans_info, &response);
EXPECT_TRUE(response.was_cached);
+ // If the same resource with the same NIK is for a subframe document resource,
+ // it should not be a cache hit.
+ MockHttpRequest subframe_document_trans_info = trans_info;
+ subframe_document_trans_info.is_subframe_document_resource = true;
+ RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
+ subframe_document_trans_info, &response);
+ EXPECT_FALSE(response.was_cached);
+
+ // Same request again should be a cache hit.
+ RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
+ subframe_document_trans_info, &response);
+ EXPECT_TRUE(response.was_cached);
+
// Now request with b.com as the top frame origin. It shouldn't be cached.
trans_info.network_isolation_key = NetworkIsolationKey(origin_b, origin_b);
RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
@@ -10752,6 +10771,47 @@ TEST_F(HttpCacheTest, SplitCache) {
EXPECT_FALSE(response.was_cached);
}
+TEST_F(HttpCacheTest, SplitCacheEnabledByDefault) {
+ HttpCache::ClearGlobalsForTesting();
+ HttpCache::SplitCacheFeatureEnableByDefault();
+ EXPECT_TRUE(HttpCache::IsSplitCacheEnabled());
+
+ MockHttpCache cache;
+ HttpResponseInfo response;
+
+ url::Origin origin_a = url::Origin::Create(GURL("http://a.com"));
+ url::Origin origin_b = url::Origin::Create(GURL("http://b.com"));
+ MockHttpRequest trans_info = MockHttpRequest(kSimpleGET_Transaction);
+ net::NetworkIsolationKey key_a(origin_a, origin_a);
+ trans_info.network_isolation_key = key_a;
+ RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
+ trans_info, &response);
+ EXPECT_FALSE(response.was_cached);
+
+ // Subsequent requests with the same NIK and different NIK will be a cache hit
+ // and miss respectively.
+ RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
+ trans_info, &response);
+ EXPECT_TRUE(response.was_cached);
+
+ net::NetworkIsolationKey key_b(origin_b, origin_b);
+ trans_info.network_isolation_key = key_b;
+ RunTransactionTestWithRequest(cache.http_cache(), kSimpleGET_Transaction,
+ trans_info, &response);
+ EXPECT_FALSE(response.was_cached);
+}
+
+TEST_F(HttpCacheTest, SplitCacheEnabledByDefaultButOverridden) {
+ HttpCache::ClearGlobalsForTesting();
+ base::test::ScopedFeatureList feature_list;
+ feature_list.InitAndDisableFeature(
+ net::features::kSplitCacheByNetworkIsolationKey);
+
+ // Enabling it here should have no effect as it is already overridden.
+ HttpCache::SplitCacheFeatureEnableByDefault();
+ EXPECT_FALSE(HttpCache::IsSplitCacheEnabled());
+}
+
TEST_F(HttpCacheTest, SplitCacheUsesRegistrableDomain) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(
diff --git a/chromium/net/http/http_cache_writers.cc b/chromium/net/http/http_cache_writers.cc
index 5d8e78d22dd..9459509d5d8 100644
--- a/chromium/net/http/http_cache_writers.cc
+++ b/chromium/net/http/http_cache_writers.cc
@@ -9,7 +9,7 @@
#include "base/auto_reset.h"
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/logging.h"
#include "base/threading/thread_task_runner_handle.h"
#include "net/base/net_errors.h"
diff --git a/chromium/net/http/http_network_session.cc b/chromium/net/http/http_network_session.cc
index 07020ccd4f6..6dd71b080ef 100644
--- a/chromium/net/http/http_network_session.cc
+++ b/chromium/net/http/http_network_session.cc
@@ -258,76 +258,77 @@ std::unique_ptr<base::Value> HttpNetworkSession::SpdySessionPoolInfoToValue()
return spdy_session_pool_.SpdySessionPoolInfoToValue();
}
-std::unique_ptr<base::Value> HttpNetworkSession::QuicInfoToValue() const {
- std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
- dict->Set("sessions", quic_stream_factory_.QuicStreamFactoryInfoToValue());
- dict->SetBoolean("quic_enabled", IsQuicEnabled());
+base::Value HttpNetworkSession::QuicInfoToValue() const {
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetKey("sessions",
+ base::Value::FromUniquePtrValue(
+ quic_stream_factory_.QuicStreamFactoryInfoToValue()));
+ dict.SetBoolKey("quic_enabled", IsQuicEnabled());
const QuicParams* quic_params = context_.quic_context->params();
- auto connection_options(std::make_unique<base::ListValue>());
+ base::Value connection_options(base::Value::Type::LIST);
for (const auto& option : quic_params->connection_options)
- connection_options->AppendString(quic::QuicTagToString(option));
- dict->Set("connection_options", std::move(connection_options));
+ connection_options.Append(quic::QuicTagToString(option));
+ dict.SetKey("connection_options", std::move(connection_options));
- auto supported_versions(std::make_unique<base::ListValue>());
+ base::Value supported_versions(base::Value::Type::LIST);
for (const auto& version : quic_params->supported_versions)
- supported_versions->AppendString(ParsedQuicVersionToString(version));
- dict->Set("supported_versions", std::move(supported_versions));
+ supported_versions.Append(ParsedQuicVersionToString(version));
+ dict.SetKey("supported_versions", std::move(supported_versions));
- auto origins_to_force_quic_on(std::make_unique<base::ListValue>());
+ base::Value origins_to_force_quic_on(base::Value::Type::LIST);
for (const auto& origin : quic_params->origins_to_force_quic_on)
- origins_to_force_quic_on->AppendString(origin.ToString());
- dict->Set("origins_to_force_quic_on", std::move(origins_to_force_quic_on));
-
- dict->SetInteger("max_packet_length", quic_params->max_packet_length);
- dict->SetInteger("max_server_configs_stored_in_properties",
- quic_params->max_server_configs_stored_in_properties);
- dict->SetInteger("idle_connection_timeout_seconds",
- quic_params->idle_connection_timeout.InSeconds());
- dict->SetInteger("reduced_ping_timeout_seconds",
- quic_params->reduced_ping_timeout.InSeconds());
- dict->SetBoolean("retry_without_alt_svc_on_quic_errors",
- quic_params->retry_without_alt_svc_on_quic_errors);
- dict->SetBoolean("disable_bidirectional_streams",
- quic_params->disable_bidirectional_streams);
- dict->SetBoolean("close_sessions_on_ip_change",
- quic_params->close_sessions_on_ip_change);
- dict->SetBoolean("goaway_sessions_on_ip_change",
- quic_params->goaway_sessions_on_ip_change);
- dict->SetBoolean("migrate_sessions_on_network_change_v2",
- quic_params->migrate_sessions_on_network_change_v2);
- dict->SetBoolean("migrate_sessions_early_v2",
- quic_params->migrate_sessions_early_v2);
- dict->SetInteger(
- "retransmittable_on_wire_timeout_milliseconds",
- quic_params->retransmittable_on_wire_timeout.InMilliseconds());
- dict->SetBoolean("retry_on_alternate_network_before_handshake",
- quic_params->retry_on_alternate_network_before_handshake);
- dict->SetBoolean("migrate_idle_sessions", quic_params->migrate_idle_sessions);
- dict->SetInteger("idle_session_migration_period_seconds",
- quic_params->idle_session_migration_period.InSeconds());
- dict->SetInteger("max_time_on_non_default_network_seconds",
- quic_params->max_time_on_non_default_network.InSeconds());
- dict->SetInteger(
+ origins_to_force_quic_on.Append(origin.ToString());
+ dict.SetKey("origins_to_force_quic_on", std::move(origins_to_force_quic_on));
+
+ dict.SetIntKey("max_packet_length", quic_params->max_packet_length);
+ dict.SetIntKey("max_server_configs_stored_in_properties",
+ quic_params->max_server_configs_stored_in_properties);
+ dict.SetIntKey("idle_connection_timeout_seconds",
+ quic_params->idle_connection_timeout.InSeconds());
+ dict.SetIntKey("reduced_ping_timeout_seconds",
+ quic_params->reduced_ping_timeout.InSeconds());
+ dict.SetBoolKey("retry_without_alt_svc_on_quic_errors",
+ quic_params->retry_without_alt_svc_on_quic_errors);
+ dict.SetBoolKey("disable_bidirectional_streams",
+ quic_params->disable_bidirectional_streams);
+ dict.SetBoolKey("close_sessions_on_ip_change",
+ quic_params->close_sessions_on_ip_change);
+ dict.SetBoolKey("goaway_sessions_on_ip_change",
+ quic_params->goaway_sessions_on_ip_change);
+ dict.SetBoolKey("migrate_sessions_on_network_change_v2",
+ quic_params->migrate_sessions_on_network_change_v2);
+ dict.SetBoolKey("migrate_sessions_early_v2",
+ quic_params->migrate_sessions_early_v2);
+ dict.SetIntKey("retransmittable_on_wire_timeout_milliseconds",
+ quic_params->retransmittable_on_wire_timeout.InMilliseconds());
+ dict.SetBoolKey("retry_on_alternate_network_before_handshake",
+ quic_params->retry_on_alternate_network_before_handshake);
+ dict.SetBoolKey("migrate_idle_sessions", quic_params->migrate_idle_sessions);
+ dict.SetIntKey("idle_session_migration_period_seconds",
+ quic_params->idle_session_migration_period.InSeconds());
+ dict.SetIntKey("max_time_on_non_default_network_seconds",
+ quic_params->max_time_on_non_default_network.InSeconds());
+ dict.SetIntKey(
"max_num_migrations_to_non_default_network_on_write_error",
quic_params->max_migrations_to_non_default_network_on_write_error);
- dict->SetInteger(
+ dict.SetIntKey(
"max_num_migrations_to_non_default_network_on_path_degrading",
quic_params->max_migrations_to_non_default_network_on_path_degrading);
- dict->SetBoolean("allow_server_migration",
- quic_params->allow_server_migration);
- dict->SetBoolean("race_stale_dns_on_connection",
- quic_params->race_stale_dns_on_connection);
- dict->SetBoolean("go_away_on_path_degrading",
- quic_params->go_away_on_path_degrading);
- dict->SetBoolean("estimate_initial_rtt", quic_params->estimate_initial_rtt);
- dict->SetBoolean("server_push_cancellation",
- params_.enable_server_push_cancellation);
- dict->SetInteger("initial_rtt_for_handshake_milliseconds",
- quic_params->initial_rtt_for_handshake.InMilliseconds());
-
- return std::move(dict);
+ dict.SetBoolKey("allow_server_migration",
+ quic_params->allow_server_migration);
+ dict.SetBoolKey("race_stale_dns_on_connection",
+ quic_params->race_stale_dns_on_connection);
+ dict.SetBoolKey("go_away_on_path_degrading",
+ quic_params->go_away_on_path_degrading);
+ dict.SetBoolKey("estimate_initial_rtt", quic_params->estimate_initial_rtt);
+ dict.SetBoolKey("server_push_cancellation",
+ params_.enable_server_push_cancellation);
+ dict.SetIntKey("initial_rtt_for_handshake_milliseconds",
+ quic_params->initial_rtt_for_handshake.InMilliseconds());
+
+ return dict;
}
void HttpNetworkSession::CloseAllConnections(int net_error,
@@ -343,7 +344,7 @@ void HttpNetworkSession::CloseAllConnections(int net_error,
void HttpNetworkSession::CloseIdleConnections(const char* net_log_reason_utf8) {
normal_socket_pool_manager_->CloseIdleSockets(net_log_reason_utf8);
websocket_socket_pool_manager_->CloseIdleSockets(net_log_reason_utf8);
- spdy_session_pool_.CloseCurrentIdleSessions();
+ spdy_session_pool_.CloseCurrentIdleSessions(net_log_reason_utf8);
}
void HttpNetworkSession::SetServerPushDelegate(
diff --git a/chromium/net/http/http_network_session.h b/chromium/net/http/http_network_session.h
index c823c73c779..a57b4893759 100644
--- a/chromium/net/http/http_network_session.h
+++ b/chromium/net/http/http_network_session.h
@@ -248,7 +248,7 @@ class NET_EXPORT HttpNetworkSession {
// Creates a Value summary of the state of the QUIC sessions and
// configuration.
- std::unique_ptr<base::Value> QuicInfoToValue() const;
+ base::Value QuicInfoToValue() const;
void CloseAllConnections(int net_error, const char* net_log_reason_utf8);
void CloseIdleConnections(const char* net_log_reason_utf8);
diff --git a/chromium/net/http/http_network_transaction.cc b/chromium/net/http/http_network_transaction.cc
index 44104427ace..6563da54e95 100644
--- a/chromium/net/http/http_network_transaction.cc
+++ b/chromium/net/http/http_network_transaction.cc
@@ -10,7 +10,7 @@
#include "base/base64url.h"
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/compiler_specific.h"
#include "base/format_macros.h"
#include "base/metrics/field_trial.h"
@@ -192,7 +192,9 @@ int HttpNetworkTransaction::Start(const HttpRequestInfo* request_info,
proxy_ssl_config_.disable_cert_verification_network_fetches = true;
}
- if (HttpUtil::IsMethodSafe(request_info->method)) {
+ if (request_->idempotency == IDEMPOTENT ||
+ (request_->idempotency == DEFAULT_IDEMPOTENCY &&
+ HttpUtil::IsMethodSafe(request_info->method))) {
can_send_early_data_ = true;
}
@@ -1329,8 +1331,8 @@ void HttpNetworkTransaction::ProcessReportToHeader() {
if (!response_.headers->GetNormalizedHeader("Report-To", &value))
return;
- ReportingService* service = session_->reporting_service();
- if (!service)
+ ReportingService* reporting_service = session_->reporting_service();
+ if (!reporting_service)
return;
// Only accept Report-To headers on HTTPS connections that have no
@@ -1340,7 +1342,8 @@ void HttpNetworkTransaction::ProcessReportToHeader() {
if (IsCertStatusError(response_.ssl_info.cert_status))
return;
- service->ProcessHeader(url_.GetOrigin(), value);
+ reporting_service->ProcessHeader(url_.GetOrigin(), network_isolation_key_,
+ value);
}
void HttpNetworkTransaction::ProcessNetworkErrorLoggingHeader() {
@@ -1350,9 +1353,9 @@ void HttpNetworkTransaction::ProcessNetworkErrorLoggingHeader() {
return;
}
- NetworkErrorLoggingService* service =
+ NetworkErrorLoggingService* network_error_logging_service =
session_->network_error_logging_service();
- if (!service)
+ if (!network_error_logging_service)
return;
// Don't accept NEL headers received via a proxy, because the IP address of
@@ -1370,8 +1373,9 @@ void HttpNetworkTransaction::ProcessNetworkErrorLoggingHeader() {
if (remote_endpoint_.address().empty())
return;
- service->OnHeader(url::Origin::Create(url_), remote_endpoint_.address(),
- value);
+ network_error_logging_service->OnHeader(network_isolation_key_,
+ url::Origin::Create(url_),
+ remote_endpoint_.address(), value);
}
void HttpNetworkTransaction::GenerateNetworkErrorLoggingReportIfError(int rv) {
@@ -1410,6 +1414,7 @@ void HttpNetworkTransaction::GenerateNetworkErrorLoggingReport(int rv) {
NetworkErrorLoggingService::RequestDetails details;
+ details.network_isolation_key = network_isolation_key_;
details.uri = url_;
if (!request_referrer_.empty())
details.referrer = GURL(request_referrer_);
diff --git a/chromium/net/http/http_network_transaction_unittest.cc b/chromium/net/http/http_network_transaction_unittest.cc
index f8fcca106f7..8b56db06267 100644
--- a/chromium/net/http/http_network_transaction_unittest.cc
+++ b/chromium/net/http/http_network_transaction_unittest.cc
@@ -579,6 +579,10 @@ class HttpNetworkTransactionTest : public PlatformTest,
const CommonConnectJobParams dummy_connect_job_params_;
+ const net::NetworkIsolationKey kNetworkIsolationKey =
+ NetworkIsolationKey(url::Origin::Create(GURL("https://foo.test/")),
+ url::Origin::Create(GURL("https://bar.test/")));
+
// These clocks are defined here, even though they're only used in the
// Reporting tests below, since they need to be destroyed after
// |session_deps_|.
@@ -1649,7 +1653,7 @@ void HttpNetworkTransactionTest::Check100ResponseTiming(bool use_spdy) {
spdy::SpdySerializedFrame spdy_req(
spdy_util_.ConstructSpdyGet(request.url.spec().c_str(), 1, LOWEST));
- spdy::SpdyHeaderBlock spdy_resp1_headers;
+ spdy::Http2HeaderBlock spdy_resp1_headers;
spdy_resp1_headers[spdy::kHttp2StatusHeader] = "100";
spdy::SpdySerializedFrame spdy_resp1(
spdy_util_.ConstructSpdyReply(1, spdy_resp1_headers.Clone()));
@@ -1917,7 +1921,7 @@ void HttpNetworkTransactionTest::PreconnectErrorResendRequestTest(
// SPDY versions of the request and response.
- spdy::SpdyHeaderBlock spdy_post_header_block;
+ spdy::Http2HeaderBlock spdy_post_header_block;
spdy_post_header_block[spdy::kHttp2MethodHeader] = "POST";
spdy_util.AddUrlToHeaderBlock(request.url.spec(), &spdy_post_header_block);
spdy::SpdySerializedFrame spdy_request(
@@ -6285,7 +6289,6 @@ TEST_F(HttpNetworkTransactionTest, HttpProxyLoadTimingWithPacTwoRequests) {
// Make sure that NetworkIsolationKeys are passed down to the proxy layer.
TEST_F(HttpNetworkTransactionTest, ProxyResolvedWithNetworkIsolationKey) {
const url::Origin kOrigin = url::Origin::Create(GURL("https://foo.test/"));
- const net::NetworkIsolationKey kNetworkIsolationKey(kOrigin, kOrigin);
ProxyConfig proxy_config;
proxy_config.set_auto_detect(true);
@@ -7121,7 +7124,7 @@ TEST_F(HttpNetworkTransactionTest,
spdy_util_.ConstructSpdyWindowUpdate(1, wrapped_get_resp1.size()));
// CONNECT to mail.example.org:443 via SPDY.
- spdy::SpdyHeaderBlock connect2_block;
+ spdy::Http2HeaderBlock connect2_block;
connect2_block[spdy::kHttp2MethodHeader] = "CONNECT";
connect2_block[spdy::kHttp2AuthorityHeader] = "mail.example.org:443";
spdy::SpdySerializedFrame connect2(spdy_util_.ConstructSpdyHeaders(
@@ -7365,7 +7368,7 @@ TEST_F(HttpNetworkTransactionTest, HttpsProxySpdyLoadTimingTwoHttpRequests) {
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS);
// http://www.example.org/
- spdy::SpdyHeaderBlock headers(
+ spdy::Http2HeaderBlock headers(
spdy_util_.ConstructGetHeaderBlockForProxy("http://www.example.org/"));
spdy::SpdySerializedFrame get1(
spdy_util_.ConstructSpdyHeaders(1, std::move(headers), LOWEST, true));
@@ -7376,7 +7379,7 @@ TEST_F(HttpNetworkTransactionTest, HttpsProxySpdyLoadTimingTwoHttpRequests) {
spdy_util_.UpdateWithStreamDestruction(1);
// http://mail.example.org/
- spdy::SpdyHeaderBlock headers2(
+ spdy::Http2HeaderBlock headers2(
spdy_util_.ConstructGetHeaderBlockForProxy("http://mail.example.org/"));
spdy::SpdySerializedFrame get2(
spdy_util_.ConstructSpdyHeaders(3, std::move(headers2), LOWEST, true));
@@ -8563,12 +8566,12 @@ TEST_F(HttpNetworkTransactionTest, NTLMOverHttp2) {
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS);
// First request without credentials.
- spdy::SpdyHeaderBlock request_headers0(
+ spdy::Http2HeaderBlock request_headers0(
spdy_util_.ConstructGetHeaderBlock(kUrl));
spdy::SpdySerializedFrame request0(spdy_util_.ConstructSpdyHeaders(
1, std::move(request_headers0), LOWEST, true));
- spdy::SpdyHeaderBlock response_headers0;
+ spdy::Http2HeaderBlock response_headers0;
response_headers0[spdy::kHttp2StatusHeader] = "401";
response_headers0["www-authenticate"] = "NTLM";
spdy::SpdySerializedFrame resp(spdy_util_.ConstructSpdyResponseHeaders(
@@ -8720,7 +8723,7 @@ TEST_F(HttpNetworkTransactionTest, NTLMOverHttp2WithWebsockets) {
// Initial request establishes an H2 connection, which will then be reused for
// WebSockets. This is needed since WebSockets will reuse H2 connections, but
// it won't create a new one.
- spdy::SpdyHeaderBlock initial_request_headers(
+ spdy::Http2HeaderBlock initial_request_headers(
spdy_util_.ConstructGetHeaderBlock(kInitialUrl.spec()));
spdy::SpdySerializedFrame initial_request(spdy_util_.ConstructSpdyHeaders(
1, std::move(initial_request_headers), DEFAULT_PRIORITY, true));
@@ -8738,7 +8741,7 @@ TEST_F(HttpNetworkTransactionTest, NTLMOverHttp2WithWebsockets) {
spdy_util_.ConstructSpdyGetReply(nullptr, 0, 1));
// First WebSocket request, which has no credentials.
- spdy::SpdyHeaderBlock websocket_request_headers;
+ spdy::Http2HeaderBlock websocket_request_headers;
websocket_request_headers[spdy::kHttp2MethodHeader] = "CONNECT";
websocket_request_headers[spdy::kHttp2AuthorityHeader] = "server";
websocket_request_headers[spdy::kHttp2SchemeHeader] = "https";
@@ -8752,7 +8755,7 @@ TEST_F(HttpNetworkTransactionTest, NTLMOverHttp2WithWebsockets) {
3, std::move(websocket_request_headers), MEDIUM, false));
// Auth challenge to WebSocket request.
- spdy::SpdyHeaderBlock auth_challenge_headers;
+ spdy::Http2HeaderBlock auth_challenge_headers;
auth_challenge_headers[spdy::kHttp2StatusHeader] = "401";
auth_challenge_headers["www-authenticate"] = "NTLM";
spdy::SpdySerializedFrame websocket_auth_challenge(
@@ -17127,7 +17130,7 @@ TEST_F(HttpNetworkTransactionTest, RetryWithoutConnectionPooling) {
spdy::SpdySerializedFrame resp1(
spdy_util_.ConstructSpdyGetReply(nullptr, 0, 1));
spdy::SpdySerializedFrame body1(spdy_util_.ConstructSpdyDataFrame(1, true));
- spdy::SpdyHeaderBlock response_headers;
+ spdy::Http2HeaderBlock response_headers;
response_headers[spdy::kHttp2StatusHeader] = "421";
spdy::SpdySerializedFrame resp2(
spdy_util_.ConstructSpdyReply(3, std::move(response_headers)));
@@ -17252,7 +17255,7 @@ TEST_F(HttpNetworkTransactionTest, ReturnHTTP421OnRetry) {
spdy::SpdySerializedFrame resp1(
spdy_util_.ConstructSpdyGetReply(nullptr, 0, 1));
spdy::SpdySerializedFrame body1(spdy_util_.ConstructSpdyDataFrame(1, true));
- spdy::SpdyHeaderBlock response_headers;
+ spdy::Http2HeaderBlock response_headers;
response_headers[spdy::kHttp2StatusHeader] = "421";
spdy::SpdySerializedFrame resp2(
spdy_util_.ConstructSpdyReply(3, response_headers.Clone()));
@@ -17799,7 +17802,7 @@ TEST_F(HttpNetworkTransactionTest, DoNotUseSpdySessionForHttpOverTunnel) {
spdy_util_.ConstructWrappedSpdyFrame(req1, 1));
// SPDY GET for HTTP URL (through the proxy, but not the tunnel).
- spdy::SpdyHeaderBlock req2_block;
+ spdy::Http2HeaderBlock req2_block;
req2_block[spdy::kHttp2MethodHeader] = "GET";
req2_block[spdy::kHttp2AuthorityHeader] = "www.example.org:8080";
req2_block[spdy::kHttp2SchemeHeader] = "http";
@@ -17919,7 +17922,7 @@ TEST_F(HttpNetworkTransactionTest, DoNotUseSpdySessionIfCertDoesNotMatch) {
SpdyTestUtil spdy_util_secure;
// SPDY GET for HTTP URL (through SPDY proxy)
- spdy::SpdyHeaderBlock headers(
+ spdy::Http2HeaderBlock headers(
spdy_util_.ConstructGetHeaderBlockForProxy("http://www.example.org/"));
spdy::SpdySerializedFrame req1(
spdy_util_.ConstructSpdyHeaders(1, std::move(headers), LOWEST, true));
@@ -19692,6 +19695,11 @@ TEST_F(HttpNetworkTransactionTest, NoSupportedProxies) {
#if BUILDFLAG(ENABLE_REPORTING)
class HttpNetworkTransactionReportingTest : public HttpNetworkTransactionTest {
protected:
+ HttpNetworkTransactionReportingTest() {
+ feature_list_.InitAndEnableFeature(
+ features::kPartitionNelAndReportingByNetworkIsolationKey);
+ }
+
void SetUp() override {
HttpNetworkTransactionTest::SetUp();
auto test_reporting_context = std::make_unique<TestReportingContext>(
@@ -19717,6 +19725,7 @@ class HttpNetworkTransactionReportingTest : public HttpNetworkTransactionTest {
request.url = GURL(url_);
request.traffic_annotation =
net::MutableNetworkTrafficAnnotationTag(TRAFFIC_ANNOTATION_FOR_TESTS);
+ request.network_isolation_key = kNetworkIsolationKey;
MockWrite data_writes[] = {
MockWrite("GET / HTTP/1.1\r\n"
@@ -19756,6 +19765,7 @@ class HttpNetworkTransactionReportingTest : public HttpNetworkTransactionTest {
std::string url_ = "https://www.example.org/";
private:
+ base::test::ScopedFeatureList feature_list_;
TestReportingContext* test_reporting_context_;
};
@@ -19778,7 +19788,7 @@ TEST_F(HttpNetworkTransactionReportingTest, ProcessReportToHeaderHttps) {
const ReportingEndpoint endpoint =
reporting_context()->cache()->GetEndpointForTesting(
ReportingEndpointGroupKey(
- NetworkIsolationKey(),
+ kNetworkIsolationKey,
url::Origin::Create(GURL("https://www.example.org/")), "nel"),
GURL("https://www.example.org/upload/"));
EXPECT_TRUE(endpoint);
@@ -19819,6 +19829,7 @@ class HttpNetworkTransactionNetworkErrorLoggingTest
request_.method = "GET";
request_.url = GURL(url_);
+ request_.network_isolation_key = kNetworkIsolationKey;
request_.extra_headers = extra_headers_;
request_.reporting_upload_depth = reporting_upload_depth_;
request_.traffic_annotation =
@@ -19884,6 +19895,7 @@ class HttpNetworkTransactionNetworkErrorLoggingTest
const NetworkErrorLoggingService::RequestDetails& error =
network_error_logging_service()->errors()[index];
EXPECT_EQ(url_, error.uri);
+ EXPECT_EQ(kNetworkIsolationKey, error.network_isolation_key);
EXPECT_EQ(kReferrer, error.referrer);
EXPECT_EQ(kUserAgent, error.user_agent);
EXPECT_EQ(server_ip, error.server_ip);
@@ -19988,6 +20000,7 @@ TEST_F(HttpNetworkTransactionNetworkErrorLoggingTest, ProcessNelHeaderHttps) {
RequestPolicy();
ASSERT_EQ(1u, network_error_logging_service()->headers().size());
const auto& header = network_error_logging_service()->headers()[0];
+ EXPECT_EQ(kNetworkIsolationKey, header.network_isolation_key);
EXPECT_EQ(url::Origin::Create(GURL("https://www.example.org/")),
header.origin);
EXPECT_EQ(IPAddress::IPv4Localhost(), header.received_ip_address);
@@ -20557,7 +20570,7 @@ TEST_F(HttpNetworkTransactionNetworkErrorLoggingTest,
spdy::SpdySerializedFrame resp1(
spdy_util_.ConstructSpdyGetReply(nullptr, 0, 1));
spdy::SpdySerializedFrame body1(spdy_util_.ConstructSpdyDataFrame(1, true));
- spdy::SpdyHeaderBlock response_headers;
+ spdy::Http2HeaderBlock response_headers;
response_headers[spdy::kHttp2StatusHeader] = "421";
spdy::SpdySerializedFrame resp2(
spdy_util_.ConstructSpdyReply(3, std::move(response_headers)));
diff --git a/chromium/net/http/http_proxy_client_socket.cc b/chromium/net/http/http_proxy_client_socket.cc
index 4ee4331a626..be5115ba481 100644
--- a/chromium/net/http/http_proxy_client_socket.cc
+++ b/chromium/net/http/http_proxy_client_socket.cc
@@ -7,7 +7,6 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
#include "base/callback_helpers.h"
#include "base/strings/string_util.h"
#include "base/values.h"
diff --git a/chromium/net/http/http_request_headers.cc b/chromium/net/http/http_request_headers.cc
index 81e8ca2dac4..84ea9acff02 100644
--- a/chromium/net/http/http_request_headers.cc
+++ b/chromium/net/http/http_request_headers.cc
@@ -197,17 +197,17 @@ std::string HttpRequestHeaders::ToString() const {
base::Value HttpRequestHeaders::NetLogParams(
const std::string& request_line,
NetLogCaptureMode capture_mode) const {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
dict.SetKey("line", NetLogStringValue(request_line));
- auto headers = std::make_unique<base::ListValue>();
- for (auto it = headers_.begin(); it != headers_.end(); ++it) {
+ base::Value headers(base::Value::Type::LIST);
+ for (const auto& header : headers_) {
std::string log_value =
- ElideHeaderValueForNetLog(capture_mode, it->key, it->value);
- headers->Append(
- NetLogStringValue(base::StrCat({it->key, ": ", log_value})));
+ ElideHeaderValueForNetLog(capture_mode, header.key, header.value);
+ headers.Append(
+ NetLogStringValue(base::StrCat({header.key, ": ", log_value})));
}
- dict.Set("headers", std::move(headers));
- return std::move(dict);
+ dict.SetKey("headers", std::move(headers));
+ return dict;
}
HttpRequestHeaders::HeaderVector::iterator HttpRequestHeaders::FindHeader(
diff --git a/chromium/net/http/http_request_info.cc b/chromium/net/http/http_request_info.cc
index 1410e3b1a7a..23445980a16 100644
--- a/chromium/net/http/http_request_info.cc
+++ b/chromium/net/http/http_request_info.cc
@@ -7,11 +7,13 @@
namespace net {
HttpRequestInfo::HttpRequestInfo()
- : upload_data_stream(nullptr),
+ : is_subframe_document_resource(false),
+ upload_data_stream(nullptr),
load_flags(0),
privacy_mode(PRIVACY_MODE_DISABLED),
disable_secure_dns(false),
- reporting_upload_depth(0) {}
+ reporting_upload_depth(0),
+ idempotency(net::DEFAULT_IDEMPOTENCY) {}
HttpRequestInfo::HttpRequestInfo(const HttpRequestInfo& other) = default;
diff --git a/chromium/net/http/http_request_info.h b/chromium/net/http/http_request_info.h
index 3c57bc6fe34..3837cf4da13 100644
--- a/chromium/net/http/http_request_info.h
+++ b/chromium/net/http/http_request_info.h
@@ -8,6 +8,7 @@
#include <string>
#include "base/optional.h"
+#include "net/base/idempotency.h"
#include "net/base/net_export.h"
#include "net/base/network_isolation_key.h"
#include "net/base/privacy_mode.h"
@@ -15,6 +16,7 @@
#include "net/socket/socket_tag.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "url/gurl.h"
+#include "url/origin.h"
namespace net {
@@ -35,6 +37,9 @@ struct NET_EXPORT HttpRequestInfo {
// shared network resources like the cache.
NetworkIsolationKey network_isolation_key;
+ // True if it is a subframe's document resource.
+ bool is_subframe_document_resource;
+
// Any extra request headers (including User-Agent).
HttpRequestHeaders extra_headers;
@@ -64,6 +69,23 @@ struct NET_EXPORT HttpRequestInfo {
// If the request is a Reporting upload, the depth is the max of the depth
// of the requests reported within it plus 1.
int reporting_upload_depth;
+
+ // This may the top frame origin associated with a request, or it may be the
+ // top frame site. Or it may be nullptr. Only used for histograms.
+ //
+ // TODO(https://crbug.com/1136054): Investigate migrating the one consumer of
+ // this to NetworkIsolationKey::TopFrameSite(). That gives more consistent
+ /// behavior, and may still provide useful metrics.
+ base::Optional<url::Origin> possibly_top_frame_origin;
+
+ // Idempotency of the request, which determines that if it is safe to enable
+ // 0-RTT for the request. By default, 0-RTT is only enabled for safe
+ // HTTP methods, i.e., GET, HEAD, OPTIONS, and TRACE. For other methods,
+ // enabling 0-RTT may cause security issues since a network observer can
+ // replay the request. If the request has any side effects, those effects can
+ // happen multiple times. It is only safe to enable the 0-RTT if it is known
+ // that the request is idempotent.
+ net::Idempotency idempotency;
};
} // namespace net
diff --git a/chromium/net/http/http_response_headers.cc b/chromium/net/http/http_response_headers.cc
index 4c1429239bb..8daf5867805 100644
--- a/chromium/net/http/http_response_headers.cc
+++ b/chromium/net/http/http_response_headers.cc
@@ -1333,8 +1333,8 @@ bool HttpResponseHeaders::GetContentRangeFor206(
base::Value HttpResponseHeaders::NetLogParams(
NetLogCaptureMode capture_mode) const {
- base::DictionaryValue dict;
- base::ListValue headers;
+ base::Value dict(base::Value::Type::DICTIONARY);
+ base::Value headers(base::Value::Type::LIST);
headers.Append(NetLogStringValue(GetStatusLine()));
size_t iterator = 0;
std::string name;
@@ -1345,7 +1345,7 @@ base::Value HttpResponseHeaders::NetLogParams(
headers.Append(NetLogStringValue(base::StrCat({name, ": ", log_value})));
}
dict.SetKey("headers", std::move(headers));
- return std::move(dict);
+ return dict;
}
bool HttpResponseHeaders::IsChunkEncoded() const {
diff --git a/chromium/net/http/http_response_info.cc b/chromium/net/http/http_response_info.cc
index 65daba72b04..711667b8847 100644
--- a/chromium/net/http/http_response_info.cc
+++ b/chromium/net/http/http_response_info.cc
@@ -8,7 +8,6 @@
#include "base/numerics/safe_conversions.h"
#include "base/pickle.h"
#include "base/time/time.h"
-#include "net/base/io_buffer.h"
#include "net/base/net_errors.h"
#include "net/cert/sct_status_flags.h"
#include "net/cert/signed_certificate_timestamp.h"
diff --git a/chromium/net/http/http_response_info.h b/chromium/net/http/http_response_info.h
index e47c31f1512..a056f4d3ae7 100644
--- a/chromium/net/http/http_response_info.h
+++ b/chromium/net/http/http_response_info.h
@@ -24,7 +24,6 @@ class Pickle;
namespace net {
class HttpResponseHeaders;
-class IOBufferWithSize;
class SSLCertRequestInfo;
class NET_EXPORT HttpResponseInfo {
@@ -242,9 +241,6 @@ class NET_EXPORT HttpResponseInfo {
// The "Vary" header data for this response.
HttpVaryData vary_data;
- // Any metadata associated with this resource's cached data.
- scoped_refptr<IOBufferWithSize> metadata;
-
static std::string ConnectionInfoToString(ConnectionInfo connection_info);
};
diff --git a/chromium/net/http/http_server_properties.cc b/chromium/net/http/http_server_properties.cc
index 38728fdc070..7f67a27dbd0 100644
--- a/chromium/net/http/http_server_properties.cc
+++ b/chromium/net/http/http_server_properties.cc
@@ -375,16 +375,14 @@ void HttpServerProperties::OnDefaultNetworkChanged() {
MaybeQueueWriteProperties();
}
-std::unique_ptr<base::Value>
-HttpServerProperties::GetAlternativeServiceInfoAsValue() const {
+base::Value HttpServerProperties::GetAlternativeServiceInfoAsValue() const {
const base::Time now = clock_->Now();
const base::TimeTicks now_ticks = tick_clock_->NowTicks();
- std::unique_ptr<base::ListValue> dict_list(new base::ListValue);
+ base::Value dict_list(base::Value::Type::LIST);
for (const auto& server_info : server_info_map_) {
if (!server_info.second.alternative_services.has_value())
continue;
- std::unique_ptr<base::ListValue> alternative_service_list(
- new base::ListValue);
+ base::Value alternative_service_list(base::Value::Type::LIST);
const ServerInfoMapKey& key = server_info.first;
for (const AlternativeServiceInfo& alternative_service_info :
server_info.second.alternative_services.value()) {
@@ -415,19 +413,18 @@ HttpServerProperties::GetAlternativeServiceInfoAsValue() const {
")";
alternative_service_string.append(broken_info_string);
}
- alternative_service_list->AppendString(alternative_service_string);
+ alternative_service_list.Append(std::move(alternative_service_string));
}
- if (alternative_service_list->empty())
+ if (alternative_service_list.GetList().empty())
continue;
- std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
- dict->SetString("server", key.server.Serialize());
- dict->SetString("network_isolation_key",
- key.network_isolation_key.ToDebugString());
- dict->Set("alternative_service", std::unique_ptr<base::Value>(
- std::move(alternative_service_list)));
- dict_list->Append(std::move(dict));
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetStringKey("server", key.server.Serialize());
+ dict.SetStringKey("network_isolation_key",
+ key.network_isolation_key.ToDebugString());
+ dict.SetKey("alternative_service", std::move(alternative_service_list));
+ dict_list.Append(std::move(dict));
}
- return std::move(dict_list);
+ return dict_list;
}
bool HttpServerProperties::WasLastLocalAddressWhenQuicWorked(
diff --git a/chromium/net/http/http_server_properties.h b/chromium/net/http/http_server_properties.h
index 6c71351701b..bab8f5967ad 100644
--- a/chromium/net/http/http_server_properties.h
+++ b/chromium/net/http/http_server_properties.h
@@ -111,12 +111,12 @@ class NET_EXPORT HttpServerProperties
// Returns the branch of the preferences system for the server properties.
// Returns nullptr if the pref system has no data for the server properties.
- virtual const base::DictionaryValue* GetServerProperties() const = 0;
+ virtual const base::Value* GetServerProperties() const = 0;
// Sets the server properties to the given value. If |callback| is
// non-empty, flushes data to persistent storage and invokes |callback|
// asynchronously when complete.
- virtual void SetServerProperties(const base::DictionaryValue& value,
+ virtual void SetServerProperties(const base::Value& value,
base::OnceClosure callback) = 0;
// Starts listening for prefs to be loaded. If prefs are already loaded,
@@ -362,7 +362,7 @@ class NET_EXPORT HttpServerProperties
// Returns all alternative service mappings as human readable strings.
// Empty alternative service hostnames will be printed as such.
- std::unique_ptr<base::Value> GetAlternativeServiceInfoAsValue() const;
+ base::Value GetAlternativeServiceInfoAsValue() const;
// Tracks the last local address when QUIC was known to work. The address
// cannot be set to an empty address - use
diff --git a/chromium/net/http/http_server_properties_manager.cc b/chromium/net/http/http_server_properties_manager.cc
index 00fb6ee099b..41632986436 100644
--- a/chromium/net/http/http_server_properties_manager.cc
+++ b/chromium/net/http/http_server_properties_manager.cc
@@ -9,6 +9,7 @@
#include "base/bind.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_macros.h"
+#include "base/optional.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/time/tick_clock.h"
@@ -105,20 +106,22 @@ AlternativeServiceInfoVector GetAlternativeServiceToPersist(
void AddAlternativeServiceFieldsToDictionaryValue(
const AlternativeService& alternative_service,
- base::DictionaryValue* dict) {
- dict->SetInteger(kPortKey, alternative_service.port);
+ base::Value* dict) {
+ DCHECK(dict->is_dict());
+ dict->SetIntKey(kPortKey, alternative_service.port);
if (!alternative_service.host.empty()) {
- dict->SetString(kHostKey, alternative_service.host);
+ dict->SetStringKey(kHostKey, alternative_service.host);
}
- dict->SetString(kProtocolKey,
- NextProtoToString(alternative_service.protocol));
+ dict->SetStringKey(kProtocolKey,
+ NextProtoToString(alternative_service.protocol));
}
// Fails in the case of NetworkIsolationKeys that can't be persisted to disk,
// like unique origins.
bool TryAddBrokenAlternativeServiceFieldsToDictionaryValue(
const BrokenAlternativeService& broken_alt_service,
- base::DictionaryValue* dict) {
+ base::Value* dict) {
+ DCHECK(dict->is_dict());
base::Value network_isolation_key_value;
if (!broken_alt_service.network_isolation_key.ToValue(
&network_isolation_key_value)) {
@@ -226,24 +229,23 @@ void HttpServerPropertiesManager::ReadPrefs(
net_log_.EndEvent(NetLogEventType::HTTP_SERVER_PROPERTIES_INITIALIZATION);
- const base::DictionaryValue* http_server_properties_dict =
+ const base::Value* http_server_properties_dict =
pref_delegate_->GetServerProperties();
// If there are no preferences set, do nothing.
- if (!http_server_properties_dict)
+ if (!http_server_properties_dict || !http_server_properties_dict->is_dict())
return;
net_log_.AddEvent(NetLogEventType::HTTP_SERVER_PROPERTIES_UPDATE_CACHE,
[&] { return http_server_properties_dict->Clone(); });
- int version_number = kMissingVersion;
- if (!http_server_properties_dict->GetIntegerWithoutPathExpansion(
- kVersionKey, &version_number) ||
- version_number != kVersionNumber) {
+ base::Optional<int> maybe_version_number =
+ http_server_properties_dict->FindIntKey(kVersionKey);
+ if (!maybe_version_number.has_value() ||
+ *maybe_version_number != kVersionNumber) {
DVLOG(1) << "Missing or unsupported. Clearing all properties. "
- << version_number;
+ << maybe_version_number.value_or(kMissingVersion);
return;
}
- const base::ListValue* servers_list = nullptr;
// For Version 5, data is stored in the following format.
// |servers| are saved in MRU order. |servers| are in the format flattened
// representation of (scheme/host/port) where port might be ignored if is
@@ -257,8 +259,9 @@ void HttpServerPropertiesManager::ReadPrefs(
// ...
// ], ...
// },
- if (!http_server_properties_dict->GetListWithoutPathExpansion(
- kServersKey, &servers_list)) {
+ const base::Value* servers_list =
+ http_server_properties_dict->FindListKey(kServersKey);
+ if (!servers_list) {
DVLOG(1) << "Malformed http_server_properties for servers list.";
return;
}
@@ -277,15 +280,14 @@ void HttpServerPropertiesManager::ReadPrefs(
// Iterate servers list in reverse MRU order so that entries are inserted
// into |spdy_servers_map|, |alternative_service_map|, and
// |server_network_stats_map| from oldest to newest.
- const base::DictionaryValue* server_dict = nullptr;
- for (auto it = servers_list->end(); it != servers_list->begin();) {
+ for (auto it = servers_list->GetList().end();
+ it != servers_list->GetList().begin();) {
--it;
- if (!it->GetAsDictionary(&server_dict)) {
+ if (!it->is_dict()) {
DVLOG(1) << "Malformed http_server_properties for servers dictionary.";
continue;
}
- AddServerData(*server_dict, server_info_map->get(),
- use_network_isolation_key);
+ AddServerData(*it, server_info_map->get(), use_network_isolation_key);
}
AddToQuicServerInfoMap(*http_server_properties_dict,
@@ -294,9 +296,9 @@ void HttpServerPropertiesManager::ReadPrefs(
// Read list containing broken and recently-broken alternative services, if
// it exists.
- const base::ListValue* broken_alt_svc_list;
- if (http_server_properties_dict->GetListWithoutPathExpansion(
- kBrokenAlternativeServicesKey, &broken_alt_svc_list)) {
+ const base::Value* broken_alt_svc_list =
+ http_server_properties_dict->FindListKey(kBrokenAlternativeServicesKey);
+ if (broken_alt_svc_list) {
*broken_alternative_service_list =
std::make_unique<BrokenAlternativeServiceList>();
*recently_broken_alternative_services =
@@ -304,16 +306,15 @@ void HttpServerPropertiesManager::ReadPrefs(
kMaxRecentlyBrokenAlternativeServiceEntries);
// Iterate list in reverse-MRU order
- for (auto it = broken_alt_svc_list->end();
- it != broken_alt_svc_list->begin();) {
+ for (auto it = broken_alt_svc_list->GetList().end();
+ it != broken_alt_svc_list->GetList().begin();) {
--it;
- const base::DictionaryValue* entry_dict;
- if (!it->GetAsDictionary(&entry_dict)) {
+ if (!it->is_dict()) {
DVLOG(1) << "Malformed broken alterantive service entry.";
continue;
}
AddToBrokenAlternativeServices(
- *entry_dict, use_network_isolation_key,
+ *it, use_network_isolation_key,
broken_alternative_service_list->get(),
recently_broken_alternative_services->get());
}
@@ -339,7 +340,7 @@ void HttpServerPropertiesManager::ReadPrefs(
}
void HttpServerPropertiesManager::AddToBrokenAlternativeServices(
- const base::DictionaryValue& broken_alt_svc_entry_dict,
+ const base::Value& broken_alt_svc_entry_dict,
bool use_network_isolation_key,
BrokenAlternativeServiceList* broken_alternative_service_list,
RecentlyBrokenAlternativeServices* recently_broken_alternative_services) {
@@ -362,33 +363,33 @@ void HttpServerPropertiesManager::AddToBrokenAlternativeServices(
// Read broken-count and add an entry for |alt_service| into
// |recently_broken_alternative_services|.
- if (broken_alt_svc_entry_dict.HasKey(kBrokenCountKey)) {
- int broken_count;
- if (!broken_alt_svc_entry_dict.GetIntegerWithoutPathExpansion(
- kBrokenCountKey, &broken_count)) {
+ if (broken_alt_svc_entry_dict.FindKey(kBrokenCountKey)) {
+ base::Optional<int> broken_count =
+ broken_alt_svc_entry_dict.FindIntKey(kBrokenCountKey);
+ if (!broken_count.has_value()) {
DVLOG(1) << "Recently broken alternative service has malformed "
<< "broken-count.";
return;
}
- if (broken_count < 0) {
+ if (broken_count.value() < 0) {
DVLOG(1) << "Broken alternative service has negative broken-count.";
return;
}
recently_broken_alternative_services->Put(
BrokenAlternativeService(alt_service, network_isolation_key,
use_network_isolation_key),
- broken_count);
+ broken_count.value());
contains_broken_count_or_broken_until = true;
}
// Read broken-until and add an entry for |alt_service| in
// |broken_alternative_service_list|.
- if (broken_alt_svc_entry_dict.HasKey(kBrokenUntilKey)) {
- std::string expiration_string;
+ if (broken_alt_svc_entry_dict.FindKey(kBrokenUntilKey)) {
+ const std::string* expiration_string =
+ broken_alt_svc_entry_dict.FindStringKey(kBrokenUntilKey);
int64_t expiration_int64;
- if (!broken_alt_svc_entry_dict.GetStringWithoutPathExpansion(
- kBrokenUntilKey, &expiration_string) ||
- !base::StringToInt64(expiration_string, &expiration_int64)) {
+ if (!expiration_string ||
+ !base::StringToInt64(*expiration_string, &expiration_int64)) {
DVLOG(1) << "Broken alternative service has malformed broken-until "
<< "string.";
return;
@@ -413,7 +414,7 @@ void HttpServerPropertiesManager::AddToBrokenAlternativeServices(
}
void HttpServerPropertiesManager::AddServerData(
- const base::DictionaryValue& server_dict,
+ const base::Value& server_dict,
HttpServerProperties::ServerInfoMap* server_info_map,
bool use_network_isolation_key) {
// Get server's scheme/host/pair.
@@ -449,18 +450,18 @@ void HttpServerPropertiesManager::AddServerData(
}
bool HttpServerPropertiesManager::ParseAlternativeServiceDict(
- const base::DictionaryValue& dict,
+ const base::Value& dict,
bool host_optional,
const std::string& parsing_under,
AlternativeService* alternative_service) {
// Protocol is mandatory.
- std::string protocol_str;
- if (!dict.GetStringWithoutPathExpansion(kProtocolKey, &protocol_str)) {
+ const std::string* protocol_str = dict.FindStringKey(kProtocolKey);
+ if (!protocol_str) {
DVLOG(1) << "Malformed alternative service protocol string under: "
<< parsing_under;
return false;
}
- NextProto protocol = NextProtoFromString(protocol_str);
+ NextProto protocol = NextProtoFromString(*protocol_str);
if (!IsAlternateProtocolValid(protocol)) {
DVLOG(1) << "Invalid alternative service protocol string \"" << protocol_str
<< "\" under: " << parsing_under;
@@ -470,12 +471,15 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceDict(
// If host is optional, it defaults to "".
std::string host = "";
- if (dict.HasKey(kHostKey)) {
- if (!dict.GetStringWithoutPathExpansion(kHostKey, &host)) {
+ const std::string* hostp = nullptr;
+ if (dict.FindKey(kHostKey)) {
+ hostp = dict.FindStringKey(kHostKey);
+ if (!hostp) {
DVLOG(1) << "Malformed alternative service host string under: "
<< parsing_under;
return false;
}
+ host = *hostp;
} else if (!host_optional) {
DVLOG(1) << "alternative service missing host string under: "
<< parsing_under;
@@ -484,18 +488,18 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceDict(
alternative_service->host = host;
// Port is mandatory.
- int port = 0;
- if (!dict.GetInteger(kPortKey, &port) || !IsPortValid(port)) {
+ base::Optional<int> maybe_port = dict.FindIntKey(kPortKey);
+ if (!maybe_port.has_value() || !IsPortValid(maybe_port.value())) {
DVLOG(1) << "Malformed alternative service port under: " << parsing_under;
return false;
}
- alternative_service->port = static_cast<uint32_t>(port);
+ alternative_service->port = static_cast<uint32_t>(maybe_port.value());
return true;
}
bool HttpServerPropertiesManager::ParseAlternativeServiceInfoDictOfServer(
- const base::DictionaryValue& dict,
+ const base::Value& dict,
const std::string& server_str,
AlternativeServiceInfo* alternative_service_info) {
AlternativeService alternative_service;
@@ -506,15 +510,14 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceInfoDictOfServer(
alternative_service_info->set_alternative_service(alternative_service);
// Expiration is optional, defaults to one day.
- if (!dict.HasKey(kExpirationKey)) {
+ if (!dict.FindKey(kExpirationKey)) {
alternative_service_info->set_expiration(base::Time::Now() +
base::TimeDelta::FromDays(1));
} else {
- std::string expiration_string;
- if (dict.GetStringWithoutPathExpansion(kExpirationKey,
- &expiration_string)) {
+ const std::string* expiration_string = dict.FindStringKey(kExpirationKey);
+ if (expiration_string) {
int64_t expiration_int64 = 0;
- if (!base::StringToInt64(expiration_string, &expiration_int64)) {
+ if (!base::StringToInt64(*expiration_string, &expiration_int64)) {
DVLOG(1) << "Malformed alternative service expiration for server: "
<< server_str;
return false;
@@ -530,16 +533,15 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceInfoDictOfServer(
// Advertised versions list is optional.
// It is only used for versions that use the legacy Google AltSvc format.
- if (dict.HasKey(kAdvertisedVersionsKey)) {
- const base::ListValue* versions_list = nullptr;
- if (!dict.GetListWithoutPathExpansion(kAdvertisedVersionsKey,
- &versions_list)) {
+ if (dict.FindKey(kAdvertisedVersionsKey)) {
+ const base::Value* versions_list = dict.FindListKey(kAdvertisedVersionsKey);
+ if (!versions_list) {
DVLOG(1) << "Malformed alternative service advertised versions list for "
<< "server: " << server_str;
return false;
}
quic::ParsedQuicVersionVector advertised_versions;
- for (const auto& value : *versions_list) {
+ for (const auto& value : versions_list->GetList()) {
int version;
if (!value.GetAsInteger(&version)) {
DVLOG(1) << "Malformed alternative service version for server: "
@@ -564,12 +566,12 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceInfoDictOfServer(
bool HttpServerPropertiesManager::ParseAlternativeServiceInfo(
const url::SchemeHostPort& server,
- const base::DictionaryValue& server_pref_dict,
+ const base::Value& server_pref_dict,
HttpServerProperties::ServerInfo* server_info) {
DCHECK(!server_info->alternative_services.has_value());
- const base::ListValue* alternative_service_list;
- if (!server_pref_dict.GetListWithoutPathExpansion(
- kAlternativeServiceKey, &alternative_service_list)) {
+ const base::Value* alternative_service_list =
+ server_pref_dict.FindListKey(kAlternativeServiceKey);
+ if (!alternative_service_list) {
return true;
}
if (server.scheme() != "https") {
@@ -577,13 +579,12 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceInfo(
}
AlternativeServiceInfoVector alternative_service_info_vector;
- for (const auto& alternative_service_list_item : *alternative_service_list) {
- const base::DictionaryValue* alternative_service_dict;
- if (!alternative_service_list_item.GetAsDictionary(
- &alternative_service_dict))
+ for (const auto& alternative_service_list_item :
+ alternative_service_list->GetList()) {
+ if (!alternative_service_list_item.is_dict())
return false;
AlternativeServiceInfo alternative_service_info;
- if (!ParseAlternativeServiceInfoDictOfServer(*alternative_service_dict,
+ if (!ParseAlternativeServiceInfoDictOfServer(alternative_service_list_item,
server.Serialize(),
&alternative_service_info)) {
return false;
@@ -602,56 +603,55 @@ bool HttpServerPropertiesManager::ParseAlternativeServiceInfo(
}
void HttpServerPropertiesManager::ReadLastLocalAddressWhenQuicWorked(
- const base::DictionaryValue& http_server_properties_dict,
+ const base::Value& http_server_properties_dict,
IPAddress* last_local_address_when_quic_worked) {
- const base::DictionaryValue* supports_quic_dict = nullptr;
- if (!http_server_properties_dict.GetDictionaryWithoutPathExpansion(
- kSupportsQuicKey, &supports_quic_dict)) {
+ const base::Value* supports_quic_dict =
+ http_server_properties_dict.FindDictKey(kSupportsQuicKey);
+ if (!supports_quic_dict) {
return;
}
- bool used_quic = false;
- if (!supports_quic_dict->GetBooleanWithoutPathExpansion(kUsedQuicKey,
- &used_quic)) {
+ const base::Value* used_quic = supports_quic_dict->FindKey(kUsedQuicKey);
+ if (!used_quic || !used_quic->is_bool()) {
DVLOG(1) << "Malformed SupportsQuic";
return;
}
- if (!used_quic)
+ if (!used_quic->GetBool())
return;
- std::string address;
- if (!supports_quic_dict->GetStringWithoutPathExpansion(kAddressKey,
- &address) ||
- !last_local_address_when_quic_worked->AssignFromIPLiteral(address)) {
+ const std::string* address = supports_quic_dict->FindStringKey(kAddressKey);
+ if (!address ||
+ !last_local_address_when_quic_worked->AssignFromIPLiteral(*address)) {
DVLOG(1) << "Malformed SupportsQuic";
}
}
void HttpServerPropertiesManager::ParseNetworkStats(
const url::SchemeHostPort& server,
- const base::DictionaryValue& server_pref_dict,
+ const base::Value& server_pref_dict,
HttpServerProperties::ServerInfo* server_info) {
DCHECK(!server_info->server_network_stats.has_value());
- const base::DictionaryValue* server_network_stats_dict = nullptr;
- if (!server_pref_dict.GetDictionaryWithoutPathExpansion(
- kNetworkStatsKey, &server_network_stats_dict)) {
+ const base::Value* server_network_stats_dict =
+ server_pref_dict.FindDictKey(kNetworkStatsKey);
+ if (!server_network_stats_dict) {
return;
}
- int srtt;
- if (!server_network_stats_dict->GetIntegerWithoutPathExpansion(kSrttKey,
- &srtt)) {
+ base::Optional<int> maybe_srtt =
+ server_network_stats_dict->FindIntKey(kSrttKey);
+ if (!maybe_srtt.has_value()) {
DVLOG(1) << "Malformed ServerNetworkStats for server: "
<< server.Serialize();
return;
}
ServerNetworkStats server_network_stats;
- server_network_stats.srtt = base::TimeDelta::FromMicroseconds(srtt);
+ server_network_stats.srtt =
+ base::TimeDelta::FromMicroseconds(maybe_srtt.value());
// TODO(rtenneti): When QUIC starts using bandwidth_estimate, then persist
// bandwidth_estimate.
server_info->server_network_stats = server_network_stats;
}
void HttpServerPropertiesManager::AddToQuicServerInfoMap(
- const base::DictionaryValue& http_server_properties_dict,
+ const base::Value& http_server_properties_dict,
bool use_network_isolation_key,
HttpServerProperties::QuicServerInfoMap* quic_server_info_map) {
const base::Value* quic_server_info_list =
@@ -719,9 +719,9 @@ void HttpServerPropertiesManager::WriteToPrefs(
std::set<std::pair<std::string, NetworkIsolationKey>>
persisted_canonical_suffix_set;
const base::Time now = base::Time::Now();
- base::DictionaryValue http_server_properties_dict;
+ base::Value http_server_properties_dict(base::Value::Type::DICTIONARY);
- // Convert |server_info_map| to a DictionaryValue and add it to
+ // Convert |server_info_map| to a dictionary Value and add it to
// |http_server_properties_dict|.
base::Value servers_list(base::Value::Type::LIST);
for (auto map_it = server_info_map.rbegin(); map_it != server_info_map.rend();
@@ -735,7 +735,7 @@ void HttpServerPropertiesManager::WriteToPrefs(
if (!key.network_isolation_key.ToValue(&network_isolation_key_value))
continue;
- base::DictionaryValue server_dict;
+ base::Value server_dict(base::Value::Type::DICTIONARY);
bool supports_spdy = server_info.supports_spdy.value_or(false);
if (supports_spdy)
@@ -765,7 +765,7 @@ void HttpServerPropertiesManager::WriteToPrefs(
}
http_server_properties_dict.SetKey(kServersKey, std::move(servers_list));
- http_server_properties_dict.SetInteger(kVersionKey, kVersionNumber);
+ http_server_properties_dict.SetIntKey(kVersionKey, kVersionNumber);
SaveLastLocalAddressWhenQuicWorkedToPrefs(last_local_address_when_quic_worked,
&http_server_properties_dict);
@@ -786,71 +786,68 @@ void HttpServerPropertiesManager::WriteToPrefs(
void HttpServerPropertiesManager::SaveAlternativeServiceToServerPrefs(
const AlternativeServiceInfoVector& alternative_service_info_vector,
- base::DictionaryValue* server_pref_dict) {
+ base::Value* server_pref_dict) {
if (alternative_service_info_vector.empty()) {
return;
}
- std::unique_ptr<base::ListValue> alternative_service_list(
- new base::ListValue);
+ base::Value alternative_service_list(base::Value::Type::LIST);
for (const AlternativeServiceInfo& alternative_service_info :
alternative_service_info_vector) {
const AlternativeService& alternative_service =
alternative_service_info.alternative_service();
DCHECK(IsAlternateProtocolValid(alternative_service.protocol));
- std::unique_ptr<base::DictionaryValue> alternative_service_dict(
- new base::DictionaryValue);
- AddAlternativeServiceFieldsToDictionaryValue(
- alternative_service, alternative_service_dict.get());
+ base::Value alternative_service_dict(base::Value::Type::DICTIONARY);
+ AddAlternativeServiceFieldsToDictionaryValue(alternative_service,
+ &alternative_service_dict);
// JSON cannot store int64_t, so expiration is converted to a string.
- alternative_service_dict->SetString(
+ alternative_service_dict.SetStringKey(
kExpirationKey,
base::NumberToString(
alternative_service_info.expiration().ToInternalValue()));
- std::unique_ptr<base::ListValue> advertised_versions_list =
- std::make_unique<base::ListValue>();
+ base::Value advertised_versions_list(base::Value::Type::LIST);
for (const auto& version : alternative_service_info.advertised_versions()) {
- advertised_versions_list->AppendInteger(version.transport_version);
+ advertised_versions_list.Append(version.transport_version);
}
- alternative_service_dict->SetList(kAdvertisedVersionsKey,
- std::move(advertised_versions_list));
- alternative_service_list->Append(std::move(alternative_service_dict));
+ alternative_service_dict.SetKey(kAdvertisedVersionsKey,
+ std::move(advertised_versions_list));
+ alternative_service_list.Append(std::move(alternative_service_dict));
}
- if (alternative_service_list->GetSize() == 0)
+ if (alternative_service_list.GetList().size() == 0)
return;
- server_pref_dict->SetWithoutPathExpansion(
- kAlternativeServiceKey, std::move(alternative_service_list));
+ server_pref_dict->SetKey(kAlternativeServiceKey,
+ std::move(alternative_service_list));
}
void HttpServerPropertiesManager::SaveLastLocalAddressWhenQuicWorkedToPrefs(
const IPAddress& last_local_address_when_quic_worked,
- base::DictionaryValue* http_server_properties_dict) {
+ base::Value* http_server_properties_dict) {
if (!last_local_address_when_quic_worked.IsValid())
return;
- auto supports_quic_dict = std::make_unique<base::DictionaryValue>();
- supports_quic_dict->SetBoolean(kUsedQuicKey, true);
- supports_quic_dict->SetString(kAddressKey,
- last_local_address_when_quic_worked.ToString());
- http_server_properties_dict->SetWithoutPathExpansion(
- kSupportsQuicKey, std::move(supports_quic_dict));
+ base::Value supports_quic_dict(base::Value::Type::DICTIONARY);
+ supports_quic_dict.SetBoolKey(kUsedQuicKey, true);
+ supports_quic_dict.SetStringKey(
+ kAddressKey, last_local_address_when_quic_worked.ToString());
+ http_server_properties_dict->SetKey(kSupportsQuicKey,
+ std::move(supports_quic_dict));
}
void HttpServerPropertiesManager::SaveNetworkStatsToServerPrefs(
const ServerNetworkStats& server_network_stats,
- base::DictionaryValue* server_pref_dict) {
- auto server_network_stats_dict = std::make_unique<base::DictionaryValue>();
+ base::Value* server_pref_dict) {
+ base::Value server_network_stats_dict(base::Value::Type::DICTIONARY);
// Becasue JSON doesn't support int64_t, persist int64_t as a string.
- server_network_stats_dict->SetInteger(
+ server_network_stats_dict.SetIntKey(
kSrttKey, static_cast<int>(server_network_stats.srtt.InMicroseconds()));
// TODO(rtenneti): When QUIC starts using bandwidth_estimate, then persist
// bandwidth_estimate.
- server_pref_dict->SetWithoutPathExpansion(
- kNetworkStatsKey, std::move(server_network_stats_dict));
+ server_pref_dict->SetKey(kNetworkStatsKey,
+ std::move(server_network_stats_dict));
}
void HttpServerPropertiesManager::SaveQuicServerInfoMapToServerPrefs(
const HttpServerProperties::QuicServerInfoMap& quic_server_info_map,
- base::DictionaryValue* http_server_properties_dict) {
+ base::Value* http_server_properties_dict) {
if (quic_server_info_map.empty())
return;
base::Value quic_servers_list(base::Value::Type::LIST);
@@ -881,7 +878,7 @@ void HttpServerPropertiesManager::SaveBrokenAlternativeServicesToPrefs(
size_t max_broken_alternative_services,
const RecentlyBrokenAlternativeServices&
recently_broken_alternative_services,
- base::DictionaryValue* http_server_properties_dict) {
+ base::Value* http_server_properties_dict) {
if (broken_alternative_service_list.empty() &&
recently_broken_alternative_services.empty()) {
return;
@@ -889,8 +886,7 @@ void HttpServerPropertiesManager::SaveBrokenAlternativeServicesToPrefs(
// JSON list will be in MRU order according to
// |recently_broken_alternative_services|.
- std::unique_ptr<base::ListValue> json_list =
- std::make_unique<base::ListValue>();
+ base::Value json_list(base::Value::Type::LIST);
// Maps recently-broken alternative services to the index where it's stored
// in |json_list|.
@@ -902,14 +898,14 @@ void HttpServerPropertiesManager::SaveBrokenAlternativeServicesToPrefs(
const BrokenAlternativeService& broken_alt_service = it->first;
int broken_count = it->second;
- base::DictionaryValue entry_dict;
+ base::Value entry_dict(base::Value::Type::DICTIONARY);
if (!TryAddBrokenAlternativeServiceFieldsToDictionaryValue(
broken_alt_service, &entry_dict)) {
continue;
}
entry_dict.SetKey(kBrokenCountKey, base::Value(broken_count));
- json_list_index_map[broken_alt_service] = json_list->GetList().size();
- json_list->Append(std::move(entry_dict));
+ json_list_index_map[broken_alt_service] = json_list.GetList().size();
+ json_list.Append(std::move(entry_dict));
}
}
@@ -932,32 +928,31 @@ void HttpServerPropertiesManager::SaveBrokenAlternativeServicesToPrefs(
auto index_map_it = json_list_index_map.find(broken_alt_service);
if (index_map_it != json_list_index_map.end()) {
size_t json_list_index = index_map_it->second;
- base::DictionaryValue* entry_dict = nullptr;
- bool result = json_list->GetDictionary(json_list_index, &entry_dict);
- DCHECK(result);
- DCHECK(!entry_dict->HasKey(kBrokenUntilKey));
- entry_dict->SetKey(kBrokenUntilKey,
- base::Value(base::NumberToString(expiration_int64)));
+ base::Value& entry_dict = json_list.GetList()[json_list_index];
+ DCHECK(entry_dict.is_dict());
+ DCHECK(!entry_dict.FindKey(kBrokenUntilKey));
+ entry_dict.SetKey(kBrokenUntilKey,
+ base::Value(base::NumberToString(expiration_int64)));
} else {
- base::DictionaryValue entry_dict;
+ base::Value entry_dict(base::Value::Type::DICTIONARY);
if (!TryAddBrokenAlternativeServiceFieldsToDictionaryValue(
broken_alt_service, &entry_dict)) {
continue;
}
entry_dict.SetKey(kBrokenUntilKey,
base::Value(base::NumberToString(expiration_int64)));
- json_list->Append(std::move(entry_dict));
+ json_list.Append(std::move(entry_dict));
}
}
}
// This can happen if all the entries are for NetworkIsolationKeys for opaque
// origins, which isn't exactly common, but can theoretically happen.
- if (json_list->empty())
+ if (json_list.GetList().empty())
return;
- http_server_properties_dict->SetWithoutPathExpansion(
- kBrokenAlternativeServicesKey, std::move(json_list));
+ http_server_properties_dict->SetKey(kBrokenAlternativeServicesKey,
+ std::move(json_list));
}
void HttpServerPropertiesManager::OnHttpServerPropertiesLoaded() {
diff --git a/chromium/net/http/http_server_properties_manager.h b/chromium/net/http/http_server_properties_manager.h
index d80595179f3..c62b37140d7 100644
--- a/chromium/net/http/http_server_properties_manager.h
+++ b/chromium/net/http/http_server_properties_manager.h
@@ -21,7 +21,6 @@
#include "net/log/net_log_with_source.h"
namespace base {
-class DictionaryValue;
class TickClock;
}
@@ -127,7 +126,7 @@ class NET_EXPORT_PRIVATE HttpServerPropertiesManager {
FRIEND_TEST_ALL_PREFIXES(HttpServerPropertiesManagerTest,
DoNotLoadExpiredAlternativeService);
- void AddServerData(const base::DictionaryValue& server_dict,
+ void AddServerData(const base::Value& server_dict,
HttpServerProperties::ServerInfoMap* server_info_map,
bool use_network_isolation_key);
@@ -141,13 +140,13 @@ class NET_EXPORT_PRIVATE HttpServerPropertiesManager {
// |alternative_service| is the output of parsing |dict|.
// Return value is true if parsing is successful.
static bool ParseAlternativeServiceDict(
- const base::DictionaryValue& dict,
+ const base::Value& dict,
bool host_optional,
const std::string& parsing_under,
AlternativeService* alternative_service);
static bool ParseAlternativeServiceInfoDictOfServer(
- const base::DictionaryValue& dict,
+ const base::Value& dict,
const std::string& server_str,
AlternativeServiceInfo* alternative_service_info);
@@ -156,43 +155,43 @@ class NET_EXPORT_PRIVATE HttpServerPropertiesManager {
// not considered corruption).
static bool ParseAlternativeServiceInfo(
const url::SchemeHostPort& server,
- const base::DictionaryValue& server_dict,
+ const base::Value& server_dict,
HttpServerProperties::ServerInfo* server_info);
void ReadLastLocalAddressWhenQuicWorked(
- const base::DictionaryValue& server_dict,
+ const base::Value& server_dict,
IPAddress* last_local_address_when_quic_worked);
void ParseNetworkStats(const url::SchemeHostPort& server,
- const base::DictionaryValue& server_dict,
+ const base::Value& server_dict,
HttpServerProperties::ServerInfo* server_info);
void AddToQuicServerInfoMap(
- const base::DictionaryValue& server_dict,
+ const base::Value& server_dict,
bool use_network_isolation_key,
HttpServerProperties::QuicServerInfoMap* quic_server_info_map);
void AddToBrokenAlternativeServices(
- const base::DictionaryValue& broken_alt_svc_entry_dict,
+ const base::Value& broken_alt_svc_entry_dict,
bool use_network_isolation_key,
BrokenAlternativeServiceList* broken_alternative_service_list,
RecentlyBrokenAlternativeServices* recently_broken_alternative_services);
void SaveAlternativeServiceToServerPrefs(
const AlternativeServiceInfoVector& alternative_service_info_vector,
- base::DictionaryValue* server_pref_dict);
+ base::Value* server_pref_dict);
void SaveLastLocalAddressWhenQuicWorkedToPrefs(
const IPAddress& last_local_address_when_quic_worked,
- base::DictionaryValue* http_server_properties_dict);
+ base::Value* http_server_properties_dict);
void SaveNetworkStatsToServerPrefs(
const ServerNetworkStats& server_network_stats,
- base::DictionaryValue* server_pref_dict);
+ base::Value* server_pref_dict);
void SaveQuicServerInfoMapToServerPrefs(
const HttpServerProperties::QuicServerInfoMap& quic_server_info_map,
- base::DictionaryValue* http_server_properties_dict);
+ base::Value* http_server_properties_dict);
void SaveBrokenAlternativeServicesToPrefs(
const BrokenAlternativeServiceList& broken_alternative_service_list,
size_t max_broken_alternative_services,
const RecentlyBrokenAlternativeServices&
recently_broken_alternative_services,
- base::DictionaryValue* http_server_properties_dict);
+ base::Value* http_server_properties_dict);
void OnHttpServerPropertiesLoaded();
diff --git a/chromium/net/http/http_server_properties_manager_unittest.cc b/chromium/net/http/http_server_properties_manager_unittest.cc
index f7849bad841..39c91d0d84c 100644
--- a/chromium/net/http/http_server_properties_manager_unittest.cc
+++ b/chromium/net/http/http_server_properties_manager_unittest.cc
@@ -16,7 +16,7 @@
#include "base/single_thread_task_runner.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
-#include "base/test/bind_test_util.h"
+#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "base/threading/thread_task_runner_handle.h"
#include "base/time/default_tick_clock.h"
@@ -86,13 +86,11 @@ class MockPrefDelegate : public net::HttpServerProperties::PrefDelegate {
~MockPrefDelegate() override = default;
// HttpServerProperties::PrefDelegate implementation.
- const base::DictionaryValue* GetServerProperties() const override {
- return &prefs_;
- }
+ const base::Value* GetServerProperties() const override { return &prefs_; }
- void SetServerProperties(const base::DictionaryValue& value,
+ void SetServerProperties(const base::Value& value,
base::OnceClosure callback) override {
- prefs_.Clear();
+ prefs_.DictClear();
prefs_.MergeDictionary(&value);
++num_pref_updates_;
if (!prefs_changed_callback_.is_null())
@@ -107,9 +105,9 @@ class MockPrefDelegate : public net::HttpServerProperties::PrefDelegate {
prefs_changed_callback_ = std::move(callback);
}
- void InitializePrefs(const base::DictionaryValue& value) {
+ void InitializePrefs(const base::Value& value) {
ASSERT_FALSE(prefs_changed_callback_.is_null());
- prefs_.Clear();
+ prefs_.DictClear();
prefs_.MergeDictionary(&value);
std::move(prefs_changed_callback_).Run();
}
@@ -133,7 +131,7 @@ class MockPrefDelegate : public net::HttpServerProperties::PrefDelegate {
}
private:
- base::DictionaryValue prefs_;
+ base::Value prefs_ = base::Value(base::Value::Type::DICTIONARY);
base::OnceClosure prefs_changed_callback_;
base::OnceClosure extra_prefs_changed_callback_;
int num_pref_updates_ = 0;
@@ -182,8 +180,7 @@ base::Value ServerInfoMapToValue(
// ServerInfoMap.
std::unique_ptr<HttpServerProperties::ServerInfoMap> ValueToServerInfoMap(
const base::Value& value) {
- const base::DictionaryValue* dictionary_value;
- if (!value.GetAsDictionary(&dictionary_value))
+ if (!value.is_dict())
return nullptr;
std::unique_ptr<MockPrefDelegate> pref_delegate =
@@ -213,7 +210,7 @@ std::unique_ptr<HttpServerProperties::ServerInfoMap> ValueToServerInfoMap(
10 /* max_server_configs_stored_in_properties */, nullptr /* net_log */,
base::DefaultTickClock::GetInstance());
- unowned_pref_delegate->InitializePrefs(*dictionary_value);
+ unowned_pref_delegate->InitializePrefs(value);
EXPECT_TRUE(callback_invoked);
return out;
}
@@ -248,7 +245,7 @@ class HttpServerPropertiesManagerTest : public testing::Test,
// |expect_pref_update| should be true if a pref update is expected to be
// queued in response to the load.
void InitializePrefs(
- const base::DictionaryValue& dict = base::DictionaryValue(),
+ const base::Value& dict = base::Value(base::Value::Type::DICTIONARY),
bool expect_pref_update = false) {
EXPECT_FALSE(http_server_props_->IsInitialized());
pref_delegate_->InitializePrefs(dict);
@@ -283,9 +280,9 @@ class HttpServerPropertiesManagerTest : public testing::Test,
}
// Returns a dictionary with only the version field populated.
- static base::DictionaryValue DictWithVersion() {
- base::DictionaryValue http_server_properties_dict;
- http_server_properties_dict.SetInteger("version", 5);
+ static base::Value DictWithVersion() {
+ base::Value http_server_properties_dict(base::Value::Type::DICTIONARY);
+ http_server_properties_dict.SetIntKey("version", 5);
return http_server_properties_dict;
}
@@ -299,45 +296,43 @@ class HttpServerPropertiesManagerTest : public testing::Test,
};
TEST_F(HttpServerPropertiesManagerTest, BadCachedHostPortPair) {
- auto server_pref_dict = std::make_unique<base::DictionaryValue>();
+ base::Value server_pref_dict(base::Value::Type::DICTIONARY);
// Set supports_spdy for www.google.com:65536.
- server_pref_dict->SetBoolean("supports_spdy", true);
+ server_pref_dict.SetBoolKey("supports_spdy", true);
// Set up alternative_service for www.google.com:65536.
- auto alternative_service_dict = std::make_unique<base::DictionaryValue>();
- alternative_service_dict->SetString("protocol_str", "h2");
- alternative_service_dict->SetInteger("port", 80);
- auto alternative_service_list = std::make_unique<base::ListValue>();
- alternative_service_list->Append(std::move(alternative_service_dict));
- server_pref_dict->SetWithoutPathExpansion(
- "alternative_service", std::move(alternative_service_list));
+ base::Value alternative_service_dict(base::Value::Type::DICTIONARY);
+ alternative_service_dict.SetStringKey("protocol_str", "h2");
+ alternative_service_dict.SetIntKey("port", 80);
+ base::Value alternative_service_list(base::Value::Type::LIST);
+ alternative_service_list.Append(std::move(alternative_service_dict));
+ server_pref_dict.SetKey("alternative_service",
+ std::move(alternative_service_list));
// Set up ServerNetworkStats for www.google.com:65536.
- auto stats = std::make_unique<base::DictionaryValue>();
- stats->SetInteger("srtt", 10);
- server_pref_dict->SetWithoutPathExpansion("network_stats", std::move(stats));
+ base::Value stats(base::Value::Type::DICTIONARY);
+ stats.SetIntKey("srtt", 10);
+ server_pref_dict.SetKey("network_stats", std::move(stats));
// Set the server preference for www.google.com:65536.
- auto servers_dict = std::make_unique<base::DictionaryValue>();
- servers_dict->SetWithoutPathExpansion("www.google.com:65536",
- std::move(server_pref_dict));
- auto servers_list = std::make_unique<base::ListValue>();
- servers_list->Append(std::move(servers_dict));
- base::DictionaryValue http_server_properties_dict = DictWithVersion();
- http_server_properties_dict.SetWithoutPathExpansion(
- "servers", std::move(servers_list));
+ base::Value servers_dict(base::Value::Type::DICTIONARY);
+ servers_dict.SetKey("www.google.com:65536", std::move(server_pref_dict));
+ base::Value servers_list(base::Value::Type::LIST);
+ servers_list.Append(std::move(servers_dict));
+ base::Value http_server_properties_dict = DictWithVersion();
+ http_server_properties_dict.SetKey("servers", std::move(servers_list));
// Set quic_server_info for www.google.com:65536.
- auto quic_servers_dict = std::make_unique<base::DictionaryValue>();
- auto quic_server_pref_dict1 = std::make_unique<base::DictionaryValue>();
- quic_server_pref_dict1->SetKey("server_info",
- base::Value("quic_server_info1"));
- quic_servers_dict->SetWithoutPathExpansion("http://mail.google.com:65536",
- std::move(quic_server_pref_dict1));
+ base::Value quic_servers_dict(base::Value::Type::DICTIONARY);
+ base::Value quic_server_pref_dict1(base::Value::Type::DICTIONARY);
+ quic_server_pref_dict1.SetKey("server_info",
+ base::Value("quic_server_info1"));
+ quic_servers_dict.SetKey("http://mail.google.com:65536",
+ std::move(quic_server_pref_dict1));
- http_server_properties_dict.SetWithoutPathExpansion(
- "quic_servers", std::move(quic_servers_dict));
+ http_server_properties_dict.SetKey("quic_servers",
+ std::move(quic_servers_dict));
// Set up the pref.
InitializePrefs(http_server_properties_dict);
@@ -358,37 +353,35 @@ TEST_F(HttpServerPropertiesManagerTest, BadCachedHostPortPair) {
}
TEST_F(HttpServerPropertiesManagerTest, BadCachedAltProtocolPort) {
- auto server_pref_dict = std::make_unique<base::DictionaryValue>();
+ base::Value server_pref_dict(base::Value::Type::DICTIONARY);
// Set supports_spdy for www.google.com:80.
- server_pref_dict->SetBoolean("supports_spdy", true);
+ server_pref_dict.SetBoolKey("supports_spdy", true);
// Set up alternative_service for www.google.com:80.
- auto alternative_service_dict = std::make_unique<base::DictionaryValue>();
- alternative_service_dict->SetString("protocol_str", "h2");
- alternative_service_dict->SetInteger("port", 65536);
- auto alternative_service_list = std::make_unique<base::ListValue>();
- alternative_service_list->Append(std::move(alternative_service_dict));
- server_pref_dict->SetWithoutPathExpansion(
- "alternative_service", std::move(alternative_service_list));
+ base::Value alternative_service_dict(base::Value::Type::DICTIONARY);
+ alternative_service_dict.SetStringKey("protocol_str", "h2");
+ alternative_service_dict.SetIntKey("port", 65536);
+ base::Value alternative_service_list(base::Value::Type::LIST);
+ alternative_service_list.Append(std::move(alternative_service_dict));
+ server_pref_dict.SetKey("alternative_service",
+ std::move(alternative_service_list));
// Set the server preference for www.google.com:80.
- auto servers_dict = std::make_unique<base::DictionaryValue>();
- servers_dict->SetWithoutPathExpansion("www.google.com:80",
- std::move(server_pref_dict));
- auto servers_list = std::make_unique<base::ListValue>();
- servers_list->Append(std::move(servers_dict));
- base::DictionaryValue http_server_properties_dict = DictWithVersion();
- http_server_properties_dict.SetWithoutPathExpansion(
- "servers", std::move(servers_list));
-
- // Set up the pref.
- InitializePrefs(http_server_properties_dict);
-
- // Verify alternative service is not set.
- EXPECT_FALSE(
- HasAlternativeService(url::SchemeHostPort("http", "www.google.com", 80),
- NetworkIsolationKey()));
+ base::Value servers_dict(base::Value::Type::DICTIONARY);
+ servers_dict.SetKey("www.google.com:80", std::move(server_pref_dict));
+ base::Value servers_list(base::Value::Type::LIST);
+ servers_list.Append(std::move(servers_dict));
+ base::Value http_server_properties_dict = DictWithVersion();
+ http_server_properties_dict.SetKey("servers", std::move(servers_list));
+
+ // Set up the pref.
+ InitializePrefs(http_server_properties_dict);
+
+ // Verify alternative service is not set.
+ EXPECT_FALSE(
+ HasAlternativeService(url::SchemeHostPort("http", "www.google.com", 80),
+ NetworkIsolationKey()));
}
TEST_F(HttpServerPropertiesManagerTest, SupportsSpdy) {
@@ -627,7 +620,8 @@ TEST_F(HttpServerPropertiesManagerTest, LateLoadAlternativeServiceInfo) {
alternative_service_info_vector[0].alternative_service());
// Initializing prefs does not result in a task to write the prefs.
- InitializePrefs(base::DictionaryValue(), true /* expect_pref_update */);
+ InitializePrefs(base::Value(base::Value::Type::DICTIONARY),
+ true /* expect_pref_update */);
alternative_service_info_vector =
http_server_props_->GetAlternativeServiceInfos(spdy_server_mail,
NetworkIsolationKey());
@@ -1038,8 +1032,7 @@ TEST_F(HttpServerPropertiesManagerTest, Clear) {
// https://crbug.com/444956: Add 200 alternative_service servers followed by
// supports_quic and verify we have read supports_quic from prefs.
TEST_F(HttpServerPropertiesManagerTest, BadLastLocalAddressWhenQuicWorked) {
- std::unique_ptr<base::ListValue> servers_list =
- std::make_unique<base::ListValue>();
+ base::Value servers_list(base::Value::Type::LIST);
for (int i = 1; i <= 200; ++i) {
// Set up alternative_service for www.google.com:i.
@@ -1054,25 +1047,23 @@ TEST_F(HttpServerPropertiesManagerTest, BadLastLocalAddressWhenQuicWorked) {
server_dict.SetStringKey("server",
StringPrintf("https://www.google.com:%d", i));
server_dict.SetKey("isolation", base::Value(base::Value::Type::LIST));
- servers_list->Append(std::move(server_dict));
+ servers_list.Append(std::move(server_dict));
}
// Set the server preference for http://mail.google.com server.
base::Value server_dict2(base::Value::Type::DICTIONARY);
server_dict2.SetStringKey("server", "https://mail.google.com");
server_dict2.SetKey("isolation", base::Value(base::Value::Type::LIST));
- servers_list->Append(std::move(server_dict2));
+ servers_list.Append(std::move(server_dict2));
- base::DictionaryValue http_server_properties_dict = DictWithVersion();
- http_server_properties_dict.SetWithoutPathExpansion("servers",
- std::move(servers_list));
+ base::Value http_server_properties_dict = DictWithVersion();
+ http_server_properties_dict.SetKey("servers", std::move(servers_list));
// Set up SupportsQuic for 127.0.0.1
- auto supports_quic = std::make_unique<base::DictionaryValue>();
- supports_quic->SetBoolean("used_quic", true);
- supports_quic->SetString("address", "127.0.0.1");
- http_server_properties_dict.SetWithoutPathExpansion("supports_quic",
- std::move(supports_quic));
+ base::Value supports_quic(base::Value::Type::DICTIONARY);
+ supports_quic.SetBoolKey("used_quic", true);
+ supports_quic.SetStringKey("address", "127.0.0.1");
+ http_server_properties_dict.SetKey("supports_quic", std::move(supports_quic));
// Set up the pref.
InitializePrefs(http_server_properties_dict);
@@ -1183,24 +1174,20 @@ TEST_F(HttpServerPropertiesManagerTest, UpdatePrefsWithCache) {
// A copy of |pref_delegate_|'s server dict will be created, and the broken
// alternative service's "broken_until" field is removed and verified
// separately. The rest of the server dict copy is verified afterwards.
- base::Value server_value_copy =
- pref_delegate_->GetServerProperties()->Clone();
+ base::Value server_dict = pref_delegate_->GetServerProperties()->Clone();
+ ASSERT_TRUE(server_dict.is_dict());
// Extract and remove the "broken_until" string for "www.google.com:1234".
- base::DictionaryValue* server_dict;
- ASSERT_TRUE(server_value_copy.GetAsDictionary(&server_dict));
- base::ListValue* broken_alt_svc_list;
- ASSERT_TRUE(server_dict->GetList("broken_alternative_services",
- &broken_alt_svc_list));
- ASSERT_EQ(2u, broken_alt_svc_list->GetSize());
- base::DictionaryValue* broken_alt_svcs_list_entry;
- ASSERT_TRUE(
- broken_alt_svc_list->GetDictionary(0, &broken_alt_svcs_list_entry));
- ASSERT_TRUE(broken_alt_svcs_list_entry->HasKey("broken_until"));
- std::string expiration_string;
- ASSERT_TRUE(broken_alt_svcs_list_entry->GetStringWithoutPathExpansion(
- "broken_until", &expiration_string));
- broken_alt_svcs_list_entry->RemoveKey("broken_until");
+ base::Value* broken_alt_svc_list =
+ server_dict.FindListKey("broken_alternative_services");
+ ASSERT_TRUE(broken_alt_svc_list);
+ ASSERT_EQ(2u, broken_alt_svc_list->GetList().size());
+ base::Value& broken_alt_svcs_list_entry = broken_alt_svc_list->GetList()[0];
+ const std::string* broken_until_str =
+ broken_alt_svcs_list_entry.FindStringKey("broken_until");
+ ASSERT_TRUE(broken_until_str);
+ const std::string expiration_string = *broken_until_str;
+ broken_alt_svcs_list_entry.RemoveKey("broken_until");
// Expiration time of "www.google.com:1234" should be 5 minutes minus the
// update-prefs-delay from when the prefs were written.
@@ -1246,22 +1233,21 @@ TEST_F(HttpServerPropertiesManagerTest, UpdatePrefsWithCache) {
"\"version\":5}";
std::string preferences_json;
- EXPECT_TRUE(base::JSONWriter::Write(server_value_copy, &preferences_json));
+ EXPECT_TRUE(base::JSONWriter::Write(server_dict, &preferences_json));
EXPECT_EQ(expected_json, preferences_json);
}
TEST_F(HttpServerPropertiesManagerTest, ParseAlternativeServiceInfo) {
InitializePrefs();
- std::unique_ptr<base::Value> server_value = base::JSONReader::ReadDeprecated(
+ std::unique_ptr<base::Value> server_dict = base::JSONReader::ReadDeprecated(
"{\"alternative_service\":[{\"port\":443,\"protocol_str\":\"h2\"},"
"{\"port\":123,\"protocol_str\":\"quic\","
"\"expiration\":\"9223372036854775807\"},{\"host\":\"example.org\","
"\"port\":1234,\"protocol_str\":\"h2\","
"\"expiration\":\"13758804000000000\"}]}");
- ASSERT_TRUE(server_value);
- base::DictionaryValue* server_dict;
- ASSERT_TRUE(server_value->GetAsDictionary(&server_dict));
+ ASSERT_TRUE(server_dict);
+ ASSERT_TRUE(server_dict->is_dict());
const url::SchemeHostPort server("https", "example.com", 443);
HttpServerProperties::ServerInfo server_info;
@@ -1311,12 +1297,11 @@ TEST_F(HttpServerPropertiesManagerTest, ParseAlternativeServiceInfo) {
TEST_F(HttpServerPropertiesManagerTest, DoNotLoadAltSvcForInsecureOrigins) {
InitializePrefs();
- std::unique_ptr<base::Value> server_value = base::JSONReader::ReadDeprecated(
+ std::unique_ptr<base::Value> server_dict = base::JSONReader::ReadDeprecated(
"{\"alternative_service\":[{\"port\":443,\"protocol_str\":\"h2\","
"\"expiration\":\"9223372036854775807\"}]}");
- ASSERT_TRUE(server_value);
- base::DictionaryValue* server_dict;
- ASSERT_TRUE(server_value->GetAsDictionary(&server_dict));
+ ASSERT_TRUE(server_dict);
+ ASSERT_TRUE(server_dict->is_dict());
const url::SchemeHostPort server("http", "example.com", 80);
HttpServerProperties::ServerInfo server_info;
@@ -1371,68 +1356,70 @@ TEST_F(HttpServerPropertiesManagerTest, DoNotPersistExpiredAlternativeService) {
EXPECT_EQ(1U, GetPendingMainThreadTaskCount());
EXPECT_EQ(1, pref_delegate_->GetAndClearNumPrefUpdates());
- const base::DictionaryValue* pref_dict =
- pref_delegate_->GetServerProperties();
+ const base::Value* pref_dict = pref_delegate_->GetServerProperties();
- const base::ListValue* servers_list = nullptr;
- ASSERT_TRUE(pref_dict->GetListWithoutPathExpansion("servers", &servers_list));
- auto it = servers_list->begin();
- const base::DictionaryValue* server_pref_dict;
- ASSERT_TRUE(it->GetAsDictionary(&server_pref_dict));
+ const base::Value* servers_list = pref_dict->FindListKey("servers");
+ ASSERT_TRUE(servers_list);
+ auto it = servers_list->GetList().begin();
+ const base::Value& server_pref_dict = *it;
+ ASSERT_TRUE(server_pref_dict.is_dict());
- const std::string* server_str = server_pref_dict->FindStringKey("server");
+ const std::string* server_str = server_pref_dict.FindStringKey("server");
ASSERT_TRUE(server_str);
EXPECT_EQ("https://www.example.com", *server_str);
const base::Value* network_isolation_key_value =
- server_pref_dict->FindKey("isolation");
+ server_pref_dict.FindKey("isolation");
ASSERT_TRUE(network_isolation_key_value);
ASSERT_EQ(base::Value::Type::LIST, network_isolation_key_value->type());
EXPECT_TRUE(network_isolation_key_value->GetList().empty());
- const base::ListValue* altsvc_list;
- ASSERT_TRUE(server_pref_dict->GetList("alternative_service", &altsvc_list));
+ const base::Value* altsvc_list =
+ server_pref_dict.FindListKey("alternative_service");
+ ASSERT_TRUE(altsvc_list);
- ASSERT_EQ(2u, altsvc_list->GetSize());
+ ASSERT_EQ(2u, altsvc_list->GetList().size());
- const base::DictionaryValue* altsvc_entry;
- std::string hostname;
+ const base::Value& altsvc_entry = altsvc_list->GetList()[0];
+ ASSERT_TRUE(altsvc_entry.is_dict());
+ const std::string* hostname = altsvc_entry.FindStringKey("host");
- ASSERT_TRUE(altsvc_list->GetDictionary(0, &altsvc_entry));
- ASSERT_TRUE(altsvc_entry->GetString("host", &hostname));
- EXPECT_EQ("broken.example.com", hostname);
+ ASSERT_TRUE(hostname);
+ EXPECT_EQ("broken.example.com", *hostname);
- ASSERT_TRUE(altsvc_list->GetDictionary(1, &altsvc_entry));
- ASSERT_TRUE(altsvc_entry->GetString("host", &hostname));
- EXPECT_EQ("valid.example.com", hostname);
+ const base::Value& altsvc_entry2 = altsvc_list->GetList()[1];
+ ASSERT_TRUE(altsvc_entry.is_dict());
+ hostname = altsvc_entry2.FindStringKey("host");
+ ASSERT_TRUE(hostname);
+ EXPECT_EQ("valid.example.com", *hostname);
}
// Test that expired alternative service entries on disk are ignored.
TEST_F(HttpServerPropertiesManagerTest, DoNotLoadExpiredAlternativeService) {
InitializePrefs();
- auto alternative_service_list = std::make_unique<base::ListValue>();
- auto expired_dict = std::make_unique<base::DictionaryValue>();
- expired_dict->SetString("protocol_str", "h2");
- expired_dict->SetString("host", "expired.example.com");
- expired_dict->SetInteger("port", 443);
+ base::Value alternative_service_list(base::Value::Type::LIST);
+ base::Value expired_dict(base::Value::Type::DICTIONARY);
+ expired_dict.SetStringKey("protocol_str", "h2");
+ expired_dict.SetStringKey("host", "expired.example.com");
+ expired_dict.SetIntKey("port", 443);
base::Time time_one_day_ago =
base::Time::Now() - base::TimeDelta::FromDays(1);
- expired_dict->SetString(
+ expired_dict.SetStringKey(
"expiration", base::NumberToString(time_one_day_ago.ToInternalValue()));
- alternative_service_list->Append(std::move(expired_dict));
+ alternative_service_list.Append(std::move(expired_dict));
- auto valid_dict = std::make_unique<base::DictionaryValue>();
- valid_dict->SetString("protocol_str", "h2");
- valid_dict->SetString("host", "valid.example.com");
- valid_dict->SetInteger("port", 443);
- valid_dict->SetString(
+ base::Value valid_dict(base::Value::Type::DICTIONARY);
+ valid_dict.SetStringKey("protocol_str", "h2");
+ valid_dict.SetStringKey("host", "valid.example.com");
+ valid_dict.SetIntKey("port", 443);
+ valid_dict.SetStringKey(
"expiration", base::NumberToString(one_day_from_now_.ToInternalValue()));
- alternative_service_list->Append(std::move(valid_dict));
+ alternative_service_list.Append(std::move(valid_dict));
- base::DictionaryValue server_pref_dict;
- server_pref_dict.SetWithoutPathExpansion("alternative_service",
- std::move(alternative_service_list));
+ base::Value server_pref_dict(base::Value::Type::DICTIONARY);
+ server_pref_dict.SetKey("alternative_service",
+ std::move(alternative_service_list));
const url::SchemeHostPort server("https", "example.com", 443);
HttpServerProperties::ServerInfo server_info;
@@ -1558,7 +1545,7 @@ TEST_F(HttpServerPropertiesManagerTest, PersistAdvertisedVersionsToPref) {
TEST_F(HttpServerPropertiesManagerTest, ReadAdvertisedVersionsFromPref) {
InitializePrefs();
- std::unique_ptr<base::Value> server_value = base::JSONReader::ReadDeprecated(
+ std::unique_ptr<base::Value> server_dict = base::JSONReader::ReadDeprecated(
"{\"alternative_service\":["
"{\"port\":443,\"protocol_str\":\"quic\"},"
"{\"port\":123,\"protocol_str\":\"quic\","
@@ -1566,9 +1553,8 @@ TEST_F(HttpServerPropertiesManagerTest, ReadAdvertisedVersionsFromPref) {
// Add 33 which we know is not supported, as regression test for
// https://crbug.com/1061509
"\"advertised_versions\":[33,46,43]}]}");
- ASSERT_TRUE(server_value);
- base::DictionaryValue* server_dict;
- ASSERT_TRUE(server_value->GetAsDictionary(&server_dict));
+ ASSERT_TRUE(server_dict);
+ ASSERT_TRUE(server_dict->is_dict());
const url::SchemeHostPort server("https", "example.com", 443);
HttpServerProperties::ServerInfo server_info;
@@ -1764,7 +1750,7 @@ TEST_F(HttpServerPropertiesManagerTest, UpdateCacheWithPrefs) {
std::string expiration_str =
base::NumberToString(static_cast<int64_t>(one_day_from_now_.ToTimeT()));
- std::unique_ptr<base::Value> server_value = base::JSONReader::ReadDeprecated(
+ std::unique_ptr<base::Value> server_dict = base::JSONReader::ReadDeprecated(
"{"
"\"broken_alternative_services\":["
"{\"broken_until\":\"" +
@@ -1808,9 +1794,8 @@ TEST_F(HttpServerPropertiesManagerTest, UpdateCacheWithPrefs) {
"{\"address\":\"127.0.0.1\",\"used_quic\":true},"
"\"version\":5"
"}");
- ASSERT_TRUE(server_value);
- base::DictionaryValue* server_dict;
- ASSERT_TRUE(server_value->GetAsDictionary(&server_dict));
+ ASSERT_TRUE(server_dict);
+ ASSERT_TRUE(server_dict->is_dict());
// Don't use the test fixture's InitializePrefs() method, since there are
// pending tasks. Initializing prefs should queue a pref update task, since
@@ -2028,7 +2013,8 @@ TEST_F(HttpServerPropertiesManagerTest, ForceHTTP11) {
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set kServer1 to support H2, but require HTTP/1.1. Set kServer2 to only
// require HTTP/1.1.
@@ -2047,7 +2033,7 @@ TEST_F(HttpServerPropertiesManagerTest, ForceHTTP11) {
// Wait until the data's been written to prefs, and then tear down the
// HttpServerProperties.
FastForwardBy(HttpServerProperties::GetUpdatePrefsDelayForTesting());
- std::unique_ptr<base::DictionaryValue> saved_value =
+ std::unique_ptr<base::Value> saved_value =
unowned_pref_delegate->GetServerProperties()->CreateDeepCopy();
properties.reset();
@@ -2215,7 +2201,8 @@ TEST_F(HttpServerPropertiesManagerTest, NetworkIsolationKeyIntegration) {
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set a values using kNetworkIsolationKey.
properties->SetSupportsSpdy(kServer, kNetworkIsolationKey, true);
@@ -2235,7 +2222,7 @@ TEST_F(HttpServerPropertiesManagerTest, NetworkIsolationKeyIntegration) {
// Wait until the data's been written to prefs, and then tear down the
// HttpServerProperties.
FastForwardBy(HttpServerProperties::GetUpdatePrefsDelayForTesting());
- std::unique_ptr<base::DictionaryValue> saved_value =
+ std::unique_ptr<base::Value> saved_value =
unowned_pref_delegate->GetServerProperties()->CreateDeepCopy();
properties.reset();
@@ -2308,7 +2295,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set alternative services for kServer1 using kNetworkIsolationKey1. That
// information should be retrieved when fetching information for any server
@@ -2386,7 +2374,7 @@ TEST_F(HttpServerPropertiesManagerTest,
// Wait until the data's been written to prefs, and then tear down the
// HttpServerProperties.
FastForwardBy(HttpServerProperties::GetUpdatePrefsDelayForTesting());
- std::unique_ptr<base::DictionaryValue> saved_value =
+ std::unique_ptr<base::Value> saved_value =
unowned_pref_delegate->GetServerProperties()->CreateDeepCopy();
properties.reset();
@@ -2445,7 +2433,7 @@ TEST_F(HttpServerPropertiesManagerTest,
SCOPED_TRACE(static_cast<int>(save_network_isolation_key_mode));
// Save prefs using |save_network_isolation_key_mode|.
- std::unique_ptr<base::DictionaryValue> saved_value;
+ std::unique_ptr<base::Value> saved_value;
{
// Configure the the feature.
std::unique_ptr<base::test::ScopedFeatureList> feature_list =
@@ -2465,7 +2453,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set kAlternativeService1 as broken in the context of
// kNetworkIsolationKey1, and kAlternativeService2 as broken in the
@@ -2661,7 +2650,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
properties->MarkAlternativeServiceBroken(kAlternativeService,
kNetworkIsolationKey);
@@ -2703,7 +2693,7 @@ TEST_F(HttpServerPropertiesManagerTest,
SCOPED_TRACE(static_cast<int>(save_network_isolation_key_mode));
// Save prefs using |save_network_isolation_key_mode|.
- std::unique_ptr<base::DictionaryValue> saved_value;
+ std::unique_ptr<base::Value> saved_value;
{
// Configure the the feature.
std::unique_ptr<base::test::ScopedFeatureList> feature_list =
@@ -2723,7 +2713,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set kServer1 to kQuicServerInfo1 in the context of
// kNetworkIsolationKey1, Set kServer2 to kQuicServerInfo2 in the context
@@ -2888,7 +2879,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
// Set kQuicServerInfo1 for kServer1 using kNetworkIsolationKey1. That
// information should be retrieved when fetching information for any server
@@ -2936,7 +2928,7 @@ TEST_F(HttpServerPropertiesManagerTest,
// Wait until the data's been written to prefs, and then tear down the
// HttpServerProperties.
FastForwardBy(HttpServerProperties::GetUpdatePrefsDelayForTesting());
- std::unique_ptr<base::DictionaryValue> saved_value =
+ std::unique_ptr<base::Value> saved_value =
unowned_pref_delegate->GetServerProperties()->CreateDeepCopy();
properties.reset();
@@ -2990,7 +2982,8 @@ TEST_F(HttpServerPropertiesManagerTest,
std::make_unique<HttpServerProperties>(std::move(pref_delegate),
/*net_log=*/nullptr,
GetMockTickClock());
- unowned_pref_delegate->InitializePrefs(base::DictionaryValue());
+ unowned_pref_delegate->InitializePrefs(
+ base::Value(base::Value::Type::DICTIONARY));
properties->SetQuicServerInfo(kServer, kNetworkIsolationKey,
"QuicServerInfo");
diff --git a/chromium/net/http/http_server_properties_unittest.cc b/chromium/net/http/http_server_properties_unittest.cc
index f6d9c55593f..b7f690116ce 100644
--- a/chromium/net/http/http_server_properties_unittest.cc
+++ b/chromium/net/http/http_server_properties_unittest.cc
@@ -25,10 +25,6 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
-namespace base {
-class ListValue;
-}
-
namespace net {
const base::TimeDelta BROKEN_ALT_SVC_EXPIRE_DELAYS[10] = {
@@ -2343,10 +2339,10 @@ TEST_F(AlternateProtocolServerPropertiesTest,
"}"
"]";
- std::unique_ptr<base::Value> alternative_service_info_value =
+ base::Value alternative_service_info_value =
impl_.GetAlternativeServiceInfoAsValue();
std::string alternative_service_info_json;
- base::JSONWriter::Write(*alternative_service_info_value,
+ base::JSONWriter::Write(alternative_service_info_value,
&alternative_service_info_json);
EXPECT_EQ(expected_json, alternative_service_info_json);
}
diff --git a/chromium/net/http/http_stream_factory_job.cc b/chromium/net/http/http_stream_factory_job.cc
index 7f610456e00..981ee3fea70 100644
--- a/chromium/net/http/http_stream_factory_job.cc
+++ b/chromium/net/http/http_stream_factory_job.cc
@@ -8,7 +8,7 @@
#include <string>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/location.h"
@@ -73,24 +73,24 @@ base::Value NetLogHttpStreamJobParams(const NetLogSource& source,
bool expect_spdy,
bool using_quic,
RequestPriority priority) {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
if (source.IsValid())
source.AddToEventParameters(&dict);
- dict.SetString("original_url", original_url.GetOrigin().spec());
- dict.SetString("url", url.GetOrigin().spec());
- dict.SetBoolean("expect_spdy", expect_spdy);
- dict.SetBoolean("using_quic", using_quic);
- dict.SetString("priority", RequestPriorityToString(priority));
- return std::move(dict);
+ dict.SetStringKey("original_url", original_url.GetOrigin().spec());
+ dict.SetStringKey("url", url.GetOrigin().spec());
+ dict.SetBoolKey("expect_spdy", expect_spdy);
+ dict.SetBoolKey("using_quic", using_quic);
+ dict.SetStringKey("priority", RequestPriorityToString(priority));
+ return dict;
}
// Returns parameters associated with the Proto (with NPN negotiation) of a HTTP
// stream.
base::Value NetLogHttpStreamProtoParams(NextProto negotiated_protocol) {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
- dict.SetString("proto", NextProtoToString(negotiated_protocol));
- return std::move(dict);
+ dict.SetStringKey("proto", NextProtoToString(negotiated_protocol));
+ return dict;
}
HttpStreamFactory::Job::Job(Delegate* delegate,
diff --git a/chromium/net/http/http_stream_factory_job_controller.cc b/chromium/net/http/http_stream_factory_job_controller.cc
index df598474acc..d787629ba01 100644
--- a/chromium/net/http/http_stream_factory_job_controller.cc
+++ b/chromium/net/http/http_stream_factory_job_controller.cc
@@ -36,12 +36,12 @@ namespace {
// Returns parameters associated with the proxy resolution.
base::Value NetLogHttpStreamJobProxyServerResolved(
const ProxyServer& proxy_server) {
- base::DictionaryValue dict;
+ base::Value dict(base::Value::Type::DICTIONARY);
- dict.SetString("proxy_server", proxy_server.is_valid()
- ? proxy_server.ToPacString()
- : std::string());
- return std::move(dict);
+ dict.SetStringKey("proxy_server", proxy_server.is_valid()
+ ? proxy_server.ToPacString()
+ : std::string());
+ return dict;
}
} // namespace
@@ -51,18 +51,18 @@ base::Value NetLogHttpStreamJobProxyServerResolved(
const int kMaxDelayTimeForMainJobSecs = 3;
base::Value NetLogJobControllerParams(const GURL& url, bool is_preconnect) {
- base::DictionaryValue dict;
- dict.SetString("url", url.possibly_invalid_spec());
- dict.SetBoolean("is_preconnect", is_preconnect);
- return std::move(dict);
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetStringKey("url", url.possibly_invalid_spec());
+ dict.SetBoolKey("is_preconnect", is_preconnect);
+ return dict;
}
base::Value NetLogAltSvcParams(const AlternativeServiceInfo* alt_svc_info,
bool is_broken) {
- base::DictionaryValue dict;
- dict.SetString("alt_svc", alt_svc_info->ToString());
- dict.SetBoolean("is_broken", is_broken);
- return std::move(dict);
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetStringKey("alt_svc", alt_svc_info->ToString());
+ dict.SetBoolKey("is_broken", is_broken);
+ return dict;
}
HttpStreamFactory::JobController::JobController(
diff --git a/chromium/net/http/http_stream_factory_job_controller_unittest.cc b/chromium/net/http/http_stream_factory_job_controller_unittest.cc
index f005f3c1df4..00ca59da770 100644
--- a/chromium/net/http/http_stream_factory_job_controller_unittest.cc
+++ b/chromium/net/http/http_stream_factory_job_controller_unittest.cc
@@ -19,6 +19,7 @@
#include "base/test/task_environment.h"
#include "base/test/test_mock_time_task_runner.h"
#include "base/threading/platform_thread.h"
+#include "base/values.h"
#include "net/base/completion_once_callback.h"
#include "net/base/features.h"
#include "net/base/host_port_pair.h"
@@ -108,10 +109,8 @@ class MockPrefDelegate : public HttpServerProperties::PrefDelegate {
~MockPrefDelegate() override = default;
// HttpServerProperties::PrefDelegate implementation:
- const base::DictionaryValue* GetServerProperties() const override {
- return nullptr;
- }
- void SetServerProperties(const base::DictionaryValue& value,
+ const base::Value* GetServerProperties() const override { return nullptr; }
+ void SetServerProperties(const base::Value& value,
base::OnceClosure callback) override {}
void WaitForPrefLoad(base::OnceClosure pref_loaded_callback) override {}
diff --git a/chromium/net/http/http_stream_factory_unittest.cc b/chromium/net/http/http_stream_factory_unittest.cc
index c6f6e0f51c8..925374ab9a1 100644
--- a/chromium/net/http/http_stream_factory_unittest.cc
+++ b/chromium/net/http/http_stream_factory_unittest.cc
@@ -98,7 +98,6 @@ using net::test::IsOk;
namespace base {
class Value;
-class DictionaryValue;
} // namespace base
namespace net {
@@ -912,25 +911,25 @@ class TestBidirectionalDelegate : public BidirectionalStreamImpl::Delegate {
public:
void WaitUntilDone() { loop_.Run(); }
- const spdy::SpdyHeaderBlock& response_headers() const {
+ const spdy::Http2HeaderBlock& response_headers() const {
return response_headers_;
}
private:
void OnStreamReady(bool request_headers_sent) override {}
void OnHeadersReceived(
- const spdy::SpdyHeaderBlock& response_headers) override {
+ const spdy::Http2HeaderBlock& response_headers) override {
response_headers_ = response_headers.Clone();
loop_.Quit();
}
void OnDataRead(int bytes_read) override { NOTREACHED(); }
void OnDataSent() override { NOTREACHED(); }
- void OnTrailersReceived(const spdy::SpdyHeaderBlock& trailers) override {
+ void OnTrailersReceived(const spdy::Http2HeaderBlock& trailers) override {
NOTREACHED();
}
void OnFailed(int error) override { NOTREACHED(); }
base::RunLoop loop_;
- spdy::SpdyHeaderBlock response_headers_;
+ spdy::Http2HeaderBlock response_headers_;
};
// Helper class to encapsulate MockReads and MockWrites for QUIC.
@@ -1041,10 +1040,9 @@ int GetSocketPoolGroupCount(ClientSocketPool* pool) {
int GetSpdySessionCount(HttpNetworkSession* session) {
std::unique_ptr<base::Value> value(
session->spdy_session_pool()->SpdySessionPoolInfoToValue());
- base::ListValue* session_list;
- if (!value || !value->GetAsList(&session_list))
+ if (!value || !value->is_list())
return -1;
- return session_list->GetSize();
+ return value->GetList().size();
}
// Return count of sockets handed out by a given socket pool.
@@ -1057,12 +1055,11 @@ int GetHandedOutSocketCount(ClientSocketPool* pool) {
#if defined(OS_ANDROID)
// Return count of distinct QUIC sessions.
int GetQuicSessionCount(HttpNetworkSession* session) {
- std::unique_ptr<base::DictionaryValue> dict(
- base::DictionaryValue::From(session->QuicInfoToValue()));
- base::ListValue* session_list;
- if (!dict->GetList("sessions", &session_list))
+ base::Value dict(session->QuicInfoToValue());
+ base::Value* session_list = dict.FindListKey("sessions");
+ if (!session_list)
return -1;
- return session_list->GetSize();
+ return session_list->GetList().size();
}
#endif
@@ -2111,9 +2108,7 @@ TEST_P(HttpStreamFactoryBidirectionalQuicTest,
// TODO(https://crbug.com/1059250): Implement PRIORITY_UPDATE in
// BidirectionalStreamQuicImpl.
spdy::SpdyPriority priority =
- version().UsesHttp3()
- ? 1
- : ConvertRequestPriorityToQuicPriority(DEFAULT_PRIORITY);
+ ConvertRequestPriorityToQuicPriority(DEFAULT_PRIORITY);
size_t spdy_headers_frame_length;
int packet_num = 1;
if (VersionUsesHttp3(version().transport_version)) {
@@ -2248,9 +2243,7 @@ TEST_P(HttpStreamFactoryBidirectionalQuicTest,
// TODO(https://crbug.com/1059250): Implement PRIORITY_UPDATE in
// BidirectionalStreamQuicImpl.
spdy::SpdyPriority priority =
- version().UsesHttp3()
- ? 1
- : ConvertRequestPriorityToQuicPriority(DEFAULT_PRIORITY);
+ ConvertRequestPriorityToQuicPriority(DEFAULT_PRIORITY);
size_t spdy_headers_frame_length;
int packet_num = 1;
if (VersionUsesHttp3(version().transport_version)) {
diff --git a/chromium/net/http/http_stream_parser.cc b/chromium/net/http/http_stream_parser.cc
index 81b874031c0..9d7ac8fef14 100644
--- a/chromium/net/http/http_stream_parser.cc
+++ b/chromium/net/http/http_stream_parser.cc
@@ -71,11 +71,11 @@ bool HeadersContainMultipleCopiesOfField(const HttpResponseHeaders& headers,
base::Value NetLogSendRequestBodyParams(uint64_t length,
bool is_chunked,
bool did_merge) {
- base::DictionaryValue dict;
- dict.SetInteger("length", static_cast<int>(length));
- dict.SetBoolean("is_chunked", is_chunked);
- dict.SetBoolean("did_merge", did_merge);
- return std::move(dict);
+ base::Value dict(base::Value::Type::DICTIONARY);
+ dict.SetIntKey("length", static_cast<int>(length));
+ dict.SetBoolKey("is_chunked", is_chunked);
+ dict.SetBoolKey("did_merge", did_merge);
+ return dict;
}
void NetLogSendRequestBody(const NetLogWithSource& net_log,
diff --git a/chromium/net/http/partial_data.cc b/chromium/net/http/partial_data.cc
index 70239edc096..79f71ab662b 100644
--- a/chromium/net/http/partial_data.cc
+++ b/chromium/net/http/partial_data.cc
@@ -8,7 +8,7 @@
#include <utility>
#include "base/bind.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/format_macros.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
diff --git a/chromium/net/http/transport_security_persister.cc b/chromium/net/http/transport_security_persister.cc
index 137c09f5ff1..e1d2bfcddb6 100644
--- a/chromium/net/http/transport_security_persister.cc
+++ b/chromium/net/http/transport_security_persister.cc
@@ -16,6 +16,7 @@
#include "base/json/json_writer.h"
#include "base/location.h"
#include "base/metrics/histogram_macros.h"
+#include "base/optional.h"
#include "base/sequenced_task_runner.h"
#include "base/task_runner_util.h"
#include "base/threading/thread_task_runner_handle.h"
@@ -198,7 +199,7 @@ base::Value SerializeExpectCTData(TransportSecurityState* state) {
const TransportSecurityState::ExpectCTState& expect_ct_state =
expect_ct_iterator.domain_state();
- base::DictionaryValue ct_entry;
+ base::Value ct_entry(base::Value::Type::DICTIONARY);
base::Value network_isolation_key_value;
// Don't serialize entries with transient NetworkIsolationKeys.
@@ -300,36 +301,32 @@ void DeserializeExpectCTData(const base::Value& ct_list,
//
// TODO(mmenke): Remove once the obsolete format is no longer supported.
bool DeserializeObsoleteExpectCTState(
- const base::DictionaryValue* parsed,
+ const base::Value* parsed,
TransportSecurityState::ExpectCTState* state) {
- const base::DictionaryValue* expect_ct_subdictionary;
- if (!parsed->GetDictionary(kExpectCTSubdictionary,
- &expect_ct_subdictionary)) {
+ const base::Value* expect_ct_subdictionary =
+ parsed->FindDictKey(kExpectCTSubdictionary);
+ if (!expect_ct_subdictionary) {
// Expect-CT data is not required, so this item is not malformed.
return true;
}
- double observed;
- bool has_observed =
- expect_ct_subdictionary->GetDouble(kExpectCTObserved, &observed);
- double expiry;
- bool has_expiry =
- expect_ct_subdictionary->GetDouble(kExpectCTExpiry, &expiry);
- bool enforce;
- bool has_enforce =
- expect_ct_subdictionary->GetBoolean(kExpectCTEnforce, &enforce);
- std::string report_uri_str;
- bool has_report_uri =
- expect_ct_subdictionary->GetString(kExpectCTReportUri, &report_uri_str);
+ base::Optional<double> observed =
+ expect_ct_subdictionary->FindDoubleKey(kExpectCTObserved);
+ base::Optional<double> expiry =
+ expect_ct_subdictionary->FindDoubleKey(kExpectCTExpiry);
+ base::Optional<bool> enforce =
+ expect_ct_subdictionary->FindBoolKey(kExpectCTEnforce);
+ const std::string* report_uri_str =
+ expect_ct_subdictionary->FindStringKey(kExpectCTReportUri);
// If an Expect-CT subdictionary is present, it must have the required keys.
- if (!has_observed || !has_expiry || !has_enforce)
+ if (!observed.has_value() || !expiry.has_value() || !enforce.has_value())
return false;
- state->last_observed = base::Time::FromDoubleT(observed);
- state->expiry = base::Time::FromDoubleT(expiry);
- state->enforce = enforce;
- if (has_report_uri) {
- GURL report_uri(report_uri_str);
+ state->last_observed = base::Time::FromDoubleT(*observed);
+ state->expiry = base::Time::FromDoubleT(*expiry);
+ state->enforce = *enforce;
+ if (report_uri_str) {
+ GURL report_uri(*report_uri_str);
if (report_uri.is_valid())
state->report_uri = report_uri;
}
@@ -457,24 +454,19 @@ bool TransportSecurityPersister::Deserialize(const std::string& serialized,
}
bool TransportSecurityPersister::DeserializeObsoleteData(
- const base::Value& value,
+ const base::Value& dict_value,
bool* dirty,
TransportSecurityState* state) {
const base::Time current_time(base::Time::Now());
bool dirtied = false;
- const base::DictionaryValue* dict_value = nullptr;
- int rv = value.GetAsDictionary(&dict_value);
- // The one caller ensures |value| is of Value::Type::DICTIONARY already,
- // though it doesn't extract a DictionaryValue*, since that is the deprecated
- // way to use dictionaries.
- DCHECK(rv);
-
- for (base::DictionaryValue::Iterator i(*dict_value);
- !i.IsAtEnd(); i.Advance()) {
- const base::DictionaryValue* parsed = nullptr;
- if (!i.value().GetAsDictionary(&parsed)) {
- LOG(WARNING) << "Could not parse entry " << i.key() << "; skipping entry";
+ // The one caller ensures |dict_value| is of Value::Type::DICTIONARY already.
+ DCHECK(dict_value.is_dict());
+
+ for (const auto& i : dict_value.DictItems()) {
+ const base::Value& parsed = i.second;
+ if (!parsed.is_dict()) {
+ LOG(WARNING) << "Could not parse entry " << i.first << "; skipping entry";
continue;
}
@@ -483,45 +475,48 @@ bool TransportSecurityPersister::DeserializeObsoleteData(
// kIncludeSubdomains is a legacy synonym for kStsIncludeSubdomains. Parse
// at least one of these properties, preferably the new one.
- bool include_subdomains = false;
- bool parsed_include_subdomains = parsed->GetBoolean(kIncludeSubdomains,
- &include_subdomains);
- sts_state.include_subdomains = include_subdomains;
- if (parsed->GetBoolean(kStsIncludeSubdomains, &include_subdomains)) {
- sts_state.include_subdomains = include_subdomains;
+ bool parsed_include_subdomains = false;
+ base::Optional<bool> include_subdomains =
+ parsed.FindBoolKey(kIncludeSubdomains);
+ if (include_subdomains.has_value()) {
+ sts_state.include_subdomains = include_subdomains.value();
+ parsed_include_subdomains = true;
+ }
+ include_subdomains = parsed.FindBoolKey(kStsIncludeSubdomains);
+ if (include_subdomains.has_value()) {
+ sts_state.include_subdomains = include_subdomains.value();
parsed_include_subdomains = true;
}
- std::string mode_string;
- double expiry = 0;
- if (!parsed_include_subdomains ||
- !parsed->GetString(kMode, &mode_string) ||
- !parsed->GetDouble(kExpiry, &expiry)) {
- LOG(WARNING) << "Could not parse some elements of entry " << i.key()
+ const std::string* mode_string = parsed.FindStringKey(kMode);
+ base::Optional<double> expiry = parsed.FindDoubleKey(kExpiry); // 0;
+ if (!parsed_include_subdomains || !mode_string || !expiry.has_value()) {
+ LOG(WARNING) << "Could not parse some elements of entry " << i.first
<< "; skipping entry";
continue;
}
- if (mode_string == kForceHTTPS || mode_string == kStrict) {
+ if (*mode_string == kForceHTTPS || *mode_string == kStrict) {
sts_state.upgrade_mode =
TransportSecurityState::STSState::MODE_FORCE_HTTPS;
- } else if (mode_string == kDefault || mode_string == kPinningOnly) {
+ } else if (*mode_string == kDefault || *mode_string == kPinningOnly) {
sts_state.upgrade_mode = TransportSecurityState::STSState::MODE_DEFAULT;
} else {
LOG(WARNING) << "Unknown TransportSecurityState mode string "
- << mode_string << " found for entry " << i.key()
+ << mode_string << " found for entry " << i.first
<< "; skipping entry";
continue;
}
- sts_state.expiry = base::Time::FromDoubleT(expiry);
+ sts_state.expiry = base::Time::FromDoubleT(expiry.value());
- double sts_observed;
- if (parsed->GetDouble(kStsObserved, &sts_observed)) {
- sts_state.last_observed = base::Time::FromDoubleT(sts_observed);
- } else if (parsed->GetDouble(kCreated, &sts_observed)) {
+ base::Optional<double> sts_observed = parsed.FindDoubleKey(kStsObserved);
+ if (sts_observed.has_value()) {
+ sts_state.last_observed = base::Time::FromDoubleT(sts_observed.value());
+ } else if (parsed.FindDoubleKey(kCreated)) {
// kCreated is a legacy synonym for both kStsObserved.
- sts_state.last_observed = base::Time::FromDoubleT(sts_observed);
+ sts_observed = parsed.FindDoubleKey(kCreated);
+ sts_state.last_observed = base::Time::FromDoubleT(sts_observed.value());
} else {
// We're migrating an old entry with no observation date. Make sure we
// write the new date back in a reasonable time frame.
@@ -529,7 +524,7 @@ bool TransportSecurityPersister::DeserializeObsoleteData(
sts_state.last_observed = base::Time::Now();
}
- if (!DeserializeObsoleteExpectCTState(parsed, &expect_ct_state)) {
+ if (!DeserializeObsoleteExpectCTState(&parsed, &expect_ct_state)) {
continue;
}
@@ -546,7 +541,7 @@ bool TransportSecurityPersister::DeserializeObsoleteData(
continue;
}
- std::string hashed = ExternalStringToHashedDomain(i.key());
+ std::string hashed = ExternalStringToHashedDomain(i.first);
if (hashed.empty()) {
dirtied = true;
continue;
diff --git a/chromium/net/http/transport_security_state.cc b/chromium/net/http/transport_security_state.cc
index 48eda884e48..b8e84314faa 100644
--- a/chromium/net/http/transport_security_state.cc
+++ b/chromium/net/http/transport_security_state.cc
@@ -21,6 +21,7 @@
#include "base/metrics/field_trial_params.h"
#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
+#include "base/optional.h"
#include "base/stl_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
@@ -90,21 +91,20 @@ void RecordUMAForHPKPReportFailure(const GURL& report_uri,
base::UmaHistogramSparse("Net.PublicKeyPinReportSendingFailure2", -net_error);
}
-std::unique_ptr<base::ListValue> GetPEMEncodedChainAsList(
- const net::X509Certificate* cert_chain) {
+base::Value GetPEMEncodedChainAsList(const net::X509Certificate* cert_chain) {
if (!cert_chain)
- return std::make_unique<base::ListValue>();
+ return base::Value(base::Value::Type::LIST);
- std::unique_ptr<base::ListValue> result(new base::ListValue());
+ base::Value result(base::Value::Type::LIST);
std::vector<std::string> pem_encoded_chain;
cert_chain->GetPEMEncodedChain(&pem_encoded_chain);
for (const std::string& cert : pem_encoded_chain)
- result->Append(std::make_unique<base::Value>(cert));
+ result.Append(cert);
return result;
}
-bool HashReportForCache(const base::DictionaryValue& report,
+bool HashReportForCache(const base::Value& report,
const GURL& report_uri,
std::string* cache_key) {
char hashed[crypto::kSHA256Length];
@@ -128,23 +128,23 @@ bool GetHPKPReport(const HostPortPair& host_port_pair,
if (pkp_state.report_uri.is_empty())
return false;
- base::DictionaryValue report;
+ base::Value report(base::Value::Type::DICTIONARY);
base::Time now = base::Time::Now();
- report.SetString("hostname", host_port_pair.host());
- report.SetInteger("port", host_port_pair.port());
- report.SetBoolean("include-subdomains", pkp_state.include_subdomains);
- report.SetString("noted-hostname", pkp_state.domain);
+ report.SetStringKey("hostname", host_port_pair.host());
+ report.SetIntKey("port", host_port_pair.port());
+ report.SetBoolKey("include-subdomains", pkp_state.include_subdomains);
+ report.SetStringKey("noted-hostname", pkp_state.domain);
- std::unique_ptr<base::ListValue> served_certificate_chain_list =
+ auto served_certificate_chain_list =
GetPEMEncodedChainAsList(served_certificate_chain);
- std::unique_ptr<base::ListValue> validated_certificate_chain_list =
+ auto validated_certificate_chain_list =
GetPEMEncodedChainAsList(validated_certificate_chain);
- report.Set("served-certificate-chain",
- std::move(served_certificate_chain_list));
- report.Set("validated-certificate-chain",
- std::move(validated_certificate_chain_list));
+ report.SetKey("served-certificate-chain",
+ std::move(served_certificate_chain_list));
+ report.SetKey("validated-certificate-chain",
+ std::move(validated_certificate_chain_list));
- std::unique_ptr<base::ListValue> known_pin_list(new base::ListValue());
+ base::Value known_pin_list(base::Value::Type::LIST);
for (const auto& hash_value : pkp_state.spki_hashes) {
std::string known_pin;
@@ -165,11 +165,10 @@ bool GetHPKPReport(const HostPortPair& host_port_pair,
&base64_value);
known_pin += "\"" + base64_value + "\"";
- known_pin_list->Append(
- std::unique_ptr<base::Value>(new base::Value(known_pin)));
+ known_pin_list.Append(known_pin);
}
- report.Set("known-pins", std::move(known_pin_list));
+ report.SetKey("known-pins", std::move(known_pin_list));
// For the sent reports cache, do not include the effective expiration
// date. The expiration date will likely change every time the user
@@ -180,9 +179,9 @@ bool GetHPKPReport(const HostPortPair& host_port_pair,
return false;
}
- report.SetString("date-time", base::TimeToISO8601(now));
- report.SetString("effective-expiration-date",
- base::TimeToISO8601(pkp_state.expiry));
+ report.SetStringKey("date-time", base::TimeToISO8601(now));
+ report.SetStringKey("effective-expiration-date",
+ base::TimeToISO8601(pkp_state.expiry));
if (!base::JSONWriter::Write(report, serialized_report)) {
LOG(ERROR) << "Failed to serialize HPKP violation report.";
return false;
@@ -455,6 +454,7 @@ TransportSecurityState::PKPStatus TransportSecurityState::CheckPublicKeyPins(
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const PublicKeyPinReportStatus report_status,
+ const NetworkIsolationKey& network_isolation_key,
std::string* pinning_failure_log) {
// Perform pin validation only if the server actually has public key pins.
if (!HasPublicKeyPins(host_port_pair.host())) {
@@ -464,7 +464,7 @@ TransportSecurityState::PKPStatus TransportSecurityState::CheckPublicKeyPins(
PKPStatus pin_validity = CheckPublicKeyPinsImpl(
host_port_pair, is_issued_by_known_root, public_key_hashes,
served_certificate_chain, validated_certificate_chain, report_status,
- pinning_failure_log);
+ network_isolation_key, pinning_failure_log);
// Don't track statistics when a local trust anchor would override the pinning
// anyway.
@@ -746,6 +746,7 @@ TransportSecurityState::CheckPinsAndMaybeSendReport(
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const TransportSecurityState::PublicKeyPinReportStatus report_status,
+ const net::NetworkIsolationKey& network_isolation_key,
std::string* failure_log) {
if (pkp_state.CheckPublicKeyPins(hashes, failure_log))
return PKPStatus::OK;
@@ -787,7 +788,8 @@ TransportSecurityState::CheckPinsAndMaybeSendReport(
base::TimeDelta::FromMinutes(kTimeToRememberReportsMins));
report_sender_->Send(pkp_state.report_uri, "application/json; charset=utf-8",
- serialized_report, base::OnceCallback<void()>(),
+ serialized_report, network_isolation_key,
+ base::OnceCallback<void()>(),
base::BindOnce(RecordUMAForHPKPReportFailure));
return PKPStatus::VIOLATED;
}
@@ -1115,6 +1117,7 @@ TransportSecurityState::CheckPublicKeyPinsImpl(
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const PublicKeyPinReportStatus report_status,
+ const NetworkIsolationKey& network_isolation_key,
std::string* failure_log) {
PKPState pkp_state;
bool found_state = GetPKPState(host_port_pair.host(), &pkp_state);
@@ -1125,7 +1128,7 @@ TransportSecurityState::CheckPublicKeyPinsImpl(
return CheckPinsAndMaybeSendReport(
host_port_pair, is_issued_by_known_root, pkp_state, hashes,
served_certificate_chain, validated_certificate_chain, report_status,
- failure_log);
+ network_isolation_key, failure_log);
}
bool TransportSecurityState::GetStaticDomainState(const std::string& host,
@@ -1221,8 +1224,13 @@ bool TransportSecurityState::GetDynamicSTSState(const std::string& host,
// An entry matches if it is either an exact match, or if it is a prefix
// match and the includeSubDomains directive was included.
if (i == 0 || j->second.include_subdomains) {
+ base::Optional<std::string> dotted_name =
+ DnsDomainToString(host_sub_chunk);
+ if (!dotted_name)
+ return false;
+
*result = j->second;
- result->domain = DNSDomainToString(host_sub_chunk);
+ result->domain = std::move(dotted_name).value();
return true;
}
}
@@ -1262,8 +1270,13 @@ bool TransportSecurityState::GetDynamicPKPState(const std::string& host,
// implement HPKP, so this logic is only used via AddHPKP(), reachable from
// Cronet.
if (i == 0 || j->second.include_subdomains) {
+ base::Optional<std::string> dotted_name =
+ DnsDomainToString(host_sub_chunk);
+ if (!dotted_name)
+ return false;
+
*result = j->second;
- result->domain = DNSDomainToString(host_sub_chunk);
+ result->domain = std::move(dotted_name).value();
return true;
}
diff --git a/chromium/net/http/transport_security_state.h b/chromium/net/http/transport_security_state.h
index da59832ea0f..ed34c78855b 100644
--- a/chromium/net/http/transport_security_state.h
+++ b/chromium/net/http/transport_security_state.h
@@ -303,6 +303,7 @@ class NET_EXPORT TransportSecurityState {
virtual void Send(const GURL& report_uri,
base::StringPiece content_type,
base::StringPiece report,
+ const NetworkIsolationKey& network_isolation_key,
base::OnceCallback<void()> success_callback,
base::OnceCallback<void(const GURL&,
int /* net_error */,
@@ -385,6 +386,7 @@ class NET_EXPORT TransportSecurityState {
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const PublicKeyPinReportStatus report_status,
+ const NetworkIsolationKey& network_isolation_key,
std::string* failure_log);
bool HasPublicKeyPins(const std::string& host);
@@ -606,6 +608,7 @@ class NET_EXPORT TransportSecurityState {
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const PublicKeyPinReportStatus report_status,
+ const NetworkIsolationKey& network_isolation_key,
std::string* failure_log);
// If a Delegate is present, notify it that the internal state has
@@ -648,6 +651,7 @@ class NET_EXPORT TransportSecurityState {
const X509Certificate* served_certificate_chain,
const X509Certificate* validated_certificate_chain,
const TransportSecurityState::PublicKeyPinReportStatus report_status,
+ const net::NetworkIsolationKey& network_isolation_key,
std::string* failure_log);
// Returns true and updates |*expect_ct_result| iff there is a static
diff --git a/chromium/net/http/transport_security_state_static.json b/chromium/net/http/transport_security_state_static.json
index 933d251ece7..fcabd02c17e 100644
--- a/chromium/net/http/transport_security_state_static.json
+++ b/chromium/net/http/transport_security_state_static.json
@@ -75,7 +75,6 @@
"GlobalSignRootCA_R2"
],
"bad_static_spki_hashes": [
- "GlobalSignRootCA",
"GlobalSignExtendedValidationCA",
"GlobalSignExtendedValidationCA_G2",
"GlobalSignExtendedValidationCA_SHA256_G2"
@@ -1694,7 +1693,6 @@
{ "name": "neftaly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nu3.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nu3.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ovenapp.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ruudkoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "seomobo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "seowarp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -1933,7 +1931,6 @@
{ "name": "perfectionis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "phryanjr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "polymathematician.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "sanatfilan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sysdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tallshoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "thetomharling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -1951,7 +1948,6 @@
{ "name": "bentertain.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bit.voyage", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bzv-fr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "codepoints.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "codepx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cyprus-company-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "darkpony.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -2487,7 +2483,6 @@
{ "name": "ckliemann.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "console.support", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "crute.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cycleluxembourg.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dash-board.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dekasan.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "doridian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -3102,7 +3097,6 @@
{ "name": "hardh.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "haveeruexaminer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "helloacm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "hurricanelabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hyper-text.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "idndx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "im-c-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -3545,7 +3539,6 @@
{ "name": "mb-is.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mobile.eti.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mosstier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "motd.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "namorico.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nekomimi.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "numericacu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -3813,7 +3806,6 @@
{ "name": "roomhub.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rsajeey.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rubi-ka.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ryansmithphotography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schnell-gold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "selectel.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "silver-heart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -4172,7 +4164,6 @@
{ "name": "unpr.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "utdsgda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "valordolarblue.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "verizonguidelines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vieclam24h.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vm0.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vnvisa.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -4392,7 +4383,6 @@
{ "name": "papayapythons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "parkingplus.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "partirkyoto.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "partyvan.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "peissen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "peterdavehello.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "phunehehe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -5175,7 +5165,6 @@
{ "name": "sdcardrecovery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "seiko-dojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "selent.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "sendya.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "shukatsu-note.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "singul4rity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "speedtest-russia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -5766,7 +5755,6 @@
{ "name": "hiisukun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hiphopconvention.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hittipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "hmsseahawk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hodne.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hondart.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "honoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -6555,7 +6543,6 @@
{ "name": "gussi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "h-jo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "haktec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "happycoder.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "happytiger.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "happyukgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hardertimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -6848,7 +6835,6 @@
{ "name": "stefanweiser.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stefany.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stigharder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "stn.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stnl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "strobeltobias.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "studlan.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7042,7 +7028,6 @@
{ "name": "intranetsec.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "inzdr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "isogen5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "istdieweltschonuntergegangen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "itsadog.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "itsecurityassurance.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jcaicedo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7133,7 +7118,6 @@
{ "name": "tcdw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tenyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tescoirelandpayslips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "thelapine.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "themostexpensiveworkofart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "thinkcoding.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "thomasnet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7298,7 +7282,6 @@
{ "name": "bip.gov.sa", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "birkman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bismarck.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "bit8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bitshaker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bittersweetcandybowl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "blinkenlight.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7470,7 +7453,6 @@
{ "name": "karmaplatform.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "katekligys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kefaloniatoday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "kenners.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kernl.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kerrfrequencycombs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kgxtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7491,7 +7473,6 @@
{ "name": "liquidcomm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "loadingdeck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "locomotive.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "lovemomiji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lpak.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lynkos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "m.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -7521,7 +7502,6 @@
{ "name": "myclientsplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "myconan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mysmelly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "nagelfam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "namacindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "natuurbehangnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "navstevnik.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -8113,7 +8093,6 @@
{ "name": "bashc.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "basicsolutionsus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "baumstark.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "bazdell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bblovess.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bcbsmagentprofile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "bcmlu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -8262,7 +8241,6 @@
{ "name": "chabaudparfum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "chaos-inc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "charityclear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "charmyadesara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "chartpen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "chateau-belvoir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "chatme.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -8800,7 +8778,6 @@
{ "name": "herbertmouwen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hermes-net.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "herr-webdesign.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "herrenfahrt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hibilog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hicl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hiddendepth.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -8929,7 +8906,6 @@
{ "name": "jdh8.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jennifersauer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jensrex.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "jeremye77.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jeroendeneef.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jesters-court.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jetwhiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -9050,7 +9026,6 @@
{ "name": "le-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "leadingsalons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "leandre.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "learnflakes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "learnfrenchfluently.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "learningorder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "legarage.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -9315,7 +9290,6 @@
{ "name": "no17sifangjie.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nodespin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "noedidacticos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "noez.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nolatepayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nomesbiblicos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "noobunbox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -9520,7 +9494,6 @@
{ "name": "pyol.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pysays.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qcdesignschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "qceventplanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qcmakeupacademy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qcstudentcenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qcstyleacademy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -10147,7 +10120,6 @@
{ "name": "wth.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "wubocong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "wvg.myds.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "www3.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "x3led.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "x509.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "xa1.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -10556,7 +10528,6 @@
{ "name": "fuwafuwa.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gamecard-shop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fusedrops.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "gemini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gaelleetarnaud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "galenskap.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "geeklair.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11068,7 +11039,6 @@
{ "name": "spititout.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sponsortobias.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "spyprofit.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "stamkassa.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sslsurvey.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ssmato.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "spotifyripper.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11085,7 +11055,6 @@
{ "name": "sunsetwx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stutelage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stigroom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "studiozelden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "svatba-frantovi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tails.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sv-turm-hohenlimburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11607,7 +11576,6 @@
{ "name": "kjarni.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kkovacs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kkzxak47.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ko-sys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "koluke.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "koluke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kontaxis.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11770,7 +11738,6 @@
{ "name": "pypi-mirrors.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pypi-status.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pzme.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "qedcon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qivonline.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "r-core.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "r-core.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11785,7 +11752,6 @@
{ "name": "rentbrowser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "reuter-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "reuter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "richardb.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rickweijers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "right2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rkkhok.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -11868,7 +11834,6 @@
{ "name": "swimbee.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "symeda.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "synaptickz.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ta-sports.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tadcastercircuit.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tamex.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tanze-jetzt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -12261,7 +12226,6 @@
{ "name": "cornodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "couragefound.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "courses.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cprnearme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "craigrouse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "crazy-crawler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "crazypaul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -12547,7 +12511,6 @@
{ "name": "heartyme.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "heavensattic.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hebaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "hegen.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hegenshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "heidilein.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hesaplama.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -12752,7 +12715,6 @@
{ "name": "landofelves.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "langworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lastchancetraveler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "latinred.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lattyware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lattyware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lauftrainer-ausbildung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -13129,7 +13091,6 @@
{ "name": "rmf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "roadfeast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "robin.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "robinhoodbingo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rockeyscrivo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "rondommen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "roslynpad.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -14902,7 +14863,6 @@
{ "name": "sinquin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "spicywombat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "slapen17.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "sleepstar.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sitc.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "slevermann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "spedplus.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -15062,7 +15022,6 @@
{ "name": "travelogue.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "unikitty-on-tour.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "touchbasemail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "t-tz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tsv-1894.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "typehub.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tuxie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -16134,7 +16093,6 @@
{ "name": "praeparation-keppner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "planete-lira.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qipp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "readytongue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "realwoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pemagrid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "purpleplains.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -16380,7 +16338,6 @@
{ "name": "ulmer-schneesport.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "unxicdellum.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vestacp.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "u03.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "truckersmp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "twolivelife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "usportsgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -16958,7 +16915,6 @@
{ "name": "cranems.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "david-pearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cube-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cornishcamels.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cubecart-demo.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cuni-cuni-club.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "defero.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -17676,7 +17632,6 @@
{ "name": "lunarsoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "malamutedoalasca.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kofler.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "linden.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "losless.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "loongsg.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lebal.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -18186,7 +18141,6 @@
{ "name": "shenghaiautoparts.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schoolotzyv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sensepixel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "sambaash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "royalsignaturecruise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "serversuit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "senseofnumber.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -18307,7 +18261,6 @@
{ "name": "sumthing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "spatzenwerkstatt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stamboommuller.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "srrdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sports.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sport-in-sundern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "siamsnus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -19181,7 +19134,6 @@
{ "name": "concerto.amsterdam", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "coolgifs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "crazycraftland.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cursos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "corporateencryption.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cralarm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dandenongroadapartments.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -19483,7 +19435,6 @@
{ "name": "fnof.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fischer-kundendienst.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fondationwiggli.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "fabrysociety.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "financniexperti.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fruition.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fixtectools.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -19640,7 +19591,6 @@
{ "name": "hitter-lauzon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hentaimaster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gutuia.blue", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "heimnetze.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hmksq.ae", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "handicapindeles.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hosts.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20004,7 +19954,6 @@
{ "name": "laplaceduvillage.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "maintainerheaven.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lifecoachproviders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "lunafag.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lucas-garte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mamadea.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "loyaltech.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20035,7 +19984,6 @@
{ "name": "koriyoukai.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "luxinmo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mcideas.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "marmolesromero.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mangazuki.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mademoiselledemargaux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "matthewemes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20227,7 +20175,6 @@
{ "name": "nikolaichik.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nicolaszambetti.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "night2stay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "northfieldyarn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nordlicht.photography", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "netbears.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ntzwrk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20284,7 +20231,6 @@
{ "name": "openconcept.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "olightstore.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nuiguru.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "paigeglass.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nosbenevolesontdutalent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "open-letters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "onlinefashion.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20714,7 +20660,6 @@
{ "name": "stream.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stockrow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stockseyeserum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "stationcharlie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "stationcharlie.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "souravsaha.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "streamlineautogroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20853,7 +20798,6 @@
{ "name": "trailforks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tinchbear.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tn0.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "timweb.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "thomascloud.ddns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tobyx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tobiashorvath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20866,7 +20810,6 @@
{ "name": "tobyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tom-maxwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "timhjalpen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "timtj.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tjeckien.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tovare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "transsexualpantyhose.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -20876,7 +20819,6 @@
{ "name": "towaway.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "triddi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tomi.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "townofbridgewater.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "taxiindenbosch.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tie-online.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "townhouseregister.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21031,7 +20973,6 @@
{ "name": "wiretime.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "xerblade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "visaop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "wonderbill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "xkcd.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "willeminfo.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "wpblog.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21295,7 +21236,6 @@
{ "name": "careeroptionscoach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cartesentreprises-unicef.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cartesunicef.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cashlink.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cathosa.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cdburnerxp.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "censurfridns.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21524,7 +21464,6 @@
{ "name": "hechamano.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "heimonen.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hennecke-forstbetrieb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "hfi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "highspeed-arnsberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hobby-drechselei.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hoesnelwasik.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21544,7 +21483,6 @@
{ "name": "icpc.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "id7.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "idtheft.gov", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "image-drive.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "imga.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "immobilien-badlippspringe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "impactfestival.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21825,7 +21763,6 @@
{ "name": "prepaidkredietkaart.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pressenews.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "printf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "privateideas.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "promedicalapplications.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "proxydesk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "proxydesk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21873,7 +21810,6 @@
{ "name": "salde.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "salzamt.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sam-football.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "sanael.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sand-islets.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sauerland-schnittgruen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "saxojoe.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -21892,7 +21828,6 @@
{ "name": "section-31.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "secwise.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sellajoch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "semjonov.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sendai-sisters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "senmonsyoku.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "seoagentur2go.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -22178,7 +22113,6 @@
{ "name": "3555aa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3778vip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "379700.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "393335.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3circlefunding.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3dcart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3dprintsondemand.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -22765,7 +22699,6 @@
{ "name": "cmskeyholding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cmskh.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cnetw.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "co-driversphoto.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "co-factor.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cobrax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "code-digsite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -22963,7 +22896,6 @@
{ "name": "dhlinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "diagnosia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "diamorphine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "diannaobos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dicelab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dicionariodegirias.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dicionariodelatim.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -23263,7 +23195,6 @@
{ "name": "fossgruppen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fotostravestisbr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fourwheelpartloanssimple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "fr33tux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fragilesolar.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "franchini.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "franchini.engineer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -23397,9 +23328,7 @@
{ "name": "gorky.media", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gouldcooksey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gourmettia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "gouthro-goteborg.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gouv.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "gpws.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "graeber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "grandcapital.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "grapeintentions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -23431,7 +23360,6 @@
{ "name": "gympap.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gzitech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gzpblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "h001.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "h2u.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "h3x.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "h3z.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -23629,7 +23557,6 @@
{ "name": "innsalzachsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "inscript.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "inst.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "instinctive.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "int-ma.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "integralkk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "intelligence-explosion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -24834,10 +24761,8 @@
{ "name": "schau-rein.co.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schermreparatierotterdam.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schier.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "schippers-it.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schmelzle.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schmitt.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "schnyder-werbung.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schsrch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "schwarzwald-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "scintilla.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -25364,7 +25289,6 @@
{ "name": "vendigital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vendorconnect.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "venmos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "venoom.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "verliebt-in-bw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "verliebt-in-niedersachsen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "versagercloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -25742,7 +25666,6 @@
{ "name": "alfaponny.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3dmusiclab.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "andrewdavidwong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "alpha.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "americanmediainstitute.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "alex97000.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "anime1video.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -25804,7 +25727,6 @@
{ "name": "abilitycaresoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "arent.kz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "aquatechnologygroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "alexdaulby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "arg.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "armenians.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "annetaan.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26419,7 +26341,6 @@
{ "name": "dorkfarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "drakenson.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dundalkdonnie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "donnachie.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "easelforart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dovro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ea2drocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26540,7 +26461,6 @@
{ "name": "everain.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "epicvistas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ebop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "eworksmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "exeintel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "example.wf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "evilarmy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26616,7 +26536,6 @@
{ "name": "environment.ai", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "flapoverspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fefelovalex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "financejobs.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "firmament.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fastbackmbm.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "filoitoupediou.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26876,7 +26795,6 @@
{ "name": "hokify.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hokify.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "highlegshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "honeyhaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hollo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hygo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hopglass.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26919,7 +26837,6 @@
{ "name": "iemb.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "i4m1k0su.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ict-crew.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ictcareer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "idrycleaningi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "idrinktoomuch.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ideaplus.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26967,7 +26884,6 @@
{ "name": "ingalabs.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "internetbugbounty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "indecipherable.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ingjobs.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "indogermantrade.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "industrybazar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "investigazionimoretti.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -26999,7 +26915,6 @@
{ "name": "itis.gov", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "iskai.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ichasco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ilamparas.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "islief.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ipal.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "interboursegeneva.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -27051,11 +26966,9 @@
{ "name": "joelmunch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "josefottosson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jobsuchmaschine.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "jobs4sales.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jelena-adeli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jobs.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "joelleandpeter.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "jobwinner.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "joelcoustrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "josc.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "joelle.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -27387,7 +27300,6 @@
{ "name": "medicocompetente.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mekatrotekno.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "margotlondon.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "medtalents.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mbdrogenbos-usedcars.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mbwemmel-usedcars.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mgsisk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -27677,7 +27589,6 @@
{ "name": "palabr.as", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "openiocdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ninjaspiders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ofo2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pasadenasandwichcompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "padrepio.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "papersmart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -27763,7 +27674,6 @@
{ "name": "pj539999.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "perrau.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pinterest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "pivotanimation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pinkapple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pirateproxy.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pikmy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -28441,7 +28351,6 @@
{ "name": "top-obaly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "traces.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "torstensenf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "topjobs.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tokyomakino.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "trimarchimanuele.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tlsrobot.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -28481,7 +28390,6 @@
{ "name": "twem.ddns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "twenty71.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ttll.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "tsukuba.style", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tuts4you.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "twincitynissantxparts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "turnsticks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -28552,7 +28460,6 @@
{ "name": "vergeaccessories.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "upload.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "viditut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "vacuumreviewcenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vaygren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "unterkunft.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ueba1085.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -28922,7 +28829,6 @@
{ "name": "addcrazy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "3wecommerce.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "afbeeldinguploaden.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "aflamtorrent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "addones.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "aelurus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "513vpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29106,7 +29012,6 @@
{ "name": "brandcodeconsulting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "birchbarkfurniture.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "birchbarkfurniture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "briefhansa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "birchbarkfurniture.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cabaladada.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "brokenjoysticks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29263,9 +29168,7 @@
{ "name": "dariosirangelo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dcc.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "daemwool.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "cosmeticosnet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "corpoatletico.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "darbi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "deborahmarinelli.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "daniel-stahl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dcc.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29441,7 +29344,6 @@
{ "name": "exside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "expresswins.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "eyes-of-universe.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "fanzlive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fashionunited.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fam-kreibich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fergusoncastle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29536,7 +29438,6 @@
{ "name": "goodfeels.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "foxes.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "frebi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "geniuszone.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "go-embedded.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "gdiary.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fysiotherapieholtenbroek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29699,7 +29600,6 @@
{ "name": "imperialonlinestore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jameshemmings.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "intertime.services", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "jeffmcneill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ispsoft.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "joaosampaio.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "josemikkola.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29779,7 +29679,6 @@
{ "name": "koryfi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "jacobsenarquitetura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kitatec.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "lannainnovation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lazulu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "leadgenie.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "laraveldirectory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -29882,7 +29781,6 @@
{ "name": "lojaprimemed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "malgraph.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "makedonien.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "louduniverse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "marinekaplama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "masterofallscience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "makaleci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -30103,7 +30001,6 @@
{ "name": "mireiaseuba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "orangecomputers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "orleika.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "oliverniebuhr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "oversight.gov", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "opsnotepad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "owl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -30722,7 +30619,6 @@
{ "name": "vital-tel.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "watch-wiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vssnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "webpostingpro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vivid-academy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "webukhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "westmeadapartments.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -30767,7 +30663,6 @@
{ "name": "webwolf.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "vapesense.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "x-lan.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "wikibulz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "windowwellcovers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "torontocorporatelimo.services", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "xlfblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -30892,7 +30787,6 @@
{ "name": "artschmidtoptical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "injust.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "injust.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "graetnew.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "boel073.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "freebarrettbrown.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "flyingpackets.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -30933,7 +30827,6 @@
{ "name": "liberapay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "meetmygoods.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "8522cn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "lifecism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "learninglaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "cyberduck.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "fl0333.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -31047,7 +30940,6 @@
{ "name": "jungleculture.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "www-8522.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "savecrypto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "vigoxatelier.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sproing.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "webveloper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "sintesysglobal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -31155,7 +31047,6 @@
{ "name": "halitopuroprodutos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hanys.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "haogoodair.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "heartview.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "helpstarloja.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "homesandal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "hotcandlestick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -31226,18 +31117,11 @@
{ "name": "mundoarabe.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mundokinderland.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mwainc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "mygeneral.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "mylatestnews.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "mytruecare.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "myupdatestar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "myupdatestudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "myupdatesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nairobibusinessreview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "naoar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "neowlan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "netlentes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "netmagicas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "networkposting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nexusbyte.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nkb.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nordnetz-hamburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -31474,14 +31358,12 @@
{ "name": "danyabanya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "darlastudio66.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dasgeestig.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "datakick.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "datenschutzgrundverordnung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ddel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "de-mail.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "deeparamaraj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "denis-martinez.photos", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "digicert-support.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "dingcc.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "discoverwellness.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "dismail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "divenwa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -31715,8 +31597,6 @@
{ "name": "originalniknihy.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "owngeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "padzilla.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "pagedesignhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "pagedesignpro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "passionatehorsemanship.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pastorsuico.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "paul-bronski.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -32050,7 +31930,6 @@
{ "name": "telos-analytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "test.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "the-body-shop.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "timco.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tsurezurematome.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "type1joe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "upgamerengine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -32098,8 +31977,6 @@
{ "name": "activeclearweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "adamh.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "adeline.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "adesa-asesoria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "adhigamindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "adm-sarov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "admin-serv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "adriancitu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -32934,7 +32811,6 @@
{ "name": "mbits.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "media-pi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mediadandy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "medstreaming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "medtankers.management", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "meetingfriends.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mehmetakif.edu.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -33013,7 +32889,6 @@
{ "name": "mymp3singer.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "myndcommunication.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mynewselfbariatrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "mynn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mypress.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mypup.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "myrandomtips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -33180,7 +33055,6 @@
{ "name": "psu.je", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ptal.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pv-paderborn-now.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "q8mp3.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "qq-navi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "quareal.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "quasseldroid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -33420,7 +33294,6 @@
{ "name": "tijo.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tik.edu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tik.help", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "timer.fit", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tkn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tlca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "tlcnet.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -33948,7 +33821,6 @@
{ "name": "kinnikinnick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "kredit-abzocke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "krypt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "ktw.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "landyparts.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lang-php.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "lareclame.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -33983,7 +33855,6 @@
{ "name": "melerpaine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "mes10doigts.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "messagescelestes-archives.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "michaeljdennis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "miggy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "misclick.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "misgluteosperfectos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -34018,7 +33889,6 @@
{ "name": "noslite.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nsdev.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "nsmail.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "oblondata.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "odysseyofthemind.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "oliveoiltest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "omnibot.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -34029,7 +33899,6 @@
{ "name": "opencad.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "ostrov8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "oxborrow.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
- { "name": "pagedesignweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "pages-tocaven.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "paipuman.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
{ "name": "party-calendar.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true },
@@ -34416,7 +34285,6 @@
{ "name": "bigcorporateevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bigfunbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bikelifetvkidsquads.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bilalic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bilbayt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "billysbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bio-disinfestazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -34849,7 +34717,6 @@
{ "name": "funtimebourne.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funtimeentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funtimesbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "furigana.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fuzoku.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gaio-automobiles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gameshowchallenge.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -34892,7 +34759,6 @@
{ "name": "halkirkbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "happybounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "happykidscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "haribilalic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "harryphoto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "harrysgardengamehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "harrysqnc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -34959,7 +34825,6 @@
{ "name": "interimages.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "internaluse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "investarholding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "iobint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ipmonitoring.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "it-kron.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "itraveille.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35183,7 +35048,6 @@
{ "name": "mendipbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "metadistribution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "metikam.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "metrolush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "micado-software.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "michaelschubert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "microlinks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35319,7 +35183,6 @@
{ "name": "pjentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pjleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pkphotobooths.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "plantrustler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "playawaycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "playdaysparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "playtimebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35341,7 +35204,6 @@
{ "name": "poshcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "premierbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "premierevents.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pressography.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prestigebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prestigeeventshire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "primalinea.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35379,7 +35241,6 @@
{ "name": "reepay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "registerforevent.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "regraph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "reimaginebelonging.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "reinfer.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "reisekosten-gorilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "remodelwithlegacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35461,7 +35322,6 @@
{ "name": "snote.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "so.is-a-cpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "soccorso-stradale.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sockeye.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sodexam.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "softandbouncy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "softplay4hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35473,7 +35333,6 @@
{ "name": "sonixonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sos-idraulico.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sosoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "soulcrazy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "southambouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "soutien-naissance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spahireleeds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35520,7 +35379,6 @@
{ "name": "tecit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tecne.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "template-parks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tendomag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "terra-x.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tewkesburybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "texasvolunteerattorneys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35583,7 +35441,6 @@
{ "name": "trianglecastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "trizone.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "troisdorf-gestalten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tryupdates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tubetoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tubetooncartoons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tubs4fun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35600,7 +35457,6 @@
{ "name": "unbelievableplaces.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "underbridgeleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unique-bouncy-castles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "universeinform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unobrindes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unworthy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "usbevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35632,9 +35488,6 @@
{ "name": "wdmg.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "webcatchers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "webdev-quiz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "webjobposting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "webpostingmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "webpostingreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "websandbox.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "websiteout.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "websiteout.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -35843,8 +35696,6 @@
{ "name": "blogexpert.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bloodyexcellent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bluesecure.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bodixite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "boisewaldorf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bolovegna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bosufitness.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "boulzicourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -36017,7 +35868,6 @@
{ "name": "handbrake.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "happyschnapper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "harapecorita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hashes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "haus-henne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "haushenne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hawkofgeorgia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -36047,7 +35897,6 @@
{ "name": "indiaflowermall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "indoorplantsexpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "inetserver.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "innoteil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "instaquiz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "interfloraservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "inventoryimages.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -36764,7 +36613,6 @@
{ "name": "omnitrack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "onepopstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "opencircuit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "optimal-e.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pabloarteaga.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pabloarteaga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pabloarteaga.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -37078,7 +36926,6 @@
{ "name": "eff-bee-eye.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "egarden.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "electricalagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "elguadia.faith", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elitesensual.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elucron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "empower.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -37269,7 +37116,6 @@
{ "name": "namazvakitleri.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nani.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "natchmatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nationalcprfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "natlec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "naturalkitchen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ncc-qualityandsafety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -37565,7 +37411,6 @@
{ "name": "augix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aupasdecourses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aurelienaltarriba.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "auroware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "austinuniversityhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "australianarmedforces.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "australianimmigrationadvisors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -37611,7 +37456,6 @@
{ "name": "b98886.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b9889.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b9930.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "b99520.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b9980.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b99881.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b99882.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -39419,7 +39263,6 @@
{ "name": "gearallnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "geecrat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "geek1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "genchev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "geocompass.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gepe.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "get2getha.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -39447,7 +39290,6 @@
{ "name": "gymnasium-hittfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gyulakerezsi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "haccp.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hackerchai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hackerlite.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hacktic.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "haixihui.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -40175,7 +40017,6 @@
{ "name": "emailalaperformance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "emailing.alsace", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "emilecourriel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "enlnf.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "epyonsuniverse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ericloud.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "erikwagner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -40535,7 +40376,6 @@
{ "name": "retireyourpassword.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rga.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rickvanderzwet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "robicue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rody-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roodfruit.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roughcopy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -40679,7 +40519,6 @@
{ "name": "vorlagen-geburtstagsgruesse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vosn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vosser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "voya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vpsport.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vuilelakens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vzce.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -41436,7 +41275,6 @@
{ "name": "wpoptimalizace.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wpsec.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wristreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "wrp-timber-mouldings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wyo.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "x-one.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -42292,7 +42130,6 @@
{ "name": "aussiewebmarketing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "authoritysolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "avocadooo.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "awesomesit.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "axiumacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "az-moga.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "azadliq.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -42847,7 +42684,6 @@
{ "name": "whychoosebob.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wichitafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wirkaufendeinau.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "wlwlwx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ws-meca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wsadek.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "www-9822.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43249,7 +43085,6 @@
{ "name": "kiesuwcursus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kikimilyatacado.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kine-duthil.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kmdev.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "koi-lexikon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "koirala.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "koirala.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43416,7 +43251,6 @@
{ "name": "pself.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "psicologasandrabernal.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "psychiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "puravida-estate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pushers.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "qi0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "qto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43581,7 +43415,6 @@
{ "name": "weekendinitaly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "weitergedacht.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "westcoastaggregate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "wft-portfolio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "whateveraspidercan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "whatismycountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "workinginsync.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43747,8 +43580,6 @@
{ "name": "indiroyunu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "insistel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "internalkmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "invasmani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "inventtatte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iproducemusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iro-iro.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "isayoga.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43758,7 +43589,6 @@
{ "name": "jeffwebb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jkuvw.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kekehouse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "keywebdesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "knowledgeforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kopfundseele.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lagriffeduservice.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43821,7 +43651,6 @@
{ "name": "practicalprogrammer.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "productoinnovador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "quangngaimedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rebelrebel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "regenerapoint.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "renthelper.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "republictelecom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -43901,7 +43730,6 @@
{ "name": "akuislam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "alanberger.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "amikootours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "anadiyogacentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "andreasbasurto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "androidsphone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "angrylab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -44024,7 +43852,6 @@
{ "name": "megarex.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "megustariasaber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "motoreflex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "musikzentrale.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "my4thtelco.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "myfishpalace.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "myrepubic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -44491,7 +44318,6 @@
{ "name": "jydemarked.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kabarlinux.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kagitreklam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kanetix.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kanzlei-oehler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "karupp-did.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kellyssportsbarandgrill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -44682,7 +44508,6 @@
{ "name": "registerex.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rehabmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "reiki-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "reimaginebelonging.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rekisuta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rencontres-erotiques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "retrovideospiele.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -44940,7 +44765,6 @@
{ "name": "best66.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bgtoyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bh-oberland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bio24.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bit.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bithap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bitlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -46177,7 +46001,6 @@
{ "name": "onlinexl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "onyxmoon.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "open-banking-access.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "openscreen.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "openstreetmap.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "otsfreestyle.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ovirt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47150,7 +46973,6 @@
{ "name": "sporttown.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spritsail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ssconn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "starmtech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "status.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steamwhale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steven-klix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47237,7 +47059,6 @@
{ "name": "watvindtnederland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wdic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wearehackerone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "webhostingshop.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "webpinoytambayan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "webpinoytv.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "werepairit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47349,7 +47170,6 @@
{ "name": "como-se-escribe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "comocurarlagastritistratamientonatural.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cosasque.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cprheartcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crimefreeliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crochetnerd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "curareldolordeespalda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47455,7 +47275,6 @@
{ "name": "kiyotatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kkr-bridal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kndkv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "knispel-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kockanakocko.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "la-kaz-a-velo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lacaserita.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47475,7 +47294,6 @@
{ "name": "m-chemical.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "m-warrior.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mac.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "maerzpa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "malufs.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mamamoet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mansfeld.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47783,11 +47601,9 @@
{ "name": "christec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "christerwaren.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "churningtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "chyen.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "classictheatrecumbria.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cleaningservicejulai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cloudns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cocodroid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "colinsnaith.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "collectorsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "commerce.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -47883,7 +47699,6 @@
{ "name": "fdp-brig-glis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fedoraproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feel-events.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fichier-pdf.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fifr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fiissh.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "filiio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -48420,7 +48235,6 @@
{ "name": "windsorspi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "withextraveg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wohlpa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "woltlab-demo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "woofsbakery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "woomai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "worldmeteo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -48516,7 +48330,6 @@
{ "name": "chaoswars.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clad.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clangwarnings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "colorfuldots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "consultimedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cordep.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "createme.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -48573,7 +48386,6 @@
{ "name": "havetherelationshipyouwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "herbhuang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hotels4teams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hrbl.lc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "html.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "humorcaliente.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hurleyhomestead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -49273,7 +49085,6 @@
{ "name": "hausjugo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "haydentomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "healthyteame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hentaiworld.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "henzenhoning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hgvnet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hj2999.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -49293,7 +49104,6 @@
{ "name": "howtocommunicate.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hqy.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hsappstatic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hsex.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hti.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hubapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hubspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -49384,7 +49194,6 @@
{ "name": "kolorbon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "komenamanda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kotobox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kucukayvaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lanahallen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "landlordy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "landscape-photography.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -49471,7 +49280,6 @@
{ "name": "mivzaklive.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mizu.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "modulex-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "moeyoo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mojizuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moneoci.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moneybird.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -49812,7 +49620,6 @@
{ "name": "syamuwatching.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sympmarc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "systemchile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "szclsya.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tabi-news.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "taiphanmem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tannerwj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -50139,7 +49946,6 @@
{ "name": "ehub.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elcontadorsac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elekharris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "elonm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "enord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "erics.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "establo.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -50568,7 +50374,6 @@
{ "name": "vitra-showrooms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vrij-links.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vwo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "waligorska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "walksfourpaws.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wanlieyan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wapking.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -50673,7 +50478,6 @@
{ "name": "bytemix.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "c5h8no4na.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "calcoolator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "camcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "camshowstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "carlocksmithbaltimore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "casinomucho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -50688,7 +50492,6 @@
{ "name": "cathyjf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cathyjf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cathyjfitzpatrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "caxalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cesantias.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ceta.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "chenna.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -50841,7 +50644,6 @@
{ "name": "panic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "patsch-photography.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paynet.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pdfsearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pems.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "peto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "piroleikki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -51903,7 +51705,6 @@
{ "name": "wereoutthere.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "white-ibiza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "williamscomposer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "williamsflintlocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "willowbrook.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "woaiuhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "worldrecipes.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -51928,7 +51729,6 @@
{ "name": "23333.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "24hourcyclist.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2bad2c0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "357maelai.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "360vrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "371cloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "411416.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -52333,7 +52133,6 @@
{ "name": "idesoft.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "idesoftinnovacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "idesoftinnovacion.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ihcr.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ijsclubwanneperveen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ikumi.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "imperiodigital.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -52526,7 +52325,6 @@
{ "name": "noomist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "noroshi-burger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "northdakotahealthnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nosproduitsdequalite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nowall.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "npregion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nshipster.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -53239,7 +53037,6 @@
{ "name": "sopo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sotai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spartacuslife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "spectroom.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spectrum.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "st-bede.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steemyy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -53250,7 +53047,6 @@
{ "name": "studio44.fit", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "studiohomebase.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stuffiwouldbuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sullenholland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "supioka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "supmil.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sv-bachum-bergheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -53382,7 +53178,6 @@
{ "name": "bestplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "betaclouds.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bilibili.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "billkochman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "biscuitcute.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bizbudding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bizcash.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -55676,7 +55471,6 @@
{ "name": "locksmithhumbletx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "longboat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "loquo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "loveai.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lovemiku.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lsy.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lugimax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -55737,7 +55531,6 @@
{ "name": "metron-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mfxxx.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mialquilerdecoches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "michalp.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "michelskovbo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "micopal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "microneedlingstudio.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -55892,7 +55685,6 @@
{ "name": "peterhons.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pflug.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "phenq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "phil.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "phillipsdistribution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "phpstan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pimg136.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -56205,7 +55997,6 @@
{ "name": "sunred.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "superidropulitrice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "surfnetparents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "svak-gutachter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "swe77.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "swe777.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sweet-spatula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -56461,7 +56252,6 @@
{ "name": "0ii0.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "233now.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "3dgep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "52hentai.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "affarsnatverk.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "afterdwi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agenceactiv.immo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -57061,7 +56851,6 @@
{ "name": "falce.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "familie-mischak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fantasy-judo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fapplepie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feldmann-stachelscheid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feminism.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ffrev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -57406,7 +57195,6 @@
{ "name": "shrimpcam.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sim-usa.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sincemydivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sitiweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "six-o-one.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "skolnieks.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "skulblaka.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -58287,7 +58075,6 @@
{ "name": "lagsoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lalunaonlinebr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lambangcapgiare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lannamontessori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lannatefl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lansewu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "laserhealthsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -58467,7 +58254,6 @@
{ "name": "newhoperailroad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nexter.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nguyencucthanh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nice.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nicolaiteglskov.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nikpool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ningbo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -58615,7 +58401,6 @@
{ "name": "responsecode.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "reviderm-skinmedics-rheinbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "revuestarlight.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "riechsteiner.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rileyskains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rincondenoticas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ristorantelittleitaly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -58872,7 +58657,6 @@
{ "name": "woshiluo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wpboot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wpcs.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "wpherc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wug.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "www-5287.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wyomingexiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -59335,7 +59119,6 @@
{ "name": "dietervandenbroeck.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dmzlab.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dollarrp.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dponetwork.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dr-peter-jahn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dstvrandburg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "efreet.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -59504,7 +59287,6 @@
{ "name": "retailcybersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "retrotown.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rhondanp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "robsutter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roko-foto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rs-cloud.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rubixstudios.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -59691,7 +59473,6 @@
{ "name": "d4fx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dadadani.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "danads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dapianw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "darf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dead-letter.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "deepspace4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -59793,7 +59574,6 @@
{ "name": "linkyou.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lippu1.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "living-with-outlook-2010.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "localegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ltlec.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ltlec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ltmw.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -60173,7 +59953,6 @@
{ "name": "meidev.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minapin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minhyukpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "miniaturepets.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mirrordream.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mobl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moego.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -60189,7 +59968,6 @@
{ "name": "neat-patch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "neckbeard.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nelflex.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "neosey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "neppglobal.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "newflavor.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nishimebistro.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -60851,7 +60629,6 @@
{ "name": "gwynfryncottages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hanjuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "helensmithpr.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "help207.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "helsenorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "heritagecoffee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "herzwacht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -60862,7 +60639,6 @@
{ "name": "how-old.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hsturan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hulaginswoodworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "i2verify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ibericarempresas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ibericarformula.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ibericargestoso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -61027,7 +60803,6 @@
{ "name": "somethingsomething.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sophiahatstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "speakersbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "spotsee.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spt.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "staffhunt.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "star-darom.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -61052,7 +60827,6 @@
{ "name": "tim-demisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tkcafe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "totalpackers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "trastornolimite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "travisec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "trit.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "trosell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -61407,7 +61181,6 @@
{ "name": "rdcdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rdfencingandgates.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "realcolors.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "retefrati.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "retropack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "richlj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "richlj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -61937,7 +61710,6 @@
{ "name": "codeknights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "codetipi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "compostelle-bouddha.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "compreair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "computec.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "concilio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cosmicworlds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62013,7 +61785,6 @@
{ "name": "itpanda.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ix.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jackfletcher.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "jerseyplantsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jesusvazquez.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jolinebrussel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jonny5.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62161,7 +61932,6 @@
{ "name": "topshelf.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "totalaccessnicaragua.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "touhou.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "trastornoevitacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tronlaserarena.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tsrv.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tutorialseo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62197,7 +61967,6 @@
{ "name": "267661.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "351113.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "382225.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "54.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "592227.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "599980.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "716227.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62273,7 +62042,6 @@
{ "name": "coupestanley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "craft-me-in.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crain.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "critterguard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cuminas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cuminas.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cursed.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62699,7 +62467,6 @@
{ "name": "ejelectrical-qld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ejkhosting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "electricgatemotorsballito.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "electricgatemotorsqueensburgh.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elettricisti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elipsyum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "emilybellydance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -62803,7 +62570,6 @@
{ "name": "mainone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mareamoda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "matthewsaeger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "melanfengshui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "metadata.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "miaomiaomiao.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "micromegas.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -63018,7 +62784,6 @@
{ "name": "673990.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "675660.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "675990.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "679660.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "692660.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "692990.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "695660.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -63056,8 +62821,6 @@
{ "name": "ae86sb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aero.parts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ag88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "agilicus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "agilicus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ai00.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aisin.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "akoofs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -63589,7 +63352,6 @@
{ "name": "maximilian-staedtler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mazi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mchost.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mcpebox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "medbreaker-friends.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "medpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "megaxhost.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -63847,7 +63609,6 @@
{ "name": "schuetzen-ehrenbreitstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "schultz.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scp-079.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sds-marburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sduoxminty.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sebandroid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sebastian-haeutle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -64078,7 +63839,6 @@
{ "name": "whythisguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "windowseatwanderer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wingspatagonia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "winner.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wishingyou.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "withheld.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wobker.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -64290,7 +64050,6 @@
{ "name": "hmnd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "htdcomputer.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "i-voting.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "icetravellers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iglosujemy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ihearmedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "impresa-di-pulizie.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -64382,7 +64141,6 @@
{ "name": "pechonova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pentagonreviewcenter.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pirapiserver.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "planningsagenda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "plumbingkingsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pnnl.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "po0k.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -65902,7 +65660,6 @@
{ "name": "t9728.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tcj.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tclb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "techvhow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tecnaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "telestepina.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "terme.viterbo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -66716,7 +66473,6 @@
{ "name": "plaros.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ploi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "poliscentraal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "poslusny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pracujwunii.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pranaprinciple.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "princetonnassaupediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -67084,7 +66840,6 @@
{ "name": "6957z.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "6957z.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "6957zz.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "7ka.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "876666365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "88btt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "918.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -67790,7 +67545,6 @@
{ "name": "dora.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dratini0.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dreamsxxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "duchateaugyn.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dunyahalleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e-mandataires.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e-michiganinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -68232,9 +67986,7 @@
{ "name": "glexia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gobiz.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gordyf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "habbstars.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hallaminternet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hanyingw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hashtagswimwear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "he.kg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "healthyhomesofmichigan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -68342,7 +68094,6 @@
{ "name": "lc8.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8841.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8893.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc8a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8dc12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8dc14.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8dc17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -68592,7 +68343,6 @@
{ "name": "chenx221.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "chenx2210.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "chrystus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "chun.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clare3dx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "claudiney.eti.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cnbibo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -69168,7 +68918,6 @@
{ "name": "redpatronus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rodrigoacevedo.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roh.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "roi.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rotring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rphyncice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "russia.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -69202,7 +68951,6 @@
{ "name": "taxi-uslu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "taxichic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "technology.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "techzjc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "teen-porno-video.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "teleport.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "test-allegrodev.pantheonsite.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -69294,7 +69042,6 @@
{ "name": "augehost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aurbrowser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "austinchase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "avi12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "axa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "b-tree.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "banfor.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -69635,7 +69382,6 @@
{ "name": "sony-psvita.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sparkar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sparklesdelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sphardy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "srsforward.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "srsfwd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "srsfwd.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -70462,7 +70208,6 @@
{ "name": "dizzieforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "djdeepstate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dmerkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "doceo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "docmed360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dogboarding.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dogeboy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -70531,7 +70276,6 @@
{ "name": "holunderbluetentee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "homeable.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hosteleriauno.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hostingsrv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "huabantxt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "huabanxs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "huimiquan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -70621,7 +70365,6 @@
{ "name": "mastermindbusinesspro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "masternautconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mb-demo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "medbreaker.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "megaron.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "meliowebweer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "meloniecharm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -70737,7 +70480,6 @@
{ "name": "thecontentcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thecraftingstrider.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thekiddz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "theswimdoctors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thutucxuatnhapkhau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tipsdebellezaysalud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tobimi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -71171,7 +70913,6 @@
{ "name": "416365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "418663.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "426773.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "4345.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "436773.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "438663.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "444b58.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -72166,7 +71907,6 @@
{ "name": "geschaeftsideen-ebook.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "get-california-real-estate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "getpromo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "gfac.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gfronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "giovannarossi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "givepenny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -73660,7 +73400,6 @@
{ "name": "alwayshowher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "am5188.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "am615.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "am8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "amandahamilton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "americanunicornparty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "amoxil.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -74785,7 +74524,6 @@
{ "name": "shevet-achim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shgw186.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shielddagger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "shiftpsych.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shilpaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shitnikovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shkololo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -75654,7 +75392,6 @@
{ "name": "man-stuff.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maneql.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maneql.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "marcus.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "masarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mbadika.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mdihi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -75667,7 +75404,6 @@
{ "name": "miravelli.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mismart.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mitfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "motherwell.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mserve.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mydevops.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "n3domains.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -75901,7 +75637,6 @@
{ "name": "castiana.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ceylavi.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "chat36.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "chawa.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cheapnhljerseys.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "christianr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cjs8866.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -75932,7 +75667,6 @@
{ "name": "distributednya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "djsanonimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dk1818.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dnoid.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dogfriendly.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "downtownsuiteliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dpim.org.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -76134,7 +75868,6 @@
{ "name": "quadron.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "r81818.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "radioheaven.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rainbowflowers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rainturtle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rawcbd.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rbuddenhagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -76503,7 +76236,6 @@
{ "name": "mekanika.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "metroplex.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mivm.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mjproduction.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "modderday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moens.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "netface.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -76590,7 +76322,6 @@
{ "name": "tian888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "toronto-escorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "toyopac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tranceattic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "travelerofcharleston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tripasia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tube8.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -76902,7 +76633,6 @@
{ "name": "richieheijmans.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ruf888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "runningandoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "russstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ryanjarvis.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "s-pro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "safetysign.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -76936,7 +76666,6 @@
{ "name": "swindontennisclub.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "syncplay.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "szww99.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tasadar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "taubin.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tehden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "teriyakiweasel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -77128,7 +76857,6 @@
{ "name": "forexarby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fortdodgeradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "franklinmagic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "freshbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "furgetmeknot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "futuristacademy.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "g2jp.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -77767,7 +77495,6 @@
{ "name": "dechetor.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dejongonline.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "depot24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "desertbloomplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "devmode.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diariocibao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diepanhcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -77888,7 +77615,6 @@
{ "name": "parkeerbordenhuren.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paroisses-theix-surzur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pcdbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "piektraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pitoufi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "planisys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "playlisten.radio.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -77925,7 +77651,6 @@
{ "name": "siepomaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "simmtronic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sinakuhestani.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "siulam-wingchun.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "skyblockrebellion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "slalix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "smaltimento-rifiuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -78120,7 +77845,6 @@
{ "name": "equipoweb.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "espacobebecia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "everydaylatestnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "evthing.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "exploredouglascountyga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "f9marketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fachfusspflege-exner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -78397,7 +78121,6 @@
{ "name": "zanjirzanane-shanbeghazan.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "0553z6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "0571z6.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "09am8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "1u0m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "3333ylc.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "364553.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -79169,7 +78892,6 @@
{ "name": "computingsociety.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "comschool.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "contentmarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "coteibem.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "couponbre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cozumel-activities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crafted.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -79179,7 +78901,6 @@
{ "name": "danskefilm.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dartydiscount.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dc-acupuncture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "deanstreettacochips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "decofiori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "denisadinu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "desert-maroc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -79294,9 +79015,7 @@
{ "name": "latanews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "latinosup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "latinosuptv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc861.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc862.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc863.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "le-cameleon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "leemankuiper.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lelux.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -79873,7 +79592,6 @@
{ "name": "lesptitstutos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "liborburda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lightyear.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "liypoi.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lms-luch.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lomaem-nsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "londonlegaltranslation.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80042,7 +79760,6 @@
{ "name": "toorl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "torrentgalaxy.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "toudum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tupeuxpastest.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tussier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "twtr.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ubezpieczenia-poznan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80050,7 +79767,6 @@
{ "name": "ukriate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ultimateappreviews.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "upholsterycleanerslondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "urkult.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "username.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "usjunkyardsnearme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uv.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80367,7 +80083,6 @@
{ "name": "lightningwirelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lincore.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "liveint.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "loveluna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lxx4380.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lyonslawlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "m36533.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80436,7 +80151,6 @@
{ "name": "opsre.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "optimalrehab.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "optimumterapia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "orphee-beaute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ostylelimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "overspeed.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "p36533.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80501,7 +80215,6 @@
{ "name": "sphericalvision.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spmax.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sprossenwand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ssrr.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stagemaster.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stamboomforum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "statuswatch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80521,7 +80234,6 @@
{ "name": "tcgpraktijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "telhabrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theartistjournal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "theindiantrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thelittlepeartree.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thomasbnt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "totalemaiildelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80710,7 +80422,6 @@
{ "name": "breakout.careers", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brillio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bronzew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cadenceconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cadmax.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cairuz.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "caldersoldas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80738,7 +80449,6 @@
{ "name": "coinvex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "competitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "compra-deuna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "construction-digitale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "couponlo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "couriergrey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "couriersrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80960,7 +80670,6 @@
{ "name": "larsson-ornmark.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc0188.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc040.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc18.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc1800.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc2121g.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc245.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -80970,11 +80679,7 @@
{ "name": "lc3747.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc3748.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc3778.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc3780.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc3781.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc3782.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc3799.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc3801.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc6601.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc6602.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc6603.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -81012,7 +80717,6 @@
{ "name": "lc7979.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc7979g.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lc8.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8005.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8181.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lc8835.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -81755,7 +81459,6 @@
{ "name": "2y3x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "5i.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "608vets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "77dd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "88740b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "a2ch.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "a3mobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -81785,7 +81488,6 @@
{ "name": "andriraharjo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "annuaire-auto-ecole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "antispamcloud.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "aorosora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "apex.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "apirest.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "appliancepronwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -81798,7 +81500,6 @@
{ "name": "auksnest.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "austerevisuals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "avonvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "badmintonadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bangkokcookingclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bavomaes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beargoggleson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -81939,7 +81640,6 @@
{ "name": "floristik-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fluffy.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "flyersmarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "forum-4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fotoblog.nrw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fourfourcrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fromtheboxoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -82702,7 +82402,6 @@
{ "name": "netzwerk-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "newyorkhiltonmidtown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nextechoax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nguyendiep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "noranowak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "notedinstyle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nougat-anduze.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -82832,7 +82531,6 @@
{ "name": "taskhorizon.audio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tebebo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tech4arab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tekingb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tektouch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theangelfishfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theclonker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -82907,7 +82605,6 @@
{ "name": "yourname.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yuan.nctu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yuxiangyuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "zfj.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zhongxigo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zihun.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zngay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -83237,7 +82934,6 @@
{ "name": "crazycube.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "creditmonkey.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cryptotrendclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ctor.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cuitandokter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cupcake.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "curontwerptoolgroenbeton.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -83378,7 +83074,6 @@
{ "name": "feistore.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feng-in.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feng-in.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "finanskredirehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "finsecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "firstcolonyengraving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "firstversionist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -83697,7 +83392,6 @@
{ "name": "sjenkins.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "skipbounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "skysoftbg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "smcquistin.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "smithsanchez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "soslsd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spotlabs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -83726,7 +83420,6 @@
{ "name": "tauerperfumes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tche.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "techfishnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "techie-show.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tennisportal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tezwifi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thaiteaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -83764,7 +83457,6 @@
{ "name": "uurl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ux-solution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uxsto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "v-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vaaes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vastgoed-lidl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vbezhenar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -84059,7 +83751,6 @@
{ "name": "departureboard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "derival.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "descargarwhatsappplusgratis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "diablocarpet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diaconat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diariorp.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "digitalgyan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -84199,7 +83890,6 @@
{ "name": "johnnybetstaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jonesfor.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jonincharacter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "jorganicsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "journaldesvoisins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "julian-miller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jw.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -84428,7 +84118,6 @@
{ "name": "retirementsolutionva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "revolware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ricardojsanchez.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rice.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "richviajero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rigintegrity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rinzler.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -84837,7 +84526,6 @@
{ "name": "flugrecht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fourwaysplumber24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "freeinfos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fundamentalsofaccounting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funidelia-tr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funidelia.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funidelia.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -84986,7 +84674,6 @@
{ "name": "locationfontaine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lojastec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lornabenes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "louiscap.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "loveni.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lovessentials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lovink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85212,7 +84899,6 @@
{ "name": "wordfence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "workinghardinit.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "workinnorway.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "worldwaterprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wouterbruijning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wprecommend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wpresscoder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85236,7 +84922,6 @@
{ "name": "zubar.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zyellowbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "0chanru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "0de3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "0kun.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "10xnation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "1234888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85624,7 +85309,6 @@
{ "name": "ouestfrance-auto.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "outingexpert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oyk19bgxj8ljpete71edj2tes-9i4oai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pacificspraydry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "palatetotable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "panavision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paradisestore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85638,7 +85322,6 @@
{ "name": "petstoredog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pexxi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pinkbuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pishifu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pjylb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "plus15.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pochoden-praha.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85809,7 +85492,6 @@
{ "name": "2138vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "222138vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2345678365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "2378.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2bet86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "3007337.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "33138app.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -85893,7 +85575,6 @@
{ "name": "age-encryption.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agencesaintpierre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agproducts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "agremo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "albergolafiorita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "alfadlmedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "allentertainment.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -86018,7 +85699,6 @@
{ "name": "brk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brujoincaperuano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brujonegroperuano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "btsybt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "buhayprincipal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "buildingbitcoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "buzzrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -86162,7 +85842,6 @@
{ "name": "e-account.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e-bap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e-bookshelf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "e2a.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e4.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ebill.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "echo-n.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -86174,7 +85853,6 @@
{ "name": "elarmariodelucia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elbaladshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "elitelatinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "email.repair", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "embebelo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "embonus.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "emmamillernovels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -86544,7 +86222,6 @@
{ "name": "pmg-p4p.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "poemerx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "poemerx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pollybarks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pompeii.tickets", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "popup-stores.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pornabee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87109,8 +86786,6 @@
{ "name": "mm88game.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "msieursvp.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "musings.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "my-amigo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "my-ccleaner.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "my-photo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "myweatherbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mzitu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87235,7 +86910,6 @@
{ "name": "vitanyi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "votra.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "w51365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "walruscode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wangzhe100.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "watertorenstraat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wdmcheng.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87303,7 +86977,6 @@
{ "name": "agagent.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agahi90.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agds.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "agonworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "algustionesa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aliancapelobrasil.rio.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "alimentsduquebecaumenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87474,7 +87147,6 @@
{ "name": "matthijsvos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maxi-corp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mayblossom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mdhosting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "meherbaba.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "memoriadeunaciudadzccm2019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "midrandrubbleremovals.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87525,8 +87197,6 @@
{ "name": "petitu.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "phongthuyhoangmanh.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pier1url.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pk8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pk9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "planettimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "plantsupplement.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "play-the-furyu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87787,7 +87457,6 @@
{ "name": "byhenryvera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cachchoi138bet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cake-n-go.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cakedesignsbyjaclyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "californiamusicacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "camclips.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cantinhodosossegosaojose.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87811,7 +87480,6 @@
{ "name": "coondesign.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cornelia-schiemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "coteax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "countrysmile.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "covert.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "credit-10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crossorig.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -87856,7 +87524,6 @@
{ "name": "empreinte.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "eoy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "epsi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "espacioprofundo.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "etkarle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "etutsplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "evokewonder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88001,10 +87668,8 @@
{ "name": "nwh.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "o2ss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "octopus-cs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "odontologia-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "offcasesstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "offermann-koeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ohsweetart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "onthegosystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "orbeimaginario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oshea.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88178,7 +87843,6 @@
{ "name": "yxbet43.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yyr.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "znbr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "zoftbaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zusterjansen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zwilla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "11ag8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88406,7 +88070,6 @@
{ "name": "agvip2008.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agvip2013.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agvip986.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "aiden.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aiwansky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "akay.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "algoritmususpechu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88453,7 +88116,6 @@
{ "name": "crestasantos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crowdstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cubeo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cyclowiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "d64.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dannyrohde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "datenschutz-gruenwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88786,7 +88448,6 @@
{ "name": "zz772.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "120percent-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "1244546066.rsc.cdn77.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "137kb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2x.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "3d-glow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "3deni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -88830,7 +88491,6 @@
{ "name": "affcoupon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aflattr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "afpayday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "agambarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agencybeam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "agripartner.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "airalamo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -89094,7 +88754,6 @@
{ "name": "disinfestazione.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diskussionsbereich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dlmit.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dochub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dolarenmexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dolcett.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dolphinaris.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -89275,7 +88934,6 @@
{ "name": "hinderlider.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hinota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hiphop2gif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "historymuseumsb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hjallboscoutkar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hjdiaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hjosh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -89525,7 +89183,6 @@
{ "name": "newlegalsteroid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "newsheaders.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nginx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nicolasfriedli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "night.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nineteensixtyone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nishiyama-shoten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -89779,7 +89436,6 @@
{ "name": "simonheung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "simplechoicesuper.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sindastra.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sinnvoll-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sinvideovault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "siri.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sitethe.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -90214,7 +89870,6 @@
{ "name": "cluboc.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "codeetch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "codestats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "codezenith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "coffeeshopsandman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "coinmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "colinshark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -90371,7 +90026,6 @@
{ "name": "fitandfightrijswijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "flamencoexplained.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "flatart.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "floorrestore.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "flowscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "force-unleashed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "force-unleashed.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -90921,7 +90575,6 @@
{ "name": "sporthouse-valdisere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spotonlive.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sssljohannesburg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sstr5.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stallardjw.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "starrymc.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "starsdream.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -91049,7 +90702,6 @@
{ "name": "vetscore.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vetsmarketing.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vetwebsuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "vgs.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viditour-golf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viditour-zorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "visyeva.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -92613,7 +92265,6 @@
{ "name": "bbk365m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bbk365t.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bbk365zz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bellapierre.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "berzkalne.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "besiktasmtsk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bestsellers.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -92851,8 +92502,6 @@
{ "name": "marketingproducts.review", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "marketwingsmobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "matchday.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mathleaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mathleaks.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mauroalejandro.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "meandb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mecp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -92918,7 +92567,6 @@
{ "name": "pomadgw.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "priceless-jewelry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pro100blogger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "projectvault.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prospreads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prox.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "proxybay.uno", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -92942,7 +92590,6 @@
{ "name": "regtify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "renewablepedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rentamosandamios.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "romsp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ronhose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ross-mitchell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rowery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -93132,7 +92779,6 @@
{ "name": "azur.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "baity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bangun.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "baobaojihua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beakbirds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beleadsteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "benthanhtourist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -93486,7 +93132,6 @@
{ "name": "arnaqueoufiable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aszurkolassport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "baumfreund.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "beginwp.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bio-feed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bmotorsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bmros.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -93518,7 +93163,6 @@
{ "name": "do168.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dojocasts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "drryanstanton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "duredo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "duttur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dylanhansch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e2ebrindes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -93954,7 +93598,6 @@
{ "name": "broilertrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brokerstalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brunnenhof-welze.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "brunoarruda.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bs3xy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bsystem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bt121.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -94367,7 +94010,6 @@
{ "name": "essethon.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "estumarca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "eviadc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "evitacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "exoticspecialist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "explorecams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "extrememusclepump.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -94579,7 +94221,6 @@
{ "name": "mokamelhaa.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "money-spell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moreyalta.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mossan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "msa.bank", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "msaludasuhogar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mt-caza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -94607,7 +94248,6 @@
{ "name": "nexalis.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nextvery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nhadatpho.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nibrasfashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nintendoreporters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nkuxlogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "noirpvp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -95470,7 +95110,6 @@
{ "name": "arkhangelsk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arkhangelsk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arkhangelsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "arknights.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "armado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "armageddonclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "armandocorazones.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -98496,7 +98135,6 @@
{ "name": "hotscripting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hotsmi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "how-to-build-computer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "how-to-pc.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "how-to-write-a-book.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "howlers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "howmuch.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -103308,7 +102946,6 @@
{ "name": "unusualworldd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "up-obmen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "upbound.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uploadscript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "upmail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "upmusics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -103881,7 +103518,6 @@
{ "name": "xice.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xinja.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "xlhdh.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn------7cdabibmbihbgykn8elfdbfgbeqxmlc3a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn------7cdbfcbc0ab6akhadmzphmbibhebcc7b0ahshon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn-----6kcbb0cahbiskdv1bcj5c7g.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -104496,7 +104132,6 @@
{ "name": "idweblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "igust4u-archive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "imboom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "infralicht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "initiative-3d.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "insertface.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "inventaliber.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -104639,7 +104274,6 @@
{ "name": "pauct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pchan.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pdimitrov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "peatsuki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "physiotherapie-kobiella.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pixelflex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "polebarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -104825,7 +104459,6 @@
{ "name": "bigtexasbeerfest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bitcoin-youtube.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blackbbwvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "blueberrywinery.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bluheron.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "borza.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bosiquanao.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -104866,7 +104499,6 @@
{ "name": "clevyrlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "click4click.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clinicasesteticas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cloudmyhome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cloudmyhome.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cloudmyhome.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "codetrack.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -104925,7 +104557,6 @@
{ "name": "erichoins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "erkkiaronen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "erulezz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ethernia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "etindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "eve.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "exaduosport.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -105047,7 +104678,6 @@
{ "name": "lasmoarquitectos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "laurabailo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lbpc.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lbph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lechompenchaine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "leenaluhtanen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lefilradio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -105502,7 +105132,6 @@
{ "name": "happywheels1.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hdmovies.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "healthynutritionguide.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "heeftmijnwebsitehttpsnodig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hermiyanto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "herychreality.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "horos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -106244,7 +105873,6 @@
{ "name": "pokermix.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pool-selber-bauen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "porm.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "porowneo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prelogica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "presensio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "previous.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -106290,7 +105918,6 @@
{ "name": "sipln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "smaden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "smikom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "snitch.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sntial.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "socktopus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sophiegraceshields.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -106409,7 +106036,6 @@
{ "name": "a-colorful-life.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "abaca.bar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "acina.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "acrowebs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "adiscorduser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "adopt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "adrianasantos.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -106774,7 +106400,6 @@
{ "name": "progenixlab.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prosperfit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "provinzblogger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "pschunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "psychotiq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "publish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "purestkratomusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -106977,7 +106602,6 @@
{ "name": "artesaniaselmagodeoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "artisansofsleep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "artizlibranza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "asabharwal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "asalearn.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "assignmentshelp.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "asthma-explained.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107218,7 +106842,6 @@
{ "name": "hottestguyoftech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "howtocurekennelcough.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "htsm.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hunhee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hushbabysleep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hypertensionexplained.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hypno-thera.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107238,7 +106861,6 @@
{ "name": "inscomers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "inspas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "institut-coiffureetnature.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "international-books.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iosbankermyanmar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "itbog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "j5y.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107333,7 +106955,6 @@
{ "name": "mysafetygear.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mysciencecloset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "na-n.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "naehtalente.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nakarkhana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nako.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "narda-sts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107415,7 +107036,6 @@
{ "name": "rgb2hex.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rgfundraising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rohitpatil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rosskopfs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rostirolla.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rtl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rtonin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107423,7 +107043,6 @@
{ "name": "rx-diet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ry88url.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sandtime.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sanemind.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sanskrit.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sb-graph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "schwimmschule-kleine-fische.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107472,7 +107091,6 @@
{ "name": "telosotec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "teners.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tenkiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tf2pickup.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tfus.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thailandguru.properties", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theanimalshadow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107589,7 +107207,6 @@
{ "name": "asg-egy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "asianet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "astral.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "atilo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "atmydesk.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "atthehelmins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "auk.hopto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107601,7 +107218,6 @@
{ "name": "bellevueduilawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bigbeats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bingchunmoli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bismi.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bito3d.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blankpage.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blue-olive.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107614,7 +107230,6 @@
{ "name": "bravoasociados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "burz.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "burz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "burzgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bwmcnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "c1cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "c30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107848,7 +107463,6 @@
{ "name": "marmor-resmini.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "matdesign-prod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maxratmeyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mc5zvezd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mejorator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mejorator.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mejorator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -107909,7 +107523,6 @@
{ "name": "onlinefurniture.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "onporn.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oo30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "openalgeria.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "optitaxes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "orcz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "orsal.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -108100,7 +107713,6 @@
{ "name": "the-deep.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theconversation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thecoorgfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "thecracks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tietotori.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tillmanassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tlroadmap.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -108137,7 +107749,6 @@
{ "name": "uyz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "v30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vaat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "valorantpicker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vampireapocalypsesurvival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vbabe.tube", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "velorail01.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -108155,7 +107766,6 @@
{ "name": "w30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wagn3r.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wainbholle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ward.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wargov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wildbergh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wilmingtonzen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -108171,7 +107781,6 @@
{ "name": "ww30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "x30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xin365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "xmediz.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn--rechtsanwltin-paderborn-37b.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xx30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "y30019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -108329,7 +107938,6 @@
{ "name": "drjungspine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dunangel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "e5xbps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ebcfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ebuyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ecohousejapan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ecologiahoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109015,7 +108623,6 @@
{ "name": "lojaonlineshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "loopcore.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lost-in-place.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "maianhtravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maiotik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maison-coutin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maksimyugai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109123,7 +108730,6 @@
{ "name": "sarkarinaukriworld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sb-webdev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scan.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "schwb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scphotography.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "seestersmexicancantina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109148,7 +108754,6 @@
{ "name": "soulplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spfl.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sprayontv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ssshh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "starseersprophecy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "statefundca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "statefunddirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109215,7 +108820,6 @@
{ "name": "uu939.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vagabond.film", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vanessailustracoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "veracruzti.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viatvperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "victoria.associates", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vincexpertconsulting.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109240,7 +108844,6 @@
{ "name": "xerbisworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xiaobai.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn----7sbq4auch5b4b.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "xn--6n2ao17b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn--c1aapkosapc.xn--80asehdb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn--dy-via.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xpertsunlimited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109249,7 +108852,6 @@
{ "name": "xpsauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xpsautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xvaldezendocrino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "xyz.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yamanami.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yourcrypto.tax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zamtech.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109292,7 +108894,6 @@
{ "name": "auxessenceselfiques.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "awoau.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bakerbasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bamheroes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bcome.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beauty92.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beautyest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109428,7 +109029,6 @@
{ "name": "grupo-zoom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gsa-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gsaauctions.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "habana.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hdevent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hekoro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "heliumbrno.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109592,7 +109192,6 @@
{ "name": "presgrp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "private-relay.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "privatepilot.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "prospect1838.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "putchiconsultorias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rahulgupta.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ranters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109892,7 +109491,6 @@
{ "name": "ferad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fernandezvilar.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fibune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "findcheap.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fleeb.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "flowlytics.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fn-0.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109934,7 +109532,6 @@
{ "name": "illuminaterecovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "immijobs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "immobilier-swiss.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "immoe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "inoreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "instaart.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "invisitone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -109957,7 +109554,6 @@
{ "name": "kimino-school.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kinetikos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kiseki.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kitaplus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kreuzbergflieger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kstasinos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "labels.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110185,7 +109781,6 @@
{ "name": "twilo-host.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "txyz.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "typesofdogs.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ubsolutions.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unblockedgames.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "up.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uradvd.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110241,7 +109836,6 @@
{ "name": "zotan.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zotan.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zotan.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "17avolemsaberlaveritat.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2vp-an.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "360kuvia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "360prokuvat.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110313,7 +109907,6 @@
{ "name": "cardschat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "carevo.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "carsonkoziol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "caumont-normandie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cbcf.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cbd-oil.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ccaguavivadonaciones.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110440,7 +110033,6 @@
{ "name": "gentlentgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ggld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gharbala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ghyvelde.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gloryhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "glpreparation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gms-records.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110494,7 +110086,6 @@
{ "name": "kadmirra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kaleylocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kalpavriksh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "karting-normandie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kennedy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kennedy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kinderosteopathie-osteopathie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110513,7 +110104,6 @@
{ "name": "kryptoforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "la-vraie-histoire.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "laby.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lacatta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lamaturitadidaniele.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lambda-calculus.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "leidegoncalves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110562,7 +110152,6 @@
{ "name": "mineralnibani.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minetrack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "modulkuhni.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mon-dolibarr.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "monidenum.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "moustream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "muellercustombuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110598,7 +110187,6 @@
{ "name": "notrero13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "npc-ts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "offgridbound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "office-dolmetscher-scharnagl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "okmaybe.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "olajcbd.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oofishing.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110739,7 +110327,6 @@
{ "name": "triedandtruebytrista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "trussgenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tryin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ts3.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tschang.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ubetoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unblockit.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110859,7 +110446,6 @@
{ "name": "bent-nails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "besate.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bgm.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bieville-beuville.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bigcountry.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "biocbdolej.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "biocbdolja.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110869,7 +110455,6 @@
{ "name": "blockexplorer.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blockfi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "boostplm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bouville.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brownwrapper.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "buggiano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bunbun.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -110916,7 +110501,6 @@
{ "name": "couplesapp.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cpgiiaragon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "craftyproducts.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cresserons.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cristaleslitios.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cronjob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cryptoeighty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111226,8 +110810,6 @@
{ "name": "rioinbox.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "riverdale.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rurian-gyohen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "saint-aubin-sur-scie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "saint-leonard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sakiborislam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "samanexports.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sechssiwwe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111304,11 +110886,9 @@
{ "name": "vedshastradata.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "velocitycu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "venturebum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "veules-les-roses.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vfxstudy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viera.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viewpointsfromfacebook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "villers-ecalles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vinc.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "voetbalquizkopen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vogue.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111343,7 +110923,6 @@
{ "name": "ysoft.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zappy.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zero-skill.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "zigao.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "12gramu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "1ii.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "2isk.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111457,7 +111036,6 @@
{ "name": "cupomia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cyric.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dafunda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dalat.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "darxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "debut-mebel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "decorations-elmotamaiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111519,7 +111097,6 @@
{ "name": "flibanserina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "foodyshoody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "foro.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fotografoivanalmeida.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "freebasics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funtimeusabiloxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gabe.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111553,7 +111130,6 @@
{ "name": "hiker.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hirosehp.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hispasys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hitechweirdo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hochstift-party.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "holdmybeer.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "holywr.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111757,7 +111333,6 @@
{ "name": "productivemachine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prosperos-services.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "prostaglandina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "psd2.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pvpzone.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "pylad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "quacc.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -111878,7 +111453,6 @@
{ "name": "twilightscans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "twojajurata.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "udemydownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ulement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "umaykan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "umo.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "unblockit.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112234,7 +111808,6 @@
{ "name": "leleimports.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "levis.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "levisenlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lifeskills-education.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lindazi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "linkinsta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "livinkitchen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112352,7 +111925,6 @@
{ "name": "ripplenews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ripplenews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rjicpas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rodrydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roofdoctorutah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roolnews.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rosdpk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112361,7 +111933,6 @@
{ "name": "rydeify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "samurai-implant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sanin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sankyo-sys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sapienza-eclipse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sapienzaconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scindustries.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112389,7 +111960,6 @@
{ "name": "spacelandpark.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stad.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stanzolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "startnowmakingmoneyonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "startup-lab.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steamcleaning.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steamid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112448,7 +112018,6 @@
{ "name": "tronnews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tryingtotakeoversweden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ttwt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "twigandolive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ucero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ultimadivisao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uniekglas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112643,7 +112212,6 @@
{ "name": "dollarhero.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dolys.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "donarmany.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "doodlebeads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "drillcalendar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "driveral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "droidtuto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112694,7 +112262,6 @@
{ "name": "franchiseguide.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "francuskie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "freenetflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "freethehustle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ftx.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "funreaktor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fureais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112732,7 +112299,6 @@
{ "name": "hardhatengineer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "harrisexteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "helco.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "helpwaarbenik.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hkl-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hoistsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "holyfamilychurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -112969,7 +112535,6 @@
{ "name": "satyamshivamsundaram.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "saul-eslake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "savewithtrove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sayurstock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "scoresensei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sdelatmrt.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "secrets-marketing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113027,7 +112592,6 @@
{ "name": "surnet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sylino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "t-dent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "tacworldusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tafusu-support.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tappyshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "taylored.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113040,7 +112604,6 @@
{ "name": "thediabetesnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thegoodheartedwoman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theracismforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "thinkscar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "threatdetection.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tinkmai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tobyx.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113264,7 +112827,6 @@
{ "name": "duval.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "duval.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "duval.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dvn.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ecampusontario.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ecgclic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ekoclin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113278,7 +112840,6 @@
{ "name": "epicapos.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "er.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "erinmyers.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "eucimen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "everaerts.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "eyesee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "faceyogaforyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113291,7 +112852,6 @@
{ "name": "firstbaptistjeff.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "firstclass.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "firstmarket.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fitnessrogue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fivefortheroad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fiveloaves.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fleetster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113649,7 +113209,6 @@
{ "name": "topupandearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "totnhatvina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tpnky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "trimtone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tripguide.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tusupermercado.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tuzor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113763,7 +113322,6 @@
{ "name": "bazarfds.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "behavhealth.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beko.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bestkitchenbuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bet031.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bet531.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bet631.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113786,7 +113344,6 @@
{ "name": "byteultra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "byw.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "c-rpg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "c52iv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "calibracionhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "calixa.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "callamnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -113798,7 +113355,6 @@
{ "name": "case3d.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "catchall.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "celebphotos.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "celebrities.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cendis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cerbottana.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cgmagonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114144,7 +113700,6 @@
{ "name": "spacecovers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "speakermatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spyse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ssslinstallers.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "start-school.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "steelfirm.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "stefamedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114197,7 +113752,6 @@
{ "name": "trilhasdeconhecimentos.etc.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "trimental.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "troubleshooter.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ts3.gs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "tubemaze.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "turkup.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "turlewicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114506,7 +114060,6 @@
{ "name": "guiadeprofesionales.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "guiaminhasaude.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "guiaturismovallarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "guusu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "handyoutdoorgoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "havendetoxnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hbr.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114591,7 +114144,6 @@
{ "name": "meaqua.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "medidordecampo.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "metalmonocle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "michaelglaser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "milr.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minermonitoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "misclick.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114680,7 +114232,6 @@
{ "name": "risecomedy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rixcloud.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rockset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ropingsupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rtestore.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "saludakeuring.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "saygoodbyetoie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114794,7 +114345,6 @@
{ "name": "xion.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xn--6m1a86p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "xvpn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "xxzacg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yardandgardenguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yasminedewolf.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yousifsaeed.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -114862,7 +114412,6 @@
{ "name": "betawi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bhacit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "binproz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "biocbd.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bitcoinissafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blankhang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blender.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115035,7 +114584,6 @@
{ "name": "lojavirtualinfopaper.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "louiselaliberte.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lynkmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "maashoefer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "magdafornal.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "magicalminkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "maratonsports.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115157,7 +114705,6 @@
{ "name": "speakeasy.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "spike.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "star.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "storlead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sudoash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sumit.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sunroomsbywoodland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115202,7 +114749,6 @@
{ "name": "veosvending.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "verdeplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vidimte.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "vive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "voinuocsago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vov.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "w-e-b--s-e-o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115362,7 +114908,6 @@
{ "name": "devensys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "devs.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "diadoc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "digitalstudios.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dikant.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "disougstroy.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "distributed.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115487,7 +115032,6 @@
{ "name": "ireiguam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "isekaimaid.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ivs-romania.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "janitorutah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jaydensar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jaynestephenson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jmanalansan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -115577,7 +115121,6 @@
{ "name": "nedcv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nehnutelnosti.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "neighbor.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nerdmachina.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nesheimswaterrestoration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "netrustcontractor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "neurologysantamonica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116180,8 +115723,6 @@
{ "name": "fedshat.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "feirasexpomadeonline.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fersan.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fertilityspace.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "fidelitybank.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fifaaddict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "filehorsefile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "financialhost.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116228,7 +115769,6 @@
{ "name": "fun-life.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "furlan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fusionstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "futiwolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "futureofsex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fztsoru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "gadgetadvisor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116373,7 +115913,6 @@
{ "name": "jeremyrobinlyons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jetcost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jobig.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "jobkaka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jointechforce.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jonathanrobichaud.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jpegshare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116425,7 +115964,6 @@
{ "name": "kwik.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "l9297.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "laboiteasous.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "labworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lacnesidlo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ladige.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lamergameryt.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116490,7 +116028,6 @@
{ "name": "marisolcu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "marketingmind.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "marketplace.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "markha.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "matejkosiarcik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "materi.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mathieugrant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116746,7 +116283,6 @@
{ "name": "sexonv.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shakardara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shapingthebay.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "sharebee.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shiuki.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shop-links.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shopshap.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -116968,7 +116504,6 @@
{ "name": "yourkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yourrenaissancemedspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "youthopportunitieshub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "yoys.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "yuksinau.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "z.cash", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zagorod.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117017,7 +116552,6 @@
{ "name": "aprofunda.art.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "aquacitylands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arbolesdenavidad.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "arifpurnama.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arpasix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arpasix.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "arpasix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117040,7 +116574,6 @@
{ "name": "billy.wales", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "binabangsaschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "biologichemp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "biomon.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bioselect.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "biuaxia.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "blastoise186.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117222,13 +116755,11 @@
{ "name": "laptopcloseout.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "laricameche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lcwebsite.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "leesa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lefroyee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "leontworzy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lepalierjuridique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "letsbrand-holding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "letsbrand-holding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "letsbrandholding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "letsbrandholding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "letweedoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "levelninehvac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117239,7 +116770,6 @@
{ "name": "limc.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "liveandinvestoverseas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lleidanoticies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "lojameuredentorvive.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "lovelyfamilymm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "luparacoes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "luxegram.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117260,7 +116790,6 @@
{ "name": "miltau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "miltau.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mindera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "miniso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "miniso.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "missouriheatingcoolingadvice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "missyapartman.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117399,7 +116928,6 @@
{ "name": "tutorials.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "twidy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ucphotography.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "um.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "urologyspecialistspc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vante.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vilgain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117498,7 +117026,6 @@
{ "name": "berightthere.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "betantt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "beykozmekan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "bikriads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "bonusdigital.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "boxofninjas.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "brandt.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117525,7 +117052,6 @@
{ "name": "clarins-unlimited.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cloudprints.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cmsdca.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "cncn3.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "codelistbd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "coenraets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "colegioalemanmcbo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117701,7 +117227,6 @@
{ "name": "mediaweb.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "melikecapkin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mendosuits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "miaovps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "michaelwmckinney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minimal-website.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mission-gesundheit.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -117724,7 +117249,6 @@
{ "name": "npath.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nrf.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "nutrindoideias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "nutsforfruits.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oase-fuer-wohlbefinden.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "obalky-obaly.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ocsamochodu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118011,7 +117535,6 @@
{ "name": "darcyinspired.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "denizsartdiary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "designconformitylibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "desiskinscience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dieselfiltersonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "digi-tec.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dijitalzade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118103,7 +117626,6 @@
{ "name": "inwerx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iqtek.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "iriscddg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "ivetdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jaredkunz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jave.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "jetlaggroup.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118158,7 +117680,6 @@
{ "name": "mayflowerfairytales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mcsdatum.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mdcallianceparty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "mdnailspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "medicardlimited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "meetanshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "megalogi.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118169,7 +117690,6 @@
{ "name": "microl.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "midnightcity.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "miku.bar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "milon-apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mindthe5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "mindthe5.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "minka.net.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118206,7 +117726,6 @@
{ "name": "openchronicles.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "opticamasvision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "originalgyms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "owncloud.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paclease.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paganismguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "paintlabcustom.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118308,7 +117827,6 @@
{ "name": "thecigarlibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "theeuropeanlibrary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thehomeofthefuture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "thehorsesadvocate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "themevilles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thevirtuousdog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "thewebguru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118360,11 +117878,9 @@
{ "name": "vanvanlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vashmatrass.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vineethavarma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "vlice.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wadebet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wake.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wartabangsa.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "waukeshairon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wealthyspeakerschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wearesuma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "wemakeit.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118396,8 +117912,6 @@
{ "name": "4929.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "4kvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "4web.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "808hao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "a-fx.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "a-r-t-house.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "acahaymarket.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "acgfuli.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118470,7 +117984,6 @@
{ "name": "classyhandmade.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clever-fit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "clgb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "code1llp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "code4u.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "compraenpijama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "comprax.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118501,7 +118014,6 @@
{ "name": "discuss-data.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dollanid.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "drkansal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "dynamitejobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "dzimchuk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ebusiness724.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "edv-biela.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118577,7 +118089,6 @@
{ "name": "indomanila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "innova360.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "instacredito.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "insurancemarketingcoach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "investingent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "invidiou.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "itbrief.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118594,7 +118105,6 @@
{ "name": "kazy111.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "keepitsimplebitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kekarimi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kieyne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kingcourriel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kinvault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "klimaatkids.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118604,9 +118114,7 @@
{ "name": "kontur-buhta.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "koobin.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "koobin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kora-pluss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kottbulle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "kriptodede.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kritical.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kubota.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "kubotagear.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118876,7 +118384,6 @@
{ "name": "carimcoder.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "casadilanga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "catcat.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "catpic.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "catpumpsonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "certreg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "chaoxi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118898,12 +118405,10 @@
{ "name": "codedbyjim.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "comercialtech.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "comisarul.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "conservativecore.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "corvaglia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cotejardin.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "councilwise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "cpaporttraining.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "craveativemedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "creatapeak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crowdstrike.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "crypt-app.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118949,7 +118454,6 @@
{ "name": "exact-online-apps-by-invantive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "experimentrak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "experimetrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "extrabits.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fackovcova.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fackovec.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "fan911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -118999,12 +118503,10 @@
{ "name": "gsiw.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "guanggaonet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hackathonjr.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "haigle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "happywater.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hax.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "healthyfoodster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "healthykitchen33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "hermitant.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hifly.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hipo.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "hodor-stage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -119127,7 +118629,6 @@
{ "name": "onporn.tube", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "onthewaypodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "operd.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "opinandosannicolas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ostendus.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "oudedokken.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ours-tudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -119178,12 +118679,10 @@
{ "name": "rentnow.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rico-j.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "ricreare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "riku.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roi-project.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "roi-project.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rot256.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rtc-israel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "rust.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "rvecomercio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "s20121946.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "safetymeasuresas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -119200,7 +118699,6 @@
{ "name": "sedirector.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sensitidolls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "seo.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "shareiva.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "shira-diamonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "sintpietersabdijgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "slalix.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -119267,7 +118765,6 @@
{ "name": "unikainfocom.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "uyuniscooterluggage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "vaneyckexpo.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
- { "name": "varoscak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "verhaltenstherapie-weiden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "verius.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "viasyscorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
@@ -119305,6 +118802,2785 @@
{ "name": "zorox.sex", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zporno.sex", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
{ "name": "zz.gy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "104.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "14technology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "2-euromuenzen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3987.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3dagentur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "4peace.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aalvarezs.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abandoned.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aboticaprodutosnaturais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abplive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "absb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "access-odata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "adomicilio.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "adscambodia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ae86.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aeolservice.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "afas-apps.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aisteru.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akhepcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akiekintveld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akinokae.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alanonsantabarbara.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alaskacruises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alles-kan.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alleskan.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "allesuitdekast.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "allureonparkway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alternative-reussite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anasaci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anja-vastgoed.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anneeden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ansellchallenge.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apartamentscalpatoi.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apex-parts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apfnxg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "appdrafter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "appfolio.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aqiqahpremium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arabi-online.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "argentinaxp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "asecus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "astrophena.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "attain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "auify.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "australianairbrushedtattoos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "balibells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bancoserfinanza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "banglatypography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "baysideaba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bazar.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "belmundo.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "belmundo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "benee-awraham.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "berela.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beroepenhuis.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestliege.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestofdrama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bigeasyfences.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "biokemonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blauequelle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bluetroodon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bootlesshacker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "borman.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brandweergent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bsf-knowledgecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "btraviswrightmps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "businessdrive.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "butcherpaxtattoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "calvadia.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "catme.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cbca.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccdiscussion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccdlab.ooo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccpaas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chadoisaac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chamber.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cheyennelohnen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "christopherpfister.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chromebookcompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clevyr.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cloudandco.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cmfcuro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cocula.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "code9000.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cogknockers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "commonapp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "company-info-plugins.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "compareicomprei.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "contentyouproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cottica-kwaka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "covid19.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "creditkarma.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crescentcityironworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crowdfavorite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cruisecheap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cruiseguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csarchispace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csimarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csitarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "css-krebs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cultuurinonderwijs.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cursive.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "customhash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cxda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cyberinc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cybernest.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cybertik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cycling74.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dachshundtalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dashboard.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dashboardph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dashboardphilippines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "data-access-point.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "data-loader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "data-replicator.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "data-replicator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "database-excel-integration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "database-word-integration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "databasedrivers.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "datnenhamiltongarden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ddjia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dealstream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "decathlon.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "defenceenterprise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "defietsambassade.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "defietsambassadegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "delawarehousebuyers.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "devinslick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dewingerdfreinet.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dfwm.vote", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dfwmv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dfwmv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dfwmv.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "difc.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dld.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dmwaste.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "docsend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dokidokimodding.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "domowejroboty.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfuckwithmy.vote", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfuckwithmyvote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfuckwithmyvote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfuckwithmyvote.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfuckwithmyvote.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfwithmy.vote", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfwithmyvote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfwithmyvote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfwithmyvote.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontfwithmyvote.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "draakjefosfor.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dragonfosfor.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drivesly.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "e-servicerms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ecovetawindoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eduroam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eemoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eko-vitalis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eljay.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elontime.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emaratalyoum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "endzeit-architekten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "energozrouti.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enotecabortone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eredmenye.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "es-sicherheit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "espirituracer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "esportslac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "essentielsduweb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "euro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ewatchers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eworkflow.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "extremecleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ezshopper.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "faapart107certifiedpilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fabiobarros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "faboolus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "feedclean.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fietsambassadegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "finance-equation.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "findenmed.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "findmespot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "finvantive.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fixfix.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flagma.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flagma.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flagma.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flashlearners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "foodsavers.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "foodsaversgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "forsigo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fortnite.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "forzamotorsport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fraservalleyhotdog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "free-sql-query-tool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "freshdesk-apps-by-invantive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fuiveningent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fumo.reisen", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gabrielg.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gameship.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "geestelijkgezondgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "genealog.ong.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentblogt.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentbrugsemeersen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentcongres.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentcongres.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentcongres.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentevenement.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentsefeesten.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentsefeesten.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentslimopweg.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentverwent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "get-my-report.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ghentfilmoffice.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ghentlivinglab.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gidive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gitlab-apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "globalstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "glorycamrealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "go-site.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goldenowl.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gorodrabot.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goskills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "graceikahu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gravensteengent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "greatergood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gruppa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gsiw.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "guidesetc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "h6p.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "h8p.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hairmitage.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hastavem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "havohravo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hawat.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "help-me.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hens.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hhxiaozhan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "himg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hirtz.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hof-rijnland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "holdport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "homecinema-fr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hulpverleningszonecentrum.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hunterpetstore.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "icesemulator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "icruise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ideditorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "imamenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "immortalcorporation.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "immortol.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "indianarmy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "infintechdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inglesfoco.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-for-dynamics-crm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-for-magento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-for-nmbrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-for-salesforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-for-stackoverflow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-voor-exact-online.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-voor-loket.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive-apps-voor-xml-auditfiles.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "invantive.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ironraven.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iu.edu.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jandesign.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "javedhasrat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jeremy.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jongenwijs.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "joshu.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "justin3d.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "justyardsign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kaibinyang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "katewrightmba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "khimno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "khotool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kinderopvang.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kingfast.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kingfin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "klapty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "knabden.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ku.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kylinseating.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "labambi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "laginghanda.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lamei-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leadgem.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lekota.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lenczewski.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lennar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lepkov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lez2020.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lez2020.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestivalghent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lindbladcruises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "liuqiao.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "livinglab.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lligwy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "loackerbusiness.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lucasferraz.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lumpov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lyricfind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "macioszektv.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "madisonivy.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maeterlinck100.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maisonanimale.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maizuru-ongaku-kan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "makasetesan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "makhmudov.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mariowiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maximemalfoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mealsnmemories.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meayne.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meiersmarkus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meldjeaan.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "memorablewords.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mendix-apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mgriff.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "miatgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "midasauctions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "millikart.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mirdon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mobiliteitgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mobiliteitsbedrijfstadgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mobitracker.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "modul8r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "montserrat.ind.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "movedigital.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "munkavedelemaruhaz.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mycoordinates.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mylearners.vic.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "myrealestateautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mzrme.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nagara.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "naranonsantabarbara.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nassconorfolk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "neemo.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nelefon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nerwa.vic.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "newmeproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nhsinform.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nmegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nolaautomotiverepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nomio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "npgcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nvsp.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nyawork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nyfurnitureoutlets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "octopus-apps.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "of2106.dnsalias.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oldcraft-mc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oliverjoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onderwijscentrum.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onderwijscentrumgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "online-sql-editor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onrealt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "openarchivaris.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orionadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oshens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ov-chipkaart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "palletsprojects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pampers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "passgamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pastelpixels.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paypodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pbo.vic.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "perceptionsaestheticspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pggalleria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pisearch.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pleiar.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pleier.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pocketdeer.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "politiegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "popimed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "povar.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "preserverollinspass.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "priestessbali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prm-parken.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "projectguru.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "promodoble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pt4.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "puzzleetc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qfes.qld.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "quickjobsfinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rajivdeepinsights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rasmushaslund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rawbeautysource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rbs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "redcarpetmonday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "regentcruises.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "regional-rabatt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "remwhile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "resellrefreshrepeat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "resmigazete.gov.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "restic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "richandsteph.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "richandsteph.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ripplemarkeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rollinspass.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "roostminneapolis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rsc.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rspevents.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ruimtevoor.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sacredsecondhandbooks.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "salebaba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saralmai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scrap-car-removal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sdguitdagingen.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sdipolanight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "searchlight.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seashkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "securesuite.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seoified.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seu.edu.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sevenwizes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sglazov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shareiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sharren.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shortbread.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "simplonevents.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sintbaafsabdij.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sintbaafsabdijgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sjout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "skyterraembrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "slimblogger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smartcar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "soldamontanhabeachwear.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sonimei.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sorbire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "soulconstructors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sounm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spcollege.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "speaklikeapro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "speeli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sql-query-tool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sslsecureproxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stadgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stadspaleizengent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stamgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "steeble.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stem16plus.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stolarstvi-jiriholy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "studentenmobiliteit.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "studiofpvet.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stylearray.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "successminds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sven.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "swha.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "symlink.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "system.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tagarelaskidseteens.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teachoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teamleader-apps-by-invantive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tecart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "techcult.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "techguidereview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "technavio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teeshirtspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teml.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tercosdemaria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "theitaliantimes.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thekitchenfarnborough.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thewrightflyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thiasil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timespreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timotheeduran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tinyhousesforsale-us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tiwilandcouncil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tolbertmgmt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "toulis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "translit.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trendyindi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trevacez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tridena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "triplesixdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tripoutside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trungtamvipkids.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "turkmenistanairlines.tm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tutiendadebdsm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tutormedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "twinfield-apps.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "two-step-verification.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ubcutah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "udid.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ujustsee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unikrnb2b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unleashfido.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "valuta-tools.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "varna-airport.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "velosity.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visitgent.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visma-apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visualstories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vivablogger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vredesregister.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vredesregister.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "water.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wayficdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webiroha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webkitchen.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wehealasone.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "weladee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wideweb.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "willocks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wishpets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wmcpaphysicians.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wmphonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wmphvacations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "woutiscoding.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wsjf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wuxian.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xbox-mag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xlaw.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn------8cdbtj4bleaohnv2bl3cuy.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--contrasea-s6a.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--d1acfdr6h.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yarnandy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yetivisite.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yishizuo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yolks.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yolosh.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yournextagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "youthingovernment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zorgenvoorjean.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zuffel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zulihome.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "0011011.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "01337.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "0xacab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1234.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "129.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "136book.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "14er.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "14er.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "14er.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "16321.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "16345.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "166killearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xtranslate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "2113.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "22bet.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "233333.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3accounts.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3dranger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3os.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3ringenieria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "50plusmusikfestival.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "592tk.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-actor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-busty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-gokan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-hitoduma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-moe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-shirouto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-up.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a163.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aaacomms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aalvarezs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aaronqueen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aarons.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abhayaranya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abilenemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "absolutebritney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "academiaoposicionescorreos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "acedstudy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "acl-desing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "advbizintel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aegisaccounting.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "affumico.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ahl.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aidoru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "airconsandton.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "airportstuttgart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "airpost.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aitci.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akbtv.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akinlau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akouryy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aktivpark-lumdatal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "albertovr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alicedepret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alignthoughts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alles.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "almamarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alphabeta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "am-i-on-am-i-on-drugs-dot-com.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "am-i-on-drugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "americamilitar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amilcalcados.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amiondrugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amisoft.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amlakresan.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anchr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "andrecanuto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "androidhub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "andropia-online.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aneutrallife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "angelefloramendy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "angione.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "antonmcclure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ao6.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "appliedenglish.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aralys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arianagrande.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armadalelearningpathways.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armanddesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armanddesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armandmusic.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arminreiter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armoedebeleidgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "artbalsam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arytmicznie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atsugi-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aurika.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "autoleaders.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avogel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aydesignco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "b144.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "b4a-learn.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "babyanywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "baindayman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bampizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bauer-reininghorses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bcomm.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beastshirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beeldbankgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beemenergy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beer-sheva.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "behmmjc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bendelllawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "benhoeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "benjamorphism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beonas.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bergtoldtrimcarpentry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "berkbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "best-ergonomic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bet-platform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "betandyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "biabop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "biden-scandal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "binhdang.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bittounsi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bjelimici.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blatnice.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blauwgras.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blist.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blogyaren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boip.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boldlegal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bombo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bompus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bonfloss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boxethaishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brard.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bridgecobuilders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brightesttv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brio.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "britney-galaxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "britneyuniverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brokgency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "brunettipesco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bubbelwafel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "builterra2.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bumblebeekids.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bumblebeekids.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bytebe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cabosaferide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carboneventsupport.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carboneventsupport.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carbonsupportcofabel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carmeny.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "casinhapratica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cbmanager.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccaag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccu.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cdkrot.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cdrom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cecamericas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "centurion-it.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "certprep.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "certpro.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cfent.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cfo4you.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chiron.care", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "christ.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "christiangaro.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "churchofpop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cibercheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "citycardgante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "citycardghent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clarkaesthetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clinicaschirmer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clintburnett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "codebreakers.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "collectifitness.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "colossalfoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comealong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comeros.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comfis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comunicazionenellaristorazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "concern.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "condenast.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "conduitzw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "congressmankirk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "connecto.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "conteelegant.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "coral-study.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "craftychameleonbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cran-automobiles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "creativecityofmusic.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crex24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crimsonlettersmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csdisaster.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csx.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ctsl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cuentadias.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cujubimnoticias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "custompoolsbydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cutter.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dabbingtee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danielwelty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danwelty.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danwelty.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danwelty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danwelty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "darkgrid.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "darkillusion.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "darnashop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dbs.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dcorporation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "de.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dealbenzbkk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "debijloke.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "demsh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "densocean.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "design2u.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "detailingsp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "detectro.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "devsdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "devyanijayakar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dewereldvankina.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "diadora-media.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "didier-equipereussite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "didierfle-decibel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "didierfle-latelier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "didierfle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digifloat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalandsocialmediaacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalecom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalfoodbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalpiloten.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitizer.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dimi-inside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "divelyon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "djvintagevinyl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dlsolutions-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dmramp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dochub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dolinathome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dolmeningenieria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "domain.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "domucmayintainha.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "donteffwithmyvote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "donteffwithmyvote.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "donteffwithmyvote.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontefwithmyvote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontefwithmyvote.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dontefwithmyvote.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dotsmesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dreieich.schule", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drkashany.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drone-mapping.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drslawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "duffau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "duna.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dvn.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dynamic-movie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dynamicpl.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dynamicplus.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "e-branchekoden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eajglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eastcairo-egypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ebabis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ebcue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ebipl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "echidna.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ecup.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eczanemheryerde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "editorweb360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "edman007.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "edr-d.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "edwardscommercialcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eekelen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "efay.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "effortlesshr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "einomanner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "electionrunners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "electricgypsies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elementoraddons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elevationplumbingandheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elinetv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elizabethmacdonaldbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elrincondeleer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emgroup.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emilieporte.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emoji.web.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emotebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emperors.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "englishwithmrsann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enlightsec.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eplayer.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eplayer.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "erctra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "erlebe-salsa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "erobook.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "escrowalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "esm.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "espenandersen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eucybernet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "everythinglidia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "examesrush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "excellence.corsica", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "executivecatering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "expandtheroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "expertly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "expovivienda.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fairtradegemeentegent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fer.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "festivaldelumieresgand.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "finditalldirectory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "findom.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "floodheroessaltlakecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "floria.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fluffypuff.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flwrightwichita.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "foldnfly.travel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "forhers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "formommiesbymommy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "formsmarts.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "formvibes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fossildlp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fourstrategy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "foxbenjaminfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "freebonusmembership.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "freundeskreis-tarjan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fronteimoveis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fuku-fashion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "funeraire-365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "funeral-365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "futieltextiel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fxstock.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "galefacialplastics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "game-garage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gardtools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "garo.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gavr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gavr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gazetekarinca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gconstruction.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gdpr365.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "geekgao.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "geeksforrent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gekleurdverleden.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "genhu.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentcongres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentcreativecityofmusic.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentengarde.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gentseondernemersdagen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "genuinebackup.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "getwsodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ghada.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ghentlichtfestival.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "giftedhealthcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "giga.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gladiium.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "globalbusinessrisk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "globalpandemictools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "globotech.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gnula2.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goabase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goabase.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goerdeler-alumni-club.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "goetheschule-giessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gotoeat-aichi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "greciahora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gsa.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gsaadvantage.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gscgh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "guaranteedservice.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gyefund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gyefund.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "h2orto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "habrastorage.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "happicollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "happyland.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hartmann-hartmann.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hatierchinois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hcr2bot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "healthyhomeventilation.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hello-design.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "henryishax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hentai.baby", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hexagon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hexo.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hierden-bosch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hiperbusinessblog.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hipersuli.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "historichousesghent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hivekey.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hivekey.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hoeheterobenjij.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hollyworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "homedecorspecialists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "housestationlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "howardhannava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hsg-lumdatal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hubanero.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huisaandecosta.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hurrikane.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hustl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hyperian.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hzwc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "i-on.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iamafricacampaign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iamafricacampaign.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iclb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ideal.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "identifytag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ienakacs.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "illumini.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "implantesdentalestopete.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inesnutricion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inffin-portal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ingroxd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "innovationrealtygrp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intechdaybcp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "integra-belgium.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intelx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intercomp-cbu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inuevostiempos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "investinghent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ionnex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iransculpture.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "isoq.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "it.com.eg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "itgeeks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "itshealthtea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "itzine.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iventuresolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "j0hn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jack.fr.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jackhammerinteractive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jacobpleiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jamesonmelbye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "janakifoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jands.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jardinesimperiales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jci.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jci.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jci.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jcinet.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jcinet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jdecommastermind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jeugdraad.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jivanplastics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "johny.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "josien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jp-aic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "judgefuszmediation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumping4all.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumping4all.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumping4all.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumpingforall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumpingforall.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "k.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kamata-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "karencatering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kathakkachakkar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "katja-bjoern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kesen.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kesen.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kfz-sachverstand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kh.pub.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kitsquid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kk.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kleebauerhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "klimaatstad.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kobietydokodu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kontantfinans.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kontrapolis.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "koolisw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kplastics.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "krankenpflege.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ksv-friesland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kuaza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kw.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kyn.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kyriakidisship.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "laguiadelocioenuruguay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lan-der.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lapinator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "larifari.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "larousse-edu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "larrutan.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "laud.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lawclinic-hsg.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "layan-luxurylighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leandrebergeron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leapa.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ledebergleeft.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "legen.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leivadi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lesa.boutique", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leslyandyana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lianhe.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestival.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestival.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestivalgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestivalgent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestivalgent.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lichtfestivalghent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lidosparesort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lifars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "life-experiment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linalynn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linovelib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linuxtips.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "liorggi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lisacundy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "livienpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "llccd.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lodewillems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "logancooper.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lohnsteuerhilfe-essen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lola.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "londonlocks247.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "loulifestyle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lovemesomegadgets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lpgaclub.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lyclub.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "machida-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "madamcougar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mafy.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mahmoudeeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "malawi-portal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "malie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "malypiesekzuzi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "managment.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mandrill.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "manuelpinto.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "manusje-van-alles.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marinapetruzio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "markhornsby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "markhornsby.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marknb.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marny.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marvin-elsen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marvin.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "masduta.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mastpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mattmoorcroft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maxclers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maximoguk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maximumphysiotherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mayaroconstituency.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maynesoftware.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mcpetrade.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mdrp.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "medhiwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "megaimpressao3d.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meideas108.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mejitravelcr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "melbet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mendmybackprogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "merry.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "metait.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "metasearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mia-manager.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "micaballo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mikaelf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mikkohuupponen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mobiliteit.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mobiliteitstadgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "momochrome.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "monamurlite.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "montuan.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "moonbooth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "moonpay.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "morifuji.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "morriganbe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mostqbalwatanalqahirah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mstazakka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "multifruttisystems.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "muon.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "musecomunicazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mvwoensei.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mybuddytheplumbertooele.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mydataprotected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mylahcollection.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mylocalfoodtrucks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mypower91.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mzr.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "najrecept.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "napoveda.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "navot.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nccoe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nd.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nebulise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "needle-demo.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "net-provider.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "netheadsonair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "netmajstor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "netrino.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "netrino.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "netsoftit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "newissuesmagazine.com.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "newnationalstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ninasofian.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nitinpandey.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nonsa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "noobit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "noom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "npw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nsquaredong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nydbank.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "o2.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oapks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oasiskitchens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "obve.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ocasio.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ocmwgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oettig.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "office365-apps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ogaprinta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oliveoilshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "olivetbgc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "olyfed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onmed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "opc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oposicionesjusticia.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oppabet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orchardscribe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orioneclipse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orpf.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ortoinnovapanama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ourdataprotected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oyap.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pagerange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paidcashforhouses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "painful.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pamperssamples.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pancybertronics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pandemicoversight.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paragon-consult.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paramo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "parelweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "parentsguidetotheworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "parenttheirpassion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "passionateracers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paste.rodeo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "patricklustigmediation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "peace-is-possible.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "peppyflora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pflege.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "phc4submit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "philippkaindl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pierianservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pindex.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pl2.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "plaxi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pmbsteelbuildings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pokkareindeermeat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "popxclusive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "potnofficial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pottwist.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "powercomputers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prancor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "primakeysmarketingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prisel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "privateimoveis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prochaskamediation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "promotionvillanakarin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "promusicante.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "propcierge.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prws.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ps-playback.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "psmpl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "psoppc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pssjd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "puur.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qlares.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qqqq.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "quantuin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "r-ix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "r3gi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "radcloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "radito.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rafik.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ramydent.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ranking-mensesthe.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rdxbioscience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reach.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "readingea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "redlands.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "refurb-tracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "regalradio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "regenpfeifer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reklamaandroid.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reklamaios.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "relevanttomyinterests.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "repalanca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "republic.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "resulttado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rewardscout.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rez.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rgf.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ringsandthings.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "riveroaksdentaljax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "robertjquinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "robertsmits.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rodobike.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rolluplab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rooferindallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rowanz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rozvozznojmo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimentalconsolidated.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimentalconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimentalfoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimentalkitchens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rudimentalretail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ruimtevoorgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rushtonparay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "safeguardstudents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saisyuusyou-ikebukuro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saisyuusyou-omiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saisyuusyou-takasaki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saisyuusyou-utsunomiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "salalfoundation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sald.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "salo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "savchenko.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "schoolheads.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "schweiz-sextreffen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scorpioncomputers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scoutbee.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scpsecretlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scpsecretlaboratory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scriptolab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sdguitdagingen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seb8iaan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sekoia.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sellersmart1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "semenserang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sentrybay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seoulista.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "serenitygwinnett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seucreditodigital.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sextreffendeutschland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shellphotostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shiftcrypto.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shiftcrypto.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shinta.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shinyoko-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shirosaki-hana.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shivering-isles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shopcon.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shoppingplaza.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shunliandongli.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sid-giessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "singerfamily.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sintsationeel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sipd.go.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "skogmans.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sldlcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "slimopweg.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smarpshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smartblock.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smithandnoble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smolkatours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smppcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smsfa.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sodigent.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "solnascentepapelaria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sophiefrutti.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sosregistration.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "soydoula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spanmass-portal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spurindustrial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sr-sam.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "standardbook.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stargroup.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "startupbros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "steebel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "steinberg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "steparovi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stepupforeurope.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stevenjacobs.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stevenjacobs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stiebelrewards.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stilida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stlfamilyattorney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stnguyen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stoemp.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stoneocean.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "streetwisebiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stylidafm.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sudabaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sugardaddy.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sugardating.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "suikerspinnetje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sumopages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "suomiheraa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "swevenstays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "swostik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "synergiedenken.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "synobook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "syronex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "t-cophony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tabisuta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tachikawa-saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "taciso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "taikhoanfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "taskforce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tayebbayri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tcook.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tcook.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tcshop.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "td-bambini.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "team3.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "techanit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tecnologiaboliviana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tellerify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "testq.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tex-salon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thekickassvirtualassistant.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "themarkup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "theomegagroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "theonyxzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "theunitehistoryproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thn.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timesedlen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timvandenborre.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tlesptyltd.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tomorrowx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tomservo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "top-rezepte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "top10.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "topmarketplace.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tornado-map.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tovse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tpue.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trabia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "transtrack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "treefeelingsandton.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "treehorn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "treemadeiras.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trigate.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "truckscout24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trustee.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trustology.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "try2hack.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tshirtatlowprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tv-mainzlar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "twilite.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "twilite.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "typecho.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ugodeal.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unausa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unblockit.lat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "universal-techno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "universalspf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "urologywi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "utahdentalcrowns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "utahtriallawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "utduc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "v-jo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vaneyckwashere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vanwoensei.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vanwoensel.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vanwoensel.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "variusunum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "varunmaheshwari.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vdw-instruments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "velassoltas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "veripn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "verkeer.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vetcpd.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "videocall.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vikrammaheshwari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visitgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visuall.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vivaocredito.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "voornaam-at-achternaam.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vote.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vous-etre-utile-ceidf.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vtivision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vzwregent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "waavit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "walletfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "warrioronewgw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wartraining.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "watermitigationspecialists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "web-info.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webehurt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webfiredesigns.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webplatform.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "weektegenarmoede.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "weewoo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "welty.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "welty.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "welty.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "welty.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wemakemx.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wfsrecruit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "whichdoctor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wickersmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "willowcundy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "willwilkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "willywangsextapes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wingchun.edu.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wir-do.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wisdomteethonly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wizardwiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wordpresshelpmaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "worky.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wplan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wptangtoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xanzhu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--80aej8bv.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--marn-8ra.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xonet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xplo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xraven.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yannickcoffi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yearend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yesterplay.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yflix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yhs.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ykdlb.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yoduzw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yogstation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yooread.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "youiv.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "youiv2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yourblazeguard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zahnarzt-backfisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zebratee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zelvar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zerofogmask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zerty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zhstar.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zimedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zorgenvoorherena.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zorgenvoormaria.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zova.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zusammen-grossartig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "0x21.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "100words.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "111111.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "123freevectors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1stchoicemoney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xbet.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1xstavka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "2890.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "383838.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "500foods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a-sparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abacus-essen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abcrcm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "access-board.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "accesshq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aceleraguria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "acuityfinishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aditro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aerionsupersonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "afterhaven.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "agora.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "agribouwmarkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ajelen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alfaair.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alisonpaloma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ama-agency.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "americanpregnancy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amionamiondrugsdotcom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amodeocarlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "angelalombardo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "animelody.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anliting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anthony.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anthro.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aperto-nota.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aperto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "app-cinveninfostream-qa.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arabicdress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "archispace.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "archmirror.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ardiama.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armansazehradis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arztrading.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "asprobet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "astha.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atah-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "att-lda.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "auksel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "australianallnaturalskincare.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "autojur.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "awutar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aykyamultifest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "azulimparcial.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "babypaparadise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "badkamermarkt.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "badkamermarkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "badkamermarkt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "barefoodinrome.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "barmenteros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "baselnazifrei.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bbagramante.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beachwayhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beallure.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beckmandxapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "benabbott.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "berlingeriresort.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestelhetmaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestidea.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beyondthecreek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bhutanonlinetravels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "biene.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blaauwgeers.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blockstudio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boodledose.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "borde.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bourestonmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "buda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "business2people.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bustickets.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "c-style.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ca.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cadflow.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cap73.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "capsulekitchen.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carefy.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carwreckcowboy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cc3m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ccaj.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "celebrationoflifeplanning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "centralitasbaratas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chaturbates.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chriseldon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cintaraso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cipies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cisin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cisinlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cisinlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "claremontyachtclub.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cloudfit.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clovisplumbingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "coffeemoment.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comasystem.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comita.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "conexionfit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "confer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "congdongnhatviet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "controversialrisks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "controversialrisks.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "corona-data.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "courier.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "covidcoldfacts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "covidstatistiek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cpfrancophonie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "creature-comforts.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crsserviceogkloak.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "csalem.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ctcp.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "curamcare.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cushlaofgullion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cyberry.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cycomm.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "damiengobron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "data-mining.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dazenelevator.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dblfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ddi.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dealdelicate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "demisch-tim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "demischtim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dezevenster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dfstoryteller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dieslowhtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalerror.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "directorylib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "distelbentelo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "distrim2.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dns.expert", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "doki-list.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dolmencleanroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dramaquarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drbenlight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dropcop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drydor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dupforex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dupfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "easaccounting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eb12.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ebrahimhadimarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ecommercefastlane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "edupedia.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eliott.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eliottlavier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "energylocals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enoteca.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "epicnex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "esignly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "europeluxuryweddings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "evaali.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eze-buy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "f-401.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "f-mebel-na-zakaz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "face-recognition-cctv.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fackovcova.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fackovec.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fairviewfarmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fajarrubber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fakturar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "farmaweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fatiguefree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "feminteligencia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fietsvakman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fjallconnections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "florianstroeger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fluttee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "freecoursepage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "freefiregenerateur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fromoldbooks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fuwashima.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fuzzlemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gadaj.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "galtelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gamerspawn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gamertelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "garo.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "geartips.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gesditel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "giftsforaspecialoccasion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gigaclube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gio-abbigliamento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gnous.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "greenbritain.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hae.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hamminga.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "happygutlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "haunt-keeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hazana.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "healthl.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "heiliao.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hellofound.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "heroningenieria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hiseplast.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hivehub.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "homeloanprequalify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "houthandelbunskoek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "houthandeljacobs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huemul.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hugobarral.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huntingtonestateproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hv-2020.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hv-2020.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hv-anmeldung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hv-online.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hv-portal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hvanmeldung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hvanmeldung.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hvsdev.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hypnotic-reviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iburgs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "icolorpalette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iemc.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "igualdaton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iks.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "illumepgh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "im-razmakh.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "immocompar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inaboutique.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "init3.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inkhub.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ipass.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iprep.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "isaacgolding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ite.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ivnext.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jagan.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jalinhgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jamelhammoud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jiweadventure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "joekann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "joshuaschmitt.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "journeytofi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jperformance.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jurnalilmiah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kcam91.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kefu.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-sports.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kimicar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kindbear.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kino.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kkutu.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "klaudialeszczynska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "knowl365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "koe.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "konducars.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "konuhaber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kwonghei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "labsai.cyou", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lady-wishlist.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ladywishlist.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lakichat.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "landscaping-montreal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lars-mielke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "latiamona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lavinde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leathership.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leccamilafi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leliekerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lesamisdelaroumanie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lesprofsplacotent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lesy.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "librosantimateria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lifesignals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lihj.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linespots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linksgruenejugend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "livehelpindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "longislandbusiness.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "louisvillefilmfestival.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "luciobarcellona.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "luciogelsi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "machineidle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maclafferty.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "made-dwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "madedwell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maev.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "malaysiasentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "manforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "manteligencia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mantelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "marcositaliandeli.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "masters-burrell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mayamushrooms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mayorscouncil.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "medicallicensing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "melbet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mendelsphotography.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mentors4stem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meshintranet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "minds-academy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mlcrosoftonlline.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mmot.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mojaapteka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "moreno820.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "morikami.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mosaicot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mpcdn.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mrc-productivity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mspatexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "msrohkwrstock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mudanzasuiza.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mydeardreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "myrvog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "myvegasadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mzdiy.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "napoleonexclusievesieraden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nasdarq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "negr.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "negr.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "neocenter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nextus.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nextvision.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nicecockb.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nietvolgensdeboekjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nigerianpilot.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nix-sender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nm2d.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nrdigitalbranding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nspointers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nyliveauctions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nyrany.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "odijmond.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oermen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ohmanager.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "omertskn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onsitespeedometer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oonie.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "osa.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "palaceinstitute.ac.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "parcely.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paul-zhang.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pepechkov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pingrc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "planisware.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "playxylo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "poriadok.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "primeabout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qikroof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qrguestbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qualiride.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "queerativity.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "quickyshare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "r00tsolutions.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rabb-it-days.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "radixweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "raiceshebreas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ralphbisschops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "realinsurance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "regatesenbretagne.bzh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reliantfundservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reportando.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "revolve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rgtn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ridetothefuture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rikaz.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rkabworks.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rosdver.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rsa-homeinsurance.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sabaikonotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saisyuusyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "samanthabiggers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "samuel-brown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "samuelbramley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "san.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sangitafoodmess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sanity.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sanity.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sapphirepack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sbetinsiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seatsurfing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "senseful-online.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sexfactory.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sfpmall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shoyuf.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "siatris.qc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sigil.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "simply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sinnvoll-online.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "skarvruet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "skylair.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "slrshoppee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "snajdr.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "soat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "soepvork.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "somehowsomeday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spotsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sruthisjewellery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ssmrca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sterydki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stevenlapere.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "straalatelier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "studio3a.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sublimesecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "superraclette.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tachoplus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "talentsfromindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tapesvip.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tchalian-boulonnerie.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "technovisioneng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "techsaviours.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "textcleaner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "themomentratchada19.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thinkdata.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thunderboltlaptop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-demisch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-demisch.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-demisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-demisch.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-niclas-demisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tim-niclas-demisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timdemisch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timdemisch.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timdemisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timdemisch.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timniclasdemisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "timniclasdemisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "todoseaprende.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tonarinoliusan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "toondergroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "touch2ship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trabsky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "traveljunkie.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trekintel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tricordmedia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "udemypaidcourse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ultraly.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unitedrestorationfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vahl.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vakwinkeldemo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "valphenn.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vddruckwerk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vegornonveg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "velocompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "velocompany.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vicesetcaprices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin-kon-sung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin-kon-sung.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin-kon-sung.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin-kon-sung.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktor-chin.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchin.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchin.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchinkonsung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchinkonsung.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchinkonsung.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viktorchinkonsung.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viperperformance.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "viseum.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vitabsolu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vivetoluca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vjshi.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vps.management", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vulkanprotektor.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "waffle-backend-sanggyu.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "waffle-sanggyu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wallendair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "waytoeasylearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wdmpa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wdntcr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wedontcaregroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wefillgood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wincosafari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "winfar.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "winkelvanmorgen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wireless-kill-switch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wisdomcue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wisenetalarm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wksmartmall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wolfsburgwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wow-screenshots.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wsg127.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wyrihaximus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wyrimaps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xgirl.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xno-sys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "you15iv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "you52iv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "youiv1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yslocksandkeys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yzddd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zanotti.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zogevikst.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "11046.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "112fryslan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "123freebrushes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "178spb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1989-bmw-e30-forsale-in-norcal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1bis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "1stav.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "24bel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "350.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "3dstore.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "4car.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "521keyvista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "53pluk.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "55opt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "8freeporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "919898.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a1cashforcar.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a1scrapmetalrecyclers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "a1spareparts.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aaronosmani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abattepeluqueriacitas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abcc.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abdullaeff.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abdullaeff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abdullaha.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "abiertoempleos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "activs.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "actualizarapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "adaptivehedge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "adboard.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "advancedob-gyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aerobatt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "afgphotographers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "agleventis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ahbap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ahoj.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aifx.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aigua.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ailamarket.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "airskystore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akagiauto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "akszita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alchemiya.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aldipresscentre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alecrimacessorios.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alejandrocruz.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aleks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alfredlin015.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "algoarmada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alkozeroks-wiki.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "all-bronza.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "allbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "allmodern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "allurechiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "almost.fit", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aloemeda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alofone.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alphalibraries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alphasoko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "altezza-autore.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "altterapevt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "alzulej.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amazefabrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "americandisinfectingassociation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "americandisinfectingassociation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amniowell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "amongus-guru.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "an2ic3.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anh-dv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "anhdvboot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "animalesterrestres.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ao27.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aponte-systems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apotheke.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apprentimillionnaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "apteka38.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aqua-print.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aquamarinavillas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aradiantlyhealthylife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "archief-ocmwgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aria.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arirabinowitz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armaringross.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armazemwarenhaus.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "armo.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "arockets.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "art-okno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "artifuse.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aryacollege.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "asciugatureedili.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "asesoriavalledor.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "askbonus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "asniereslesdijon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "aspiraplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "astrograph.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atanas.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atmelook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atomicwallet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "atozblinds.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "autoliga.net.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "automobile-gadgets.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "autopapa.wien", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "autorefuellings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avcafe.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avelux.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avertoni.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avito.ooo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "avra.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "awarner.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "awaybot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "axesslab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "b-angel.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "b3gin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "background4free.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bag66.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "balesetvedelem.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "banfieldtravel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bankipmr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "barrenwuffett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "barwaldesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "barzus.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bayareaplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bb-sportnahrung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "begovel.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bellaplanta.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "benjaminfox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bereginya-lada.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bertrell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bessems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bessems.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestasquadradas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestdiscount.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestfacts.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestinfo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bestpornclip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "beta-site-staging.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "betandslots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "betanoapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "betwinner-zerkalo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "betwinnergiris.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bezboli.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bible4u.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "big-market.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bigbunce.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "billkochman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "birchlane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bitazza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bitwoci.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blacksearegion.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bladebotlist.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blankstyle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blatnic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blogomoll.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bloomppm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "blummedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bluuglass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bmoabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bodrus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boeleo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bookkeepingsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bouldercountydronepilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "boulderwagonroad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bozdech.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bradeales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bridalsbyada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "briskbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "broadbandforum.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bth.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "btln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "btraviswright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "buddiescomputers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "buildbackbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bureniemoscow.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "burg-hohnstein.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "burnsland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "businessrights.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "bwzc.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "byladyverdelet.bzh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "byootify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "byuro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cabinetmtc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cadiztrabaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "calendum.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "callcenterdeluxecalls.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cam-et-xou.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "canali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cancunsouvenirs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "canivacbd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "canopycleaning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "caprigo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "carddelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "casaledibuccole.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cat1solution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cchat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cdbp.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "celebrities.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "centr.dn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "centrmebeli.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cfenns.ath.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chatforums.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chicjewelryla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chimebank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "chongming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cidcca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cim.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cistenikoberculiberec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cj26.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clarityskin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clinteam.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "clubexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "code66.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "collectif85.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "colorideas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "colosseumticket.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "comoenviarcurriculumvitae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "consultadepsicoterapia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "content-hub-1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "countrify.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "craftbyhand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "crashcoursecenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cst-vbg.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "curlingclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cxologic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cxologic.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cyberpunk.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "cyberrepair.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "czqu.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dahfasad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "danielshaw.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "datablender.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "debardo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "defenestrazionedipra.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "deine-politik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "delta8.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "digitalis-france.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "disinfectiondoctor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "divinecnainstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dodomy.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dolle-shop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dpc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "drc.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dues-eckert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dxlr.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dylanuwr.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "dynacrop.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "e-osago.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eajglobal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eightballde.luxe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eletrotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eligasht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "elpreciosostud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eltron.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "emojiteka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "empleandon0s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "empleosearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enduranceseries.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "energaia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enjoybeer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ensinu.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "enviartucurriculumvitae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "epiccraft-mc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "equityloupe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "equityloupe.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "equityset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "erechimimoveis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "erichollander.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "es-vps.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "esiac.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "esmag.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "espacosaudesuplementos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "etersy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "etury.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "eurogarden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "europafs.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "evangelise.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "examroll.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "expocomerciovirtual.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fabiankaindl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "familienoase-koenigstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fanescu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "favorit-stroy-snab.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "felixmendez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fellas.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "felton.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fess.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fibril.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "filequit.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "finsall.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fiskosceyiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fiskosceyiz.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "flat-tire.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "floy.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "forward.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "fotojenico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "frisaga.travel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "funktdesign.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "funktdesign.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gabaldon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gabaldon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gameday.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gehirnapis.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gend.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gensokyo.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "georgemudie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gestorestecnologicos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gestorimob.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gestorimobiliaria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gitedegroupelatruitedor.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gizitalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "grantashqg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "greatsoftwares.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "greencyprus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "gustomsc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "harbourunderwriting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hcs.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "healthfulhealthcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hedonics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "heidifuller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hekate.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "heroesorchestra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "herreriaorozco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hisax.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "holditdownfc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hometeenorgy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hongfumall88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hoorgold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hotelv.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hotrender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huelvatrabaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huiskopenspanje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "hus.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "huureensite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iblsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iclinic-mrt.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "icollezionisti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ict.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "idohost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ihost.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ihri.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iii-coalition.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iipvapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ikigaiapp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ikonenmuseumkampen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ikzoektim.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "illadrodimerendine.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "illi.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "imenfarazalvand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "incurvy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "infelko.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "infocom.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inmobiliaria-sanpablo.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "innovadis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "insurance24.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "interlecwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "internetional.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intersumka.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intheevent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "intvshop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "inwonderofit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ip-addr.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iqreview.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ironscales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "isleyfarmsupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "israel-escorts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "israelimtovim.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "itsgreener.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ivselena.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ivyhelpers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ivyis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "iymark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jadeforallseasons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jameh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jarcasting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jarcasting.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jarcasting.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jav0x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jbliss.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jeek.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jellyfin.spdns.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jhof.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jixun.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jixun.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jobhouse.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jokertv.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "jumperke.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kaeme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kamin-island.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kandra.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kapri.dn.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kdramaholic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-sports.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-sports.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-sports.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-x.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-x.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-x.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keller-x.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "keuvelaar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "khmrynok.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "klinikasochi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kolodec-pod-kluch.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kowalski7cc.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kozentic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ksp-spb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kt-studio.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kurspmr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kvaapagarrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kvadru.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "kvateka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ladyklub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lakemacquariecashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lamiradaacr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "larry.buzz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lavaccount.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lavocedelviolino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "laxaf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lc-8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "leabharbreac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "legalservicespanel.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "legiaphu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lestanzedelgattopardo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "letsagree.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lgshop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lgstore.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "liberecstehovani.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "librairieducontretemps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "licenciasconstrucciondiamante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "licx.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "liendar-silver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lifewaysvillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "liliang.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linarite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "linkedin500.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lmtlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "lotposh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "louhomeworkouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "loyverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "loyverse.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "luggagehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "luisbustamante.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "luxedition.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "m2international.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "machissenefre.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "madampastry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "madler.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "magicvaporizers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mahgu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maitlandcashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mariasemarias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "markdaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "markdaine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maslows.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mateidibu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "matkuling.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "matt.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "matton-ict.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "maxscripts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mechanicweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mediapuller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mejorespatineteselectricos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mekanova.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mellmon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "meslekifikir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "messenger.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "metall.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "metalloprokat.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mezemeze.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mfg-forex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mfg-fx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "miacuario.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "microbird.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "microfinance-crimea.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mikkosa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mirobuvi.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mlo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "modernhouse.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "moscowartdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "moscowlombard.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mosfetkiller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mosquitoshop.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "motorrijschoolgul.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mova.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mow.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mrsjinthelibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mstr-f-dstrctn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mtservicescorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mums.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mvarsamis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "mvz-ammerland-klinik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "myblogworld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "myborder.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "n-cis.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nailsmania.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nanoport.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "napi-menu.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "narcologic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "narsq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "natasajanvirant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nativetitle.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nds-online.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nearbyprinter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nehrp.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "neograftaustintx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "newsite.moscow", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nfitraining.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nfl.zapto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nickwasused.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nickwasused.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nickwasused.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nicola-bertini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nielsterp.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nilab.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nishiwaki-shonaifoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nlponline.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nordlandverliebt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "noticiasdeautos.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "novacleaning.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nove.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "novopromo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nr1hosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nsopr.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nsopw.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nutrislice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "nydig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "obcevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "obdinvest.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oea.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "offertemodule.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "officeefficient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ognedoor.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oknarating.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onlineradiobr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onlinewot.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "onlymammoths.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "operadotejo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "optimalforlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "optiqueh.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "optiqueh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "opvoedingswinkelgent.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "oralemiraza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orchids.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ordermsg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "orendamebliv.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "owlazy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "paless-aless.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pasardigi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pattanath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pcert.lat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "peliculasviejas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pelviclinic.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "peral.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "perfect-seo.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "perunsoft.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pharmaciechatelle.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "piesel-piepser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pimbletree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pimpstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "piotrandpawel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pipabella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pirateproxy.buzz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pivotalshift.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "platinmods.my.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "polymathian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pozyka.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prepz.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "presidentinternet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "press-wall24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pricesdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "proclimat.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "profarm.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "proklimat.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "prosperegypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "proxybay.kim", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "psncarddelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "puredisinfecting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "puremosquito.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "purepestandlawn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "puresanitization.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pusatcucikarpet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "pxld.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "qualitymark.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "quayhudanhbai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "quellarotondasembrafi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "raddle.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "raipet.spdns.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ranjanbiswas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ranjanbiswas.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "raven.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rctiads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "re.yt.nom.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "realnature.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "recepty.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "redireci.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "redirection-plf.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "registech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reklammaster.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "renicimery.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reslv.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "restashorecleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "reverenceglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "revinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "richmondradiologists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ridayu.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ridepanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rise.africa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rk-box.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rmtconstruction.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "robimgood.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rockfax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rockstargame.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rorelseprojektet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rosspecstroy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rotatingchefs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rotonde.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rovohout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "runmyvillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "runosklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "rut2.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sacredart-murals.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "safecoin.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sam.gov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sanificazioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sanodent.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "santehart.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sapaship.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sauna.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "saybecraft.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sbli-webhook.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "schwedenkiosk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scrapcars.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "scrapmycarperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sea-man.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seatinglane2u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "seboluo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sergal.gay", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "serverfile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sexlounge.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shareiva.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shivkrupanandfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shockproof.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shoppencph.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shotoniphone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "shssl.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sib.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "signsymptom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "simbdo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "simetria.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sinatralegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "singee.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sitebrass.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sk62.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "skateschoolkostroma.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smartedukasi.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "smrdim.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sochi.tatar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sochidostavka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sochiss.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sol-design.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "solve-it-sol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sotermic.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "southocpt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sowhat.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spamasaurus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "speedyplatypus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "speww.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spicture.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "spidometrus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sport-51.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "springlanguages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ss23.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sss.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "statsnite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stellar.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sto-avtovo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stockgraphicdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stoltz-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stop-zavisimost.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stoprog.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "strakonak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "stratejm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sunbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "supercarpets.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "supportadvantage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "svetapublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "swimmingpoolshop.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "sygnanet.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tablondeempleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tahvienovin.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tandemzagan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tarot-online.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tatastudi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tattoonhamon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tattootoday.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tdlesovik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tekittak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teleum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "telving.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "teologia.promo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "testikel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tfiik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thecompanysheffield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "theislandtime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thekidneyexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thekillertoxin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thekliniquehotdeal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "therisk.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "thiagovarella.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tkita.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tm-autohandel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tnsolutions.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tok4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tokimeko.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tomrunting.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "too.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "topo.com.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "toranjchap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "townshipofthenorthshore.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trabajoenmx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trafficticketsnola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tragicallytrumped.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "transmoni.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "travelshelper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "travizgo.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trianglepwh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trumptragedy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "trumptragic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tubuscadordeempleo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tuempleosolucion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "tuinaportugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "u2b.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ucstrike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ukrainskie-konstrukcii.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ultimatefilmpromotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "uniformesdreamleaguesoccer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "unitedcarremoval.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "upwardcreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "uradvd.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "urbanbageecha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "uscveteranspark.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "usd.ooo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "utheatre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "v-m-shop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "valagrovoce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "valerieorsoni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vault.spdns.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vdheyden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "verkiezingsuitslagen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vermaeckbouw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vfwauxiliary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vipku.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "virtualgovernance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "visiongroup.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vitron.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "vmonetke.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "w4r.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "water-net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "web-design-india.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "web22.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "web22.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "weblegend.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "webstamil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wholesalerrr.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wisetoken.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wiseupcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wkymenshealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wlombard.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "world-avto.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "world-game-news.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "worldarticles.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "wseo.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xg-printonline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xiaomiredmi.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--80aaagbtu3bfbullc1c.xn--80asehdb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--fuze-dpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xn--h1ahbcdb8g.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "xunki.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yadameshop.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yarcevostom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yblaccounting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yellowrooster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yemektarifinet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yiff.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yiff.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yiff.supply", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yinfor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yips.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "your-melody.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "youstyleski.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "yukina.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zamecnikkladno.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zchuyot.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zhf.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "ziegenhagel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zigsphere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zitadel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zivot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zonadetestes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zouaouitransport.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zubilo-perm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zukify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zwyr157wwiu6eior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zycie.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
+ { "name": "zyciepl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true },
// END OF 1-YEAR BULK HSTS ENTRIES
// Only eTLD+1 domains can be submitted automatically to hstspreload.org,
diff --git a/chromium/net/http/transport_security_state_unittest.cc b/chromium/net/http/transport_security_state_unittest.cc
index 4b90996f792..fda88d2b803 100644
--- a/chromium/net/http/transport_security_state_unittest.cc
+++ b/chromium/net/http/transport_security_state_unittest.cc
@@ -10,7 +10,7 @@
#include <vector>
#include "base/base64.h"
-#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
#include "base/files/file_path.h"
#include "base/json/json_reader.h"
#include "base/metrics/field_trial.h"
@@ -121,27 +121,34 @@ class MockCertificateReportSender
const GURL& report_uri,
base::StringPiece content_type,
base::StringPiece report,
+ const NetworkIsolationKey& network_isolation_key,
base::OnceCallback<void()> success_callback,
base::OnceCallback<void(const GURL&, int, int)> error_callback) override {
latest_report_uri_ = report_uri;
latest_report_.assign(report.data(), report.size());
latest_content_type_.assign(content_type.data(), content_type.size());
+ latest_network_isolation_key_ = network_isolation_key;
}
void Clear() {
latest_report_uri_ = GURL();
latest_report_ = std::string();
latest_content_type_ = std::string();
+ latest_network_isolation_key_ = NetworkIsolationKey();
}
const GURL& latest_report_uri() { return latest_report_uri_; }
const std::string& latest_report() { return latest_report_; }
const std::string& latest_content_type() { return latest_content_type_; }
+ const NetworkIsolationKey& latest_network_isolation_key() {
+ return latest_network_isolation_key_;
+ }
private:
GURL latest_report_uri_;
std::string latest_report_;
std::string latest_content_type_;
+ NetworkIsolationKey latest_network_isolation_key_;
};
// A mock ReportSenderInterface that simulates a net error on every report sent.
@@ -158,6 +165,7 @@ class MockFailingCertificateReportSender
const GURL& report_uri,
base::StringPiece content_type,
base::StringPiece report,
+ const NetworkIsolationKey& network_isolation_key,
base::OnceCallback<void()> success_callback,
base::OnceCallback<void(const GURL&, int, int)> error_callback) override {
ASSERT_FALSE(error_callback.is_null());
@@ -328,7 +336,7 @@ std::string CreateUniqueHostName() {
}
// As with CreateUniqueHostName(), returns a unique NetworkIsolationKey for use
-// with Expect-CT prunung tests.
+// with Expect-CT pruning tests.
NetworkIsolationKey CreateUniqueNetworkIsolationKey(bool is_transient) {
if (is_transient)
return NetworkIsolationKey::CreateTransient();
@@ -914,6 +922,8 @@ TEST_F(TransportSecurityStateTest, PreloadedPKPReportUri) {
const char kPreloadedPinDomain[] = "with-report-uri-pkp.preloaded.test";
const uint16_t kPort = 443;
HostPortPair host_port_pair(kPreloadedPinDomain, kPort);
+ net::NetworkIsolationKey network_isolation_key =
+ NetworkIsolationKey::CreateTransient();
TransportSecurityState state;
MockCertificateReportSender mock_report_sender;
@@ -948,9 +958,10 @@ TEST_F(TransportSecurityStateTest, PreloadedPKPReportUri) {
// Trigger a violation and check that it sends a report.
std::string failure_log;
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
EXPECT_EQ(report_uri, mock_report_sender.latest_report_uri());
@@ -961,6 +972,8 @@ TEST_F(TransportSecurityStateTest, PreloadedPKPReportUri) {
ASSERT_NO_FATAL_FAILURE(CheckHPKPReport(
report, host_port_pair, pkp_state.include_subdomains, pkp_state.domain,
cert1.get(), cert2.get(), pkp_state.spki_hashes));
+ EXPECT_EQ(network_isolation_key,
+ mock_report_sender.latest_network_isolation_key());
}
// Tests that report URIs are thrown out if they point to the same host,
@@ -969,6 +982,8 @@ TEST_F(TransportSecurityStateTest, HPKPReportUriToSameHost) {
HostPortPair host_port_pair(kHost, kPort);
GURL https_report_uri("https://example.test/report");
GURL http_report_uri("http://example.test/report");
+ NetworkIsolationKey network_isolation_key =
+ NetworkIsolationKey::CreateTransient();
TransportSecurityState state;
MockCertificateReportSender mock_report_sender;
state.SetReportSender(&mock_report_sender);
@@ -998,20 +1013,24 @@ TEST_F(TransportSecurityStateTest, HPKPReportUriToSameHost) {
// because the report-uri is HTTPS and same-host as the pins.
std::string failure_log;
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
EXPECT_TRUE(mock_report_sender.latest_report_uri().is_empty());
// An HTTP report uri to the same host should be okay.
state.AddHPKP("example.test", expiry, true, good_hashes, http_report_uri);
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
EXPECT_EQ(http_report_uri, mock_report_sender.latest_report_uri());
+ EXPECT_EQ(network_isolation_key,
+ mock_report_sender.latest_network_isolation_key());
}
// Tests that static (preloaded) expect CT state is read correctly.
@@ -3165,6 +3184,8 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReportRateLimiting) {
HostPortPair host_port_pair(kHost, kPort);
HostPortPair subdomain_host_port_pair(kSubdomain, kPort);
GURL report_uri(kReportUri);
+ NetworkIsolationKey network_isolation_key =
+ NetworkIsolationKey::CreateTransient();
// Two dummy certs to use as the server-sent and validated chains. The
// contents don't matter.
scoped_refptr<X509Certificate> cert1 =
@@ -3191,9 +3212,10 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReportRateLimiting) {
std::string failure_log;
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// A report should have been sent. Check that it contains the
// right information.
@@ -3203,22 +3225,29 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReportRateLimiting) {
ASSERT_NO_FATAL_FAILURE(CheckHPKPReport(report, host_port_pair, true, kHost,
cert1.get(), cert2.get(),
good_hashes));
+ EXPECT_EQ(network_isolation_key,
+ mock_report_sender.latest_network_isolation_key());
mock_report_sender.Clear();
// Now trigger the same violation; a duplicative report should not be
// sent.
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
EXPECT_EQ(GURL(), mock_report_sender.latest_report_uri());
EXPECT_EQ(std::string(), mock_report_sender.latest_report());
+ EXPECT_EQ(NetworkIsolationKey(),
+ mock_report_sender.latest_network_isolation_key());
}
TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
HostPortPair host_port_pair(kHost, kPort);
HostPortPair subdomain_host_port_pair(kSubdomain, kPort);
GURL report_uri(kReportUri);
+ NetworkIsolationKey network_isolation_key =
+ NetworkIsolationKey::CreateTransient();
// Two dummy certs to use as the server-sent and validated chains. The
// contents don't matter.
scoped_refptr<X509Certificate> cert1 =
@@ -3247,7 +3276,8 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
state.CheckPublicKeyPins(
host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::DISABLE_PIN_REPORTS, &failure_log));
+ TransportSecurityState::DISABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// No report should have been sent because of the DISABLE_PIN_REPORTS
// argument.
@@ -3255,18 +3285,20 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
EXPECT_EQ(std::string(), mock_report_sender.latest_report());
EXPECT_EQ(TransportSecurityState::PKPStatus::OK,
- state.CheckPublicKeyPins(
- host_port_pair, true, good_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, good_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// No report should have been sent because there was no violation.
EXPECT_EQ(GURL(), mock_report_sender.latest_report_uri());
EXPECT_EQ(std::string(), mock_report_sender.latest_report());
EXPECT_EQ(TransportSecurityState::PKPStatus::BYPASSED,
- state.CheckPublicKeyPins(
- host_port_pair, false, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, false, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// No report should have been sent because the certificate chained to a
// non-public root.
@@ -3274,9 +3306,10 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
EXPECT_EQ(std::string(), mock_report_sender.latest_report());
EXPECT_EQ(TransportSecurityState::PKPStatus::OK,
- state.CheckPublicKeyPins(
- host_port_pair, false, good_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, false, good_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// No report should have been sent because there was no violation, even though
// the certificate chained to a local trust anchor.
@@ -3284,9 +3317,10 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
EXPECT_EQ(std::string(), mock_report_sender.latest_report());
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
- state.CheckPublicKeyPins(
- host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ state.CheckPublicKeyPins(host_port_pair, true, bad_hashes,
+ cert1.get(), cert2.get(),
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ network_isolation_key, &failure_log));
// Now a report should have been sent. Check that it contains the
// right information.
@@ -3303,7 +3337,7 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
state.CheckPublicKeyPins(subdomain_host_port_pair, true, bad_hashes,
cert1.get(), cert2.get(),
TransportSecurityState::ENABLE_PIN_REPORTS,
- &failure_log));
+ network_isolation_key, &failure_log));
// Now a report should have been sent for the subdomain. Check that it
// contains the right information.
@@ -3315,6 +3349,8 @@ TEST_F(TransportSecurityStateStaticTest, HPKPReporting) {
ASSERT_NO_FATAL_FAILURE(CheckHPKPReport(report, subdomain_host_port_pair,
true, kHost, cert1.get(), cert2.get(),
good_hashes));
+ EXPECT_EQ(network_isolation_key,
+ mock_report_sender.latest_network_isolation_key());
}
// Tests that a histogram entry is recorded when TransportSecurityState
@@ -3352,7 +3388,8 @@ TEST_F(TransportSecurityStateStaticTest, UMAOnHPKPReportingFailure) {
EXPECT_EQ(TransportSecurityState::PKPStatus::VIOLATED,
state.CheckPublicKeyPins(
host_port_pair, true, bad_hashes, cert1.get(), cert2.get(),
- TransportSecurityState::ENABLE_PIN_REPORTS, &failure_log));
+ TransportSecurityState::ENABLE_PIN_REPORTS,
+ NetworkIsolationKey::CreateTransient(), &failure_log));
// Check that the UMA histogram was updated when the report failed to
// send.